Clone local WordPress database on remote server
Suppose you have a WordPress website on your local machine, and you want to clone it on a remote server. This post documents my current approach to doing this. I’m sure there is a plugin that makes this process easier, but I haven’t had the time to research.
See this post if you want to do the opposite – clone remote to local.
Create mysqldump on local machine
Use a GUI tool (e.g., TablePlus) to make this easier or do it via the command line. Either way, you want to create a .dump
file that contains all the SQL statements needed to recreate your database on the remote server. Something like this:
Recreate database on remote machine
Apply the mysqldump to your production server. Again, you can use a GUI tool or the command-line.
Update site URL and name
Run the following SQL query:
Update all URLs elsewhere
Use the Better Search Replace plugin to replace all references from your local URL (e.g., http://sajadtorkamani.test
with your remote URL (e.g., http://sajadtorkamani.
com).
Transfer media files
If you need to transfer media files to the remote server, see this post.
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment