Cloning and synchronizing WordPress sites between environements (dev, staging, production) is something I would love to be able too. Wordmove sure is a great tool, but unfortunately it's nearly impossible to get it working on Windows. And believe me, I have spent hours trying.
A client recently got in touch with me, asking for some changes on his existing website. Therefore I wanted to have a local working copy of the live production site. As I'm unable to use Wordmove because I'm still stuck with Windows 10, I had to figure out a reliable solution for cloning a live WordPress site into my local dev environment.
wp-content
. You can do that easily using your host File Manager, or via SSH.SQL
file).wp-content
folder, and replace it with the one you just downloaded.wp-config.php
and make sure that the $table_prefix
variable matches with the database prefix you just uploaded./sr/
that is located at the same level as /wp-admin /wp-content /wp-includesreplace
, type your local site URL (in this example http://example.dev) without trailing slash. In the field with
, type your live site URL (in this example http://example.com) without trailing slash./sr/
folder and reload your local WordPress site. Enjoy.Inspiration:
Please leave some feedback in the comments.