Reputation: 615
I'm new to cPanel and I want to deploy my Symfony2 app on it. I need some guidance on how to do it, I downloaded the Symfony2 framework with the Softaculous Apps Installer.
PS : My app is also on BitBucket.
Upvotes: 1
Views: 3361
Reputation: 1736
If you have a shared online server then just copy the entire symfony project through FTP, set up your database credentials in parameters.yml
, and manually delete the prod
directory inside var
(symfony ≥ 2.8) or app
(symfony ≤ 2.7).
Upvotes: 0
Reputation: 3697
First off all: CPanel is just a web-shell arround your linux os that makes it easy to maintain your server from distance through a web interface.
Actualy you do not need softaculous because it just installs an empty new symfony project.
There are globally two ways to install your symfony project.
Install git and Composer on your server, use git to pull the project from bitbucket and install the the vendors with 'composer install' or 'composer update'.
Upload your complete project from your local computer to the server with FTP.
In both ways you still have to install your database and set your configuration.
Upvotes: 3