WordPress Migration: Easy as A-B-C, 1-2-3

1 minute read | By Mangesh Sangapu

WordPress Migration Components Fig 1. WordPress Migration Components


There are 3 steps to migrating a WordPress website to Azure App Service Web Apps.

  1. Copy WordPress files
  2. Migrate the MySQL Database
  3. Configure WordPress

 

Step 1. Copy WordPress files

Make a backup of the current WordPress website. Tools commonly used for this is FTP Software like FileZilla or WinSCP.

Sample WordPress Installation Folder: 2017-04-28-15_47_39-clipboard

Again, use FTP software or Kudu (http://<webappname>.scm.azurewebsites.net) to upload the files to your web app.

Step 2. Migrate the MySQL Database

If the DB is visible externally, you can use tools such as WP Buddy+ to migrate the MySQL contents. Other popular methods are MySQL Workbench, PHPMyAdmin or command-line in Kudu.

Step 3. Configure WordPress

Now that the contents and database have been migrated. The next step is to configure WordPress to talk to the new database. This is done in wp-config.php. Open this file and ensure the appropriate credentials are being used to communicate with the MySQL Database. Once the DB is working, use tools such as WordPress Buddy+ to update the HOME and SITE_URL. More on this here (see WordPress Tools).

MySQL In-App Sample