Questions tagged [capifony]

Capifony is a deployment recipes collection that works with both symfony1 and Symfony2 applications. Capifony is based on Capistrano (open source tool for running scripts on multiple servers). It’s primary use is for easily deploying applications.

Capifony is a deployment recipes collection that works with both symfony1 and Symfony2 applications. Capifony is based on Capistrano (open source tool for running scripts on multiple servers). It’s primary use is for easily deploying applications.

Homepage: capifony.org

163 questions
3
votes
2 answers

capifony's installing Composer dependencies failed

i try to deploy my symfony2 project with the help of capifony cap deploy:setup makes no problem and store on /var/www/htdocs/symfony-project two folders .symfony-project .. releases .. shared after that, when i try to run: cap …
zavalit
  • 332
  • 2
  • 14
3
votes
1 answer

Symfony2 + GitFlow + Capifony + Capistrano-ext

I'm currently developing a website using Symfony2 and Gitflow. I have 2 external servers called 'development', 'staging' and 'production' and a central GIT repository on Github. I'm looking to use Capifony to: deploy the 'develop' branch changes…
user1961082
  • 1,015
  • 17
  • 41
3
votes
1 answer

Deploying my Symfony2 app with Capifony has started breaking the live release's cache

This could be a bit of a niche issue but I'm hoping somebody can help. This was always working fine until yesterday when I was attempting to push some changes to production, but since then the last 3 deployments have all temporarily broken the live…
RobMasters
  • 4,108
  • 2
  • 27
  • 34
3
votes
2 answers

Authentication failed with capifony

I'm trying to do a Symfony 2 project deployment web app based on capifony and Symfony2. It uses Process to trigger my "cap deploy" task and display my output in a web browser. When in a shell, if I run my "cap deploy" as user www-data (the same as…
3
votes
1 answer

Replacing a task in Capistrano / Capifony

I am using Capifony, a Symfony-specific extension to Capistrano. I need to override one of the pre-defined tasks so my own symfony task is run - replacing task :permissions in https://github.com/everzet/capifony/blob/master/lib/symfony1.rb#L180 with…
PeterB
  • 2,212
  • 2
  • 21
  • 33
2
votes
1 answer

Capifony + Symfony2: FileLoaderLoadException, Cannot import resource parameters.ini from config.yml

I'm having the following problem when trying to get Capifony to work deploying my application developed with Symfony2. I'm deploying it to a shared web hosting server... Hope somebody can shed some light: This is the log when calling cap deploy: …
Prem
  • 65
  • 3
  • 7
2
votes
2 answers

Permission denied on creating directories with cap deploy:setup

I'm trying to setup my production server for capifony. I've setup my deploy.rb like this: set :application, "myappname" set :domain, "#{application}.eu" set :deploy_to, "/#{application}" # I don't know if this is…
mattyh88
  • 1,585
  • 5
  • 26
  • 48
2
votes
0 answers

connection failed while deploying symfony with capifony

Thinking 2017 will be an easy year, I got stuck already. (Happy new year btw) I have build a site in symfony and I want to deploy it. For this i am using capifony, which can make the deployment process very easy. My deploy.rb has a standard…
Yaron Lambers
  • 213
  • 2
  • 10
2
votes
1 answer

Password error when I want deploy my website

I have installed my project on a new comptuter. This project have Capifony (Capistrano). But now, when I want update my website with "cap deploy", I get this error : [deploy:update_code] exception while rolling back: Capistrano::ConnectionError,…
Gaylord.P
  • 1,539
  • 2
  • 24
  • 54
2
votes
1 answer

Capifony: repository on the production server

I have Capifony config: set :application, "AppName" set :name, "appName" set :domain, "myServer" set :deploy_to, "/var/www/appname" set :app_path, "app" ssh_options[:forward_agent] = true default_run_options[:pty] = true set…
Max Lipsky
  • 1,774
  • 1
  • 18
  • 29
2
votes
1 answer

403 Forbidden error after symfony 2 reinstall

I am building a web app on top of the symfony2 framework. Everything used to work fine until, due to some problems, i had to wipe the production symfony folder clean and reinstall everything inside the symfony project folder. Now every request to…
Erik Verboom
  • 365
  • 3
  • 17
2
votes
2 answers

linux ssh agent and add : avoid repeating command

When I'm deploying my application from my server using capifony, I need to start by typping those commands for the authentication to work : $(ssh-agent) ssh-add If I disconnect, I have to retype this otherwise I get the following error : -->…
Sébastien
  • 5,263
  • 11
  • 55
  • 116
2
votes
1 answer

Should I clear/warm cache after doctrine migrations?

I would like to know about how symfony2 console commands cache:clear and cache:warmup works in regards to changes in doctrine entities. I've read this http://blog.whiteoctober.co.uk/2014/02/25/symfony2-cache-warmup-explained/ and this…
ihsan
  • 2,279
  • 20
  • 36
2
votes
1 answer

Capifony Symfony2 deployment

I'm getting this error while trying to deploy my Symfony2 application to production server. --> Downloading Composer * executing "sh -c 'cd /home/myproject/releases/20150427081943 && curl -s http://getcomposer.org/installer | php'" Preparing to…
3ND
  • 430
  • 1
  • 6
  • 17
2
votes
3 answers

Capifony can't download composer - not following redirect

I'm using Capifony to deploy my Symfony2 application, but as of today it can't download composer - jenkins output: [32m--> Downloading Composer[0m * executing "sh -c 'cd /data/www/testing/s00110/releases/20150426161117 && curl -s…
Frank van Luijn
  • 470
  • 4
  • 16
1 2
3
10 11