I want to move symfony 1.4.18 from server A to server B
- server A root directory is
httpdocs
- server B root directory is
public_html
both servers are shared hosts.
- I downloaded all the files in server A httpdocs directory
- export the database from server A phpmyadmin
- upload all source files into server B root directory, that is under public_html
- create a Database and a new database user in server B, import the database into this new database
- change
config\databases.yml
into new database information
I also tried to change config\vhost.conf
php_admin_value open_basedir "/var/www/vhosts/www.oldsite.com/httpdocs:/tmp:/usr/local/php:/usr/share/pear"
into
php_admin_value open_basedir "/var/www/vhosts/www.newsite.com/public_html:/tmp:/usr/local/php:/usr/share/pear"
After all this I checked the new server B: it just shows all the files in the directory, but not the website.
Is there anything else I need to change?