DEV Community

Cover image for How to Move Your WordPress Site to a New Host
Talia Moreno
Talia Moreno

Posted on

How to Move Your WordPress Site to a New Host

Migrating your WordPress site to a new host can seem daunting, but it's a manageable task with the right guidance. Whether you're seeking better performance, more robust security, or just a change of scenery, this step-by-step guide will help you transition smoothly to your new hosting environment.

Choose Your New WordPress Host

Before anything else, selecting a reliable and efficient host that meets your WordPress site's needs is crucial. Consider factors like uptime, customer support, scalability, and, importantly, WordPress-specific services. Once you've chosen your new host, don't initiate your WordPress install just yet; it's easier to move your existing site over first.

Backup Your Site

Back up your WordPress site to ensure you don't lose any data during the migration. You can use plugins like UpdraftPlus or do a manual backup. Remember to back up both your site's files and its database.

Backup Your Database:

  • Log into your current host's cPanel.
  • Open phpMyAdmin.
  • Select your WordPress database.
  • Click on 'Export' and choose the 'Quick' export method.
  • Click 'Go' to download your database backup.

Backup Your Site Files:

  • Connect to your site's server via FTP using tools like FileZilla.
  • Download the entire WordPress directory to your computer.

Upload Your Site to the New Host

Once your backups are ready, it's time to upload them to your new hosting account.

Upload the Database:

  • Create a new database in your new host's cPanel and note the database name, username, and password.
  • Open phpMyAdmin in your new host's cPanel and select your new database.
  • Click on 'Import' and choose your database backup file to upload.

Upload Site Files:

  • Connect to your new host using FTP.
  • Upload the WordPress files you backed up to the root directory (often public_html/).

Edit the wp-config.php File

Adjust the wp-config.php file in your site's root directory to reflect the new database information.

  • Find the following lines and replace them with your new database details:
define('DB_NAME', 'new_database_name');
define('DB_USER', 'new_database_username');
define('DB_PASSWORD', 'new_database_password');
Enter fullscreen mode Exit fullscreen mode

Change Your Domain's DNS Settings

Change the DNS settings of your domain name to point to your new hosting provider. This process varies by domain registrar, so consult their documentation or support team for guidance. Remember, DNS changes can take up to 48 hours to propagate worldwide.

Final Checks and Testing

Once your DNS changes have taken effect, it's time to perform final checks:

  • Browse your website to ensure everything is loading correctly.
  • Check your WordPress admin area to ensure you can access it without issues.
  • Test your website's functionality, including forms, comments, and e-commerce features, if applicable.
  • Use Tools like Hosting Checker that can provide you with comprehensive information. Simply enter your site's URL to find out who is hosting this website.

Monitor Your Site

After the migration, closely monitor your site for any issues and keep an eye on your site's performance and security. Consider using a website monitoring tool to stay informed about your site's status.

Migrating your WordPress site might seem complex, but by following these steps, you can ensure a smooth transition. Remember, thorough preparation and careful execution are key to successfully moving your site to a new host.

Top comments (0)