How to Transfer Your Wordpress Blog From One Host to Another Host

 

Before you start with WordPress Hosting:

  • If you are a new SiveHost customer or if you are upgrading your SiveHost plan, you may be eligible for our free content transfer service.
  • If you are moving from a host where you used cPanel, you can perform a full backup and our Migrations department may be able to help you restore it. This will spare you from completing the steps below.

Step 1: Backup Your WordPress Database Using phpMyAdmin

 

Before transferring your WordPress blog, it is recommended that you make a backup of your database using phpMyAdmin. Once you have successfully logged into phpMyAdmin:

  1. Click on the name of the database which contains your WordPress blog.
  2. Click Export in the top navigation menu.
  3. Select the Quick option listed under the Export Method section.
  4. Leave the selection in the format section as SQL .
  5. Click Go.
  6. Once completed, there will be a prompt to save the file. Simply click on Save as File; this will download a file named wordpress.sql to your desktop.

You have then successfully backed up your database. If you do not have phpMyAdmin installed on your hosting account, you can use mySQLDump from a SSH terminal.


Step 2: Download/Upload All WordPress Files Using FTP

You will need to download ALL your files from your old host and upload them to your new host. This includes files from your themes folder and plugins folder. Make sure you also download any folders which were referenced outside of your blog's folder.

For example, if you are using a separate folder called images, located outside of the blog's folder, the images must be copied and uploaded to the new hosting location; otherwise, the site will contain a lot of broken links to images within the blog post.

Filezilla is the recommended FTP client. By default, Filezilla does not display the .htaccess file, for security reasons.

To ensure that your .htaccess file is included in the download, you must click on View and then select Show Hidden Files. If you neglect to upload your .htaccess file, your permalinks will not work.
Note: You should not update to a newer version of WordPress at this time as your database may not sync correctly. Complete the WordPress migration before you consider upgrading the version.

Step 3: Create a New WordPress Database and Edit wp-config.php

Create a New Database

To create a new MySQL database:

  1. From your control panel, click the MySQL Databases icon.
  2. Create a new database with a name appropriate for your blog.
  3. Create a database username and password.
  4. Assign the new user to the new database and grant All Privileges.

For additional help creating a MySQL database, please see:

Editing the wp-config.php File

After creating a new database, you will need to edit the wp-config.php file, which is the WordPress configuration file. This specific configuration file reads directly from a database of your choosing.

To update the WordPress configuration file:

  1. From your control panel, click the File Manager icon.
  2. Navigate to the document root for the domain for which you are updating the WordPress.
  3. Locate the file named wp-config (its normally in the group of files near the bottom).
  4. Click to open the file, and locate the following lines so that they can be updated with the correct information:
    /** The name of the database for WordPress */
    define('DB_NAME', 'cpuser_dbname');

    /** MySQL database username */
    define('DB_USER', 'cpuser_uname');

    /** MySQL database password */
    define('DB_PASSWORD', '******');

    /** MySQL hostname */
    define('DB_HOST', 'localhost');
    • If you did not edit the file on the server via the File Manager with your new database settings, upload it to the root of your blog folder.

The configuration file is now set up with the new database; however, it does not contain any database tables. In order to correct this, you will need to import the information into the database.


Step 4: Importing WordPress to the New Database

You can use either phpMyAdmin or BigDump to import your database. BigDump is the preferred option if you have a large database (10mbs or more). There is a step-by-step guide on how to use BigDump on its website.

Once you have logged into phpMyAdmin:

  1. Click the name of the Database to which you wish to import the information.
  2. Click the Import tab at the top of the page.
  3. In the File to Import section, select the SQL based file from your computer that you wish to import.
  4. Use Partial Import if you intend to skip a set number of code rows.
  5. The Format and Format Specific Options sections can be left to their default values.
  6. Click Go to initiate the import.
Note: Importing via phpMyAdmin is less strenuous on the browser compared to the SQL option (BigDump) since the query may take a long time and can sometimes crash your browser.

 

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Why Videos Should Never be Uploaded to WordPress

  Video content can make a website a lot more interesting by adding additional value to a...

Optimizing WordPress

WordPress is currently one of the most popular blogging/CMS applications in use on our servers....

WordPress Home Fix

If the links in your blog show the wrong domain, redirect to another site or if they are...

How to Login to WordPress

Logging in to WordPress is as simple as visiting your WordPress dashboard URL.   Note: Your...

How to Install WordPress

WordPress is one of the most popular blogging platforms around for good reason. It is easy to...