On Fri, Jan 25, 2008 at 06:48:00PM -0800, tafkamk wrote: > I'm experiancing a really strange issue with deployment. I'm deploying > from my personal computer to bluehost and using assembla as my svn > server. Individually everything works fine. I can ssh to my bluehost > acct and checkout from assembla. I can also run deploy:setup and > deploy:check just fine. When I try and run cap deploy:cold I get this > error message [...] > Anyone have any ideas?
I'm not saying you shouldn't connect to your source repository from your production server, but I use: set :deploy_via, :copy set :copy_strategy, :export ...with bluehost. That does an export on my local machine and tars the results up to copy them over to bluehost and untar them. Works like a charm. Incidentally, since bluehost uses fastcgi I had to redefine deploy:start, deploy:stop, and deploy:restart as no-ops. If you have a better solution for this (e.g. if there were some way to kill running fastcgi processes), I'd be interested. --Greg --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
