Home
/
Website Help
/
Transfer Site
/
How to transfer my CS-Cart from one host to another?

How to transfer my CS-Cart from one host to another?

Transferring your CS-Cart application includes copying your files and database and modifying the config.php file to work with the new server paths.

You can download your website files via FTP and export your database using a tool such as phpMyAdmin.

The most important settings which should be modified in config.php after the transfer is completed are:

db_host – you should set this to localhost:

db_host = 'localhost';

db_name – enter the shop database name here:

db_name = 'user_cs';

db_user – enter the username with privileges to access the shop database:

db_user = 'user_cs';

db_password – this is the password for accessing the database:

db_password = 'cspassword';

cscart_http_host – you should set this to your domain name, e.g. www.yourdomain.com:

cscart_http_host = 'www.yourdomain.com';

cscart_http_dir – here enter the relative path to the directory where CS-Cart is installed

cscart_http_dir = '/shop';

Share This Article