So far in this series I've shown you how to move a standard WordPress installation, but how do you move a Multisite network? The answer is that it's not too different from a single site, but there are a few extra considerations. Here I'll show you how.
In this seven part series I'll show you how to move a WordPress site, focusing on several different scenarios:
To follow this tutorial, you'll need:
WordPress Multisite essentially consists of the same elements as any WordPress site:
wp-content
directoryBut as you'll know if you work with Multisite, it doesn't store content in quite the way a normal WordPress installation does. Multisite creates an additional folder called sites
in the wp-content/uploads
directory, which contains the uploads and plugins relevant to each site. The great thing about this is that as long as you move your uploads
folder, everything will be ok.
Note: If you installed Multisite before WordPress version 3.5, you won't have a sites directory in wp-content/uploads
. Instead you'll have a blogs.dir
directory in your wp-content folder
. This in turn will have a folder for each site, which will have a subfolder called files
, which will have subfolders for your uploads by date, in the same way as for a normal WordPress installation. Later in this tutorial I'll look at what you need to do to make your migration work if this is the case for you.
So, how do you go about moving it? The answer depends on your setup. What you'll need to do to move your Multisite installation will depend on the following:
To address these questions, I'll work though this in stages. First I'll show you how to move your whole Multisite installation with subdirectories. Then I'll look at subdomains. And then I'll work through what you need to do if your sites have their own domains configured.
If you just want to migrate one or two sites out of Multisite, you'll need to read the next tutorial in this series, on moving a blog out of a Multisite network.
As you'll be running the latest version of WordPress on your new site, it's important to upgrade your old site before migrating it across.
This is particularly important if your site was created prior to WordPress 3.5 and has that blogs.dir
folder. If this is the case, WordPress will run the site in compatibility mode, meaning you can stick with the old folder structure and copy the files across as they are.
But you should run an update even if this isn't the case, to ensure compatibility.
Before you start anything, make a backup of your site:
blogs.dir
folder (if you have one—see above) and its contentsIt's up to you whether you manually move your theme and plugin files, or simply reinstall them in the new site. However, if you do reinstall them, you must do this before migrating the database, as any data in the wp-options
table relating to your themes and plugins might need the plugin file to be present for it to be recognised by WordPress.
In this tutorial I'll be using CPanel and phpMyAdmin. If your hosting provider doesn't provide these or you're working with a local installation, you'll need to use the tools you're provided with. For example, for a local installation, MAMP and WAMP provide similar tools for managing databases and tables.
As you might expect, this is the easiest of all, and isn't too different from moving a normal WordPress site.
In your old site, open the Permalinks screen, which you'll find in the Settings menu. Turn off 'pretty permalinks' by selecting the Default option and clicking the Save Changes button.
This isn't always necessary but can save you running into any trouble if the permalinks in your new site aren't configured in the same way as for your old site.
You can back up the database in one of two ways:
In phpMyAdmin for the old site, select the right database and click the Export tab. To download the database, click the Go button. The database will download to your local machine as an sql file.
If I'm going to be editing the database (which you'll need to do if you're uploading a site from a local installation or changing the domain name), I make a duplicate of the database at this point and prefix its name with old-
. This is the backup, while the original one is the one I'll edit.
Next use your FTP client to download the contents of wp-content
from your old site.
Using your preferred method, install WordPress Multisite on the server you want to move your site to.
IMPORTANT: Make sure you install Multisite with the same settings as your old Multisite installation. If you switch from subdomains to subdirectories or vice versa, your links will break. It's worth checking the wp-config.php
and .htaccess
files in each site to be sure they're the same.
If you didn't download the themes and plugins from your old site, install these in the new site and activate them. If you did download them, you don't need to manually install them.
Using FTP, copy the files from your downloaded copy of the wp-content
directory to the new remote wp-content
directory, using the same folder structure as in your backup.
Make yourself a coffee. These files could take a while to upload.
Note: If you have a blogs.dir
directory and you've updated your old site to the latest version of WordPress before starting, just upload that the same as everything else.
While you're waiting for those files to upload (and while you drink that coffee), open the original database file from your old site so you can edit it. Using your preferred text editor, replace all instances of the old URL for the site with the new URL.
So for example, if your old URL is oldsite.com
, you would change it to newsite.com
.
You can speed this up by using the replace command in your text editor—there could be thousands of instances. Omit the http://
from your search as some tables in your database store the site URL without it, and if you're using subdomains any links containing one of them won't work.
Save and close your file—you'll use this to populate your new site's database.
Note: Another method for doing this is to use the search and replace tool from InterConnectIT. This will run the search and replace process for you, without you having to manually edit the database file.
In phpMyAdmin for your new site, create a new database:
Still in phpMyAdmin, upload the database you've edited:
Before you finish, clear your browser's cache. This avoids any problems you may have accessing your new site if the browser has cached content from the old version of the site.
Log in to your new site. Your login details will be the same as for your old site—even if you specified different login details when installing your new WordPress network, these will have been overridden by the imported database.
Visit the Permalinks screen and turn pretty permalinks back on.
Finally, you might need to tidy up your widgets. Check them and correct any that haven't made the move as they should. If you installed and activated all of the plugins before moving your database, you shouldn't need to do this.
Your new site will now work in the same way as your old one.
Subdomains make things a little trickier, but will work as long as you've followed the instructions above to not use http://
when replacing your domain name in the database.
If your old site was at http://oldsite.com
and you had a child site at http://blog1.oldsite.com
, your code editor wouldn't find it if you searched for http://oldsite.com
. So make sure that you replace all instances of oldsite.com
with newsite.com
.
If you're using the domain mapping plugin, you may have some entries in your database which correspond to the mapped domains and not to the domain of your multisite installation. Let me explain this with an example:
Let's say you have a child site called mysite
. Its location on your domain is http://oldsite.com/mysite
. You've set up mapping to it from the domain http://mysite.com
.
Any links in your site which have been generated by WordPress will use the multisite domain—so a link to the 'About' page in the navigation, for example, will have an href
value of http://oldsite.com/coolsite/about
.
However, there could also be links in your database with an href
of http://coolsite.com/about
, which may be the case if site editors have manually added links within the content.
The good news is that as long as you update your domain mapping, this won't matter, as any links to your mapped domain will still apply to the same mapped domain, regardless of the fact that the Multisite domain it's mapping to has changed.
So while you won't need to make any additional changes to your database, you may need to update your DNS following the move. Follow the steps above for uploading the new database, and then take the steps below.
What you need to do here will depend on how you've got domain mapping set up:
CNAME
records you'll need to update those with your domain registrar or in CPanel.A
records to point to a unique IP for your Multisite installation and you're moving to a new server, you'll need to get a new unique IP address from your hosting provider. Then update the IP address in the domain mapping settings for your new site and also change the A
record for each domain pointing to your site. If your sites are run by multiple administrators who also have control of their own DNS, this could be the biggest headache.Note: If you need to access sites in your network before their domains' DNS settings are changed and they have the mapped domain set up as the primary domain, you can change this in the domain mapping settings for your network, by going to Settings > Domains in the Network administration screens.
Now complete the final steps in the same way as for a site without domain mapping (see above).
This tutorial is longer than the one on moving a single site WordPress installation, because moving WordPress Multisite is a bit more complicated. If you have a 'vanilla' Multisite installation, things aren't too different from single site, but you may also need to take into consideration subdomains/subdirectories, a blogs.dir
folder, and domain mapping.
However, if you follow the steps above, you should be able to move your site successfully.
The Best Small Business Web Designs by DesignRush
/Create Modern Vue Apps Using Create-Vue and Vite
/How to Fix the “There Has Been a Critical Error in Your Website” Error in WordPress
How To Fix The “There Has Been A Critical Error in Your Website” Error in WordPress
/How Long Does It Take to Learn JavaScript?
/The Best Way to Deep Copy an Object in JavaScript
/Adding and Removing Elements From Arrays in JavaScript
/Create a JavaScript AJAX Post Request: With and Without jQuery
/5 Real-Life Uses for the JavaScript reduce() Method
/How to Enable or Disable a Button With JavaScript: jQuery vs. Vanilla
/How to Enable or Disable a Button With JavaScript: jQuery vs Vanilla
/Confirm Yes or No With JavaScript
/How to Change the URL in JavaScript: Redirecting
/15+ Best WordPress Twitter Widgets
/27 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/21 Best Tab and Accordion Widget Plugins for WordPress (Free & Premium)
/30 HTML Best Practices for Beginners
/31 Best WordPress Calendar Plugins and Widgets (With 5 Free Plugins)
/25 Ridiculously Impressive HTML5 Canvas Experiments
/How to Implement Email Verification for New Members
/How to Create a Simple Web-Based Chat Application
/30 Popular WordPress User Interface Elements
/Top 18 Best Practices for Writing Super Readable Code
/Best Affiliate WooCommerce Plugins Compared
/18 Best WordPress Star Rating Plugins
/10+ Best WordPress Twitter Widgets
/20+ Best WordPress Booking and Reservation Plugins
/Working With Tables in React: Part Two
/Best CSS Animations and Effects on CodeCanyon
/30 CSS Best Practices for Beginners
/How to Create a Custom WordPress Plugin From Scratch
/10 Best Responsive HTML5 Sliders for Images and Text… and 3 Free Options
/16 Best Tab and Accordion Widget Plugins for WordPress
/18 Best WordPress Membership Plugins and 5 Free Plugins
/25 Best WooCommerce Plugins for Products, Pricing, Payments and More
/10 Best WordPress Twitter Widgets
1 /12 Best Contact Form PHP Scripts for 2020
/20 Popular WordPress User Interface Elements
/10 Best WordPress Star Rating Plugins
/12 Best CSS Animations on CodeCanyon
/12 Best WordPress Booking and Reservation Plugins
/12 Elegant CSS Pricing Tables for Your Latest Web Project
/24 Best WordPress Form Plugins for 2020
/14 Best PHP Event Calendar and Booking Scripts
/Create a Blog for Each Category or Department in Your WooCommerce Store
/8 Best WordPress Booking and Reservation Plugins
/Best Exit Popups for WordPress Compared
/Best Exit Popups for WordPress Compared
/11 Best Tab & Accordion WordPress Widgets & Plugins
/12 Best Tab & Accordion WordPress Widgets & Plugins
1New Course: Practical React Fundamentals
/Preview Our New Course on Angular Material
/Build Your Own CAPTCHA and Contact Form in PHP
/Object-Oriented PHP With Classes and Objects
/Best Practices for ARIA Implementation
/Accessible Apps: Barriers to Access and Getting Started With Accessibility
/Dramatically Speed Up Your React Front-End App Using Lazy Loading
/15 Best Modern JavaScript Admin Templates for React, Angular, and Vue.js
/15 Best Modern JavaScript Admin Templates for React, Angular and Vue.js
/19 Best JavaScript Admin Templates for React, Angular, and Vue.js
/New Course: Build an App With JavaScript and the MEAN Stack
/Hands-on With ARIA: Accessibility Recipes for Web Apps
/10 Best WordPress Facebook Widgets
13 /Hands-on With ARIA: Accessibility for eCommerce
/New eBooks Available for Subscribers
/Hands-on With ARIA: Homepage Elements and Standard Navigation
/Site Accessibility: Getting Started With ARIA
/How Secure Are Your JavaScript Open-Source Dependencies?
/New Course: Secure Your WordPress Site With SSL
/Testing Components in React Using Jest and Enzyme
/Testing Components in React Using Jest: The Basics
/15 Best PHP Event Calendar and Booking Scripts
/Create Interactive Gradient Animations Using Granim.js
/How to Build Complex, Large-Scale Vue.js Apps With Vuex
1 /Examples of Dependency Injection in PHP With Symfony Components
/Set Up Routing in PHP Applications Using the Symfony Routing Component
1 /A Beginner’s Guide to Regular Expressions in JavaScript
/Introduction to Popmotion: Custom Animation Scrubber
/Introduction to Popmotion: Pointers and Physics
/New Course: Connect to a Database With Laravel’s Eloquent ORM
/How to Create a Custom Settings Panel in WooCommerce
/Building the DOM faster: speculative parsing, async, defer and preload
1 /20 Useful PHP Scripts Available on CodeCanyon
3 /How to Find and Fix Poor Page Load Times With Raygun
/Introduction to the Stimulus Framework
/Single-Page React Applications With the React-Router and React-Transition-Group Modules
12 Best Contact Form PHP Scripts
1 /Getting Started With the Mojs Animation Library: The ShapeSwirl and Stagger Modules
/Getting Started With the Mojs Animation Library: The Shape Module
Getting Started With the Mojs Animation Library: The HTML Module
/Project Management Considerations for Your WordPress Project
/8 Things That Make Jest the Best React Testing Framework
/Creating an Image Editor Using CamanJS: Layers, Blend Modes, and Events
/New Short Course: Code a Front-End App With GraphQL and React
/Creating an Image Editor Using CamanJS: Applying Basic Filters
/Creating an Image Editor Using CamanJS: Creating Custom Filters and Blend Modes
/Modern Web Scraping With BeautifulSoup and Selenium
/Challenge: Create a To-Do List in React
1Deploy PHP Web Applications Using Laravel Forge
/Getting Started With the Mojs Animation Library: The Burst Module
/10 Things Men Can Do to Support Women in Tech
/A Gentle Introduction to Higher-Order Components in React: Best Practices
/Challenge: Build a React Component
/A Gentle Introduction to HOC in React: Learn by Example
/A Gentle Introduction to Higher-Order Components in React
/Creating Pretty Popup Messages Using SweetAlert2
/Creating Stylish and Responsive Progress Bars Using ProgressBar.js
/18 Best Contact Form PHP Scripts for 2022
/How to Make a Real-Time Sports Application Using Node.js
/Creating a Blogging App Using Angular & MongoDB: Delete Post
/Set Up an OAuth2 Server Using Passport in Laravel
/Creating a Blogging App Using Angular & MongoDB: Edit Post
/Creating a Blogging App Using Angular & MongoDB: Add Post
/Introduction to Mocking in Python
/Creating a Blogging App Using Angular & MongoDB: Show Post
/Creating a Blogging App Using Angular & MongoDB: Home
/Creating a Blogging App Using Angular & MongoDB: Login
/Creating Your First Angular App: Implement Routing
/Persisted WordPress Admin Notices: Part 4
/Creating Your First Angular App: Components, Part 2
/Persisted WordPress Admin Notices: Part 3
/Creating Your First Angular App: Components, Part 1
/How Laravel Broadcasting Works
/Persisted WordPress Admin Notices: Part 2
/Create Your First Angular App: Storing and Accessing Data
/Persisted WordPress Admin Notices: Part 1
/Error and Performance Monitoring for Web & Mobile Apps Using Raygun
Using Luxon for Date and Time in JavaScript
7 /How to Create an Audio Oscillator With the Web Audio API
/How to Cache Using Redis in Django Applications
/20 Essential WordPress Utilities to Manage Your Site
/Introduction to API Calls With React and Axios
/Beginner’s Guide to Angular 4: HTTP
/Rapid Web Deployment for Laravel With GitHub, Linode, and RunCloud.io
/Beginners Guide to Angular 4: Routing
/Beginner’s Guide to Angular 4: Services
/Beginner’s Guide to Angular 4: Components
/Creating a Drop-Down Menu for Mobile Pages
/Introduction to Forms in Angular 4: Writing Custom Form Validators
/10 Best WordPress Booking & Reservation Plugins
/Getting Started With Redux: Connecting Redux With React
/Getting Started With Redux: Learn by Example
/Getting Started With Redux: Why Redux?
/How to Auto Update WordPress Salts
/How to Download Files in Python
/Eloquent Mutators and Accessors in Laravel
1 /10 Best HTML5 Sliders for Images and Text
/Site Authentication in Node.js: User Signup
/Creating a Task Manager App Using Ionic: Part 2
/Creating a Task Manager App Using Ionic: Part 1
/Introduction to Forms in Angular 4: Reactive Forms
/Introduction to Forms in Angular 4: Template-Driven Forms
/24 Essential WordPress Utilities to Manage Your Site
/25 Essential WordPress Utilities to Manage Your Site
/Get Rid of Bugs Quickly Using BugReplay
1 /Manipulating HTML5 Canvas Using Konva: Part 1, Getting Started
/10 Must-See Easy Digital Downloads Extensions for Your WordPress Site
22 Best WordPress Booking and Reservation Plugins
/Understanding ExpressJS Routing
/15 Best WordPress Star Rating Plugins
/Creating Your First Angular App: Basics
/Inheritance and Extending Objects With JavaScript
/Introduction to the CSS Grid Layout With Examples
1Performant Animations Using KUTE.js: Part 5, Easing Functions and Attributes
Performant Animations Using KUTE.js: Part 4, Animating Text
/Performant Animations Using KUTE.js: Part 3, Animating SVG
/New Course: Code a Quiz App With Vue.js
/Performant Animations Using KUTE.js: Part 2, Animating CSS Properties
Performant Animations Using KUTE.js: Part 1, Getting Started
/10 Best Responsive HTML5 Sliders for Images and Text (Plus 3 Free Options)
/Single-Page Applications With ngRoute and ngAnimate in AngularJS
/Deferring Tasks in Laravel Using Queues
/Site Authentication in Node.js: User Signup and Login
/Working With Tables in React, Part Two
/Working With Tables in React, Part One
/How to Set Up a Scalable, E-Commerce-Ready WordPress Site Using ClusterCS
/New Course on WordPress Conditional Tags
/TypeScript for Beginners, Part 5: Generics
/Building With Vue.js 2 and Firebase
6 /Best Unique Bootstrap JavaScript Plugins
/Essential JavaScript Libraries and Frameworks You Should Know About
/Vue.js Crash Course: Create a Simple Blog Using Vue.js
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 5.5 API
/API Authentication With Node.js
/Beginner’s Guide to Angular: HTTP
/Beginner’s Guide to Angular: Routing
/Beginners Guide to Angular: Routing
/Beginner’s Guide to Angular: Services
/Beginner’s Guide to Angular: Components
/How to Create a Custom Authentication Guard in Laravel
/Learn Computer Science With JavaScript: Part 3, Loops
/Build Web Applications Using Node.js
/Learn Computer Science With JavaScript: Part 4, Functions
/Learn Computer Science With JavaScript: Part 2, Conditionals
/Create Interactive Charts Using Plotly.js, Part 5: Pie and Gauge Charts
/Create Interactive Charts Using Plotly.js, Part 4: Bubble and Dot Charts
Create Interactive Charts Using Plotly.js, Part 3: Bar Charts
/Awesome JavaScript Libraries and Frameworks You Should Know About
/Create Interactive Charts Using Plotly.js, Part 2: Line Charts
/Bulk Import a CSV File Into MongoDB Using Mongoose With Node.js
/Build a To-Do API With Node, Express, and MongoDB
/Getting Started With End-to-End Testing in Angular Using Protractor
/TypeScript for Beginners, Part 4: Classes
/Object-Oriented Programming With JavaScript
/10 Best Affiliate WooCommerce Plugins Compared
/Stateful vs. Stateless Functional Components in React
/Make Your JavaScript Code Robust With Flow
/Build a To-Do API With Node and Restify
/Testing Components in Angular Using Jasmine: Part 2, Services
/Testing Components in Angular Using Jasmine: Part 1
/Creating a Blogging App Using React, Part 6: Tags
/React Crash Course for Beginners, Part 3
/React Crash Course for Beginners, Part 2
/React Crash Course for Beginners, Part 1
/Set Up a React Environment, Part 4
1 /Set Up a React Environment, Part 3
/New Course: Get Started With Phoenix
/Set Up a React Environment, Part 2
/Set Up a React Environment, Part 1
/Command Line Basics and Useful Tricks With the Terminal
/How to Create a Real-Time Feed Using Phoenix and React
/Build a React App With a Laravel Back End: Part 2, React
/Build a React App With a Laravel RESTful Back End: Part 1, Laravel 9 API
/Creating a Blogging App Using React, Part 5: Profile Page
/Pagination in CodeIgniter: The Complete Guide
/JavaScript-Based Animations Using Anime.js, Part 4: Callbacks, Easings, and SVG
/JavaScript-Based Animations Using Anime.js, Part 3: Values, Timeline, and Playback
/Learn to Code With JavaScript: Part 1, The Basics
/10 Elegant CSS Pricing Tables for Your Latest Web Project
/Getting Started With the Flux Architecture in React
/Getting Started With Matter.js: The Composites and Composite Modules
Getting Started With Matter.js: The Engine and World Modules
/10 More Popular HTML5 Projects for You to Use and Study
/Understand the Basics of Laravel Middleware
/Iterating Fast With Django & Heroku
/Creating a Blogging App Using React, Part 4: Update & Delete Posts
/Creating a jQuery Plugin for Long Shadow Design
/How to Register & Use Laravel Service Providers
2 /Unit Testing in React: Shallow vs. Static Testing
/Creating a Blogging App Using React, Part 3: Add & Display Post
/Creating a Blogging App Using React, Part 2: User Sign-Up
20 /Creating a Blogging App Using React, Part 1: User Sign-In
/Creating a Grocery List Manager Using Angular, Part 2: Managing Items
/9 Elegant CSS Pricing Tables for Your Latest Web Project
/Dynamic Page Templates in WordPress, Part 3
/Angular vs. React: 7 Key Features Compared
/Creating a Grocery List Manager Using Angular, Part 1: Add & Display Items
New eBooks Available for Subscribers in June 2017
/Create Interactive Charts Using Plotly.js, Part 1: Getting Started
/The 5 Best IDEs for WordPress Development (And Why)
/33 Popular WordPress User Interface Elements
/New Course: How to Hack Your Own App
/How to Install Yii on Windows or a Mac
/What Is a JavaScript Operator?
/How to Register and Use Laravel Service Providers
/
waly Good blog post. I absolutely love this…