Ultra Web Hosting Docs

WordPress Migration

For a single WordPress site, the All-in-One WP Migration plugin is the simplest path: it bundles files, database, themes, plugins, and uploads into one downloadable archive that you upload on the new server. This guide also covers the manual files-plus-database approach if you prefer.

Method 1: All-in-One WP Migration (Recommended)

Works for sites up to about 500 MB by default, or larger with the free server extension installed (see below).

Step 1: Export from the Old Site

  1. Log into your old WordPress admin (https://yoursite.com/wp-admin).
  2. Go to PluginsAdd New, search for All-in-One WP Migration, install and activate it.
  3. In the sidebar, open All-in-One WP MigrationExport.
  4. Click Export ToFile.
  5. Wait for the export to finish, then click Download and save the .wpress file.

Step 2: Set Up a Fresh WordPress on Ultra Web Hosting

  1. Log into your new cPanel.
  2. Open Softaculous Apps Installer (under Software).
  3. Select WordPress and click Install Now.
  4. Choose the domain to install on, leave the directory blank (so it installs at the domain root), set an admin username and password, and click Install.
  5. Note the admin URL Softaculous gives you at the end.

Step 3: Import on the New Site

  1. Log into the new WordPress admin.
  2. Install and activate the All-in-One WP Migration plugin again.
  3. Go to All-in-One WP MigrationImport.
  4. Click Import FromFile and select the .wpress file you downloaded earlier.
  5. Click Proceed when the size confirmation appears.
  6. When the import finishes, you will be logged out. Log back in using your old WordPress admin credentials, because the import replaced the new install's user table with the old one.

Step 4: Save Permalinks

After any migration, WordPress permalinks need to be flushed:

  1. In the WordPress admin, go to SettingsPermalinks.
  2. Click Save Changes (no need to change anything).
About the size limit The free All-in-One WP Migration plugin caps imports around 512 MB. If your site is bigger, install the free All-in-One WP Migration File Extension (download from the plugin author's site, not the WordPress directory), which raises the limit to 5 GB. For sites larger than that, use the manual method below or ask us to handle the migration.

Method 2: Duplicator (Alternative)

Duplicator is another good single-site option. The workflow is similar:

  1. Install Duplicator on the old site, create a package, download both the installer and archive.
  2. Upload both files to public_html/ on the new server via File Manager or FTP.
  3. Create a fresh empty database on the new cPanel (under MySQL Databases) and note the database name, user, and password.
  4. Visit https://yourdomain.com/installer.php on the new server (you may need a temporary URL or a hosts-file edit; see From Another Host).
  5. Follow the Duplicator installer's prompts, providing the new database credentials when asked.

Method 3: Manual (Files + Database)

For very large sites, complex multisite installs, or when you do not want to install a plugin:

Step 1: Export the Database

  1. Log into the old host's phpMyAdmin (usually accessible from the old cPanel).
  2. Select the WordPress database in the left sidebar.
  3. Click the Export tab.
  4. Choose Quick and SQL, then click Go.
  5. Save the .sql file.

Step 2: Download the Files

  1. Connect to the old host with an FTP/SFTP client like FileZilla.
  2. Download the entire public_html/ contents (or the WordPress install directory if it is not at the root).

Step 3: Create the Database on Ultra Web Hosting

  1. In the new cPanel, open MySQL Databases.
  2. Create a new database. Note the full name (it will be prefixed, like cpaneluser_wpdb).
  3. Create a database user with a strong password.
  4. Add the user to the database with All Privileges.

Step 4: Import the Database

  1. Open phpMyAdmin from the new cPanel.
  2. Select the new empty database in the sidebar.
  3. Click the Import tab.
  4. Click Choose File and select your .sql export.
  5. Click Go.

Step 5: Upload the Files

  1. Connect to your new account with FTP/SFTP.
  2. Upload all the downloaded WordPress files into public_html/.

Step 6: Update wp-config.php

  1. Edit public_html/wp-config.php on the new server.
  2. Update DB_NAME, DB_USER, and DB_PASSWORD to match what you just created.
  3. Leave DB_HOST as localhost.
  4. Save.

Step 7: Update the Site URL (If It Changed)

If you are also changing domains, run a search-and-replace on the database so links and serialized values update correctly. Use the free Search Replace DB tool or the WP-CLI wp search-replace command. Do not just edit the database with phpMyAdmin: WordPress stores some values serialized, and a naive replace breaks them.

Common Post-Migration Issues

Related