Migrating wordpess to another host
-
Hi, I recently moved my wordpress website from one server to another server. I followed below steps for the migration.
1. Downloaded full back up from old server which includes wordpress file and SQL database.
2. Uploaded all wordpress file to new server under /home/my_usr_name/public_html/narveer.com/wordpress/. Old server also had same directory structure.3. Created a new database on new server. Create a new user, assign all the privileges to it. Assign new user to new database. Imported old database to new database.
4. Edited wp-config.php . Replaced old database and username with new database and username/password.
define(‘WP_CACHE’, true); //Added by WP-Cache Manager
define( ‘WPCACHEHOME’, ‘/home/evlsixsb/public_html/narveer.com/wordpress/wp-content/plugins/wp-super-cache/’ ); //Added by WP-Cache Manager
define(‘MMAFF’, ‘hostgator’ ); //Added by QuickInstalldefine(‘DB_NAME’, ‘evlsixsb_newDB’);
/** MySQL database username */
define(‘DB_USER’, ‘evlsixsb_newUser’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘XXXXXXXXXX’);After this I am getting below Error
This page isn’t working
https://www.narveer.com is currently unable to handle this request.
HTTP ERROR 500My Website link: https://www.narveer.com
- The topic ‘Migrating wordpess to another host’ is closed to new replies.