Wordpress replicator

jyang

Regular Member
Joined
Oct 17, 2009
Messages
321
Reaction score
167
is there an easy, automated way to replicate a wordpress site with the same files/database/settings?

i was thinking of exporting the database/wordpress settings, but there has to be a simpler way around it...
 
I doubt there is a simple way of doing it, otherwise everyone would just run around copying other peoples blogs.
 
It depends on whether you want to clone a blog you've already set up, or if you want to start fresh and create a 'perfect' blog setup that you can go on to install multiple times.

If it's the second, you'll need to put in some effort up front, but you'll end up with something you can install over and over with all the settings already in the setup script.

That's the method I use. It's not hard at all, but you need to know a little about php and WP to get started.

The trick is to code the part that does the plugin autoactivate and configuration. Configuration of plugins is the hardest because you need to know what each plugin you autoactivate inserts into the db. The only way I've found to do this reliably is to do a db compare using before and after snapshots of the db and then scripting the new parts into the install.php or upgrade.php files in the WP engine.

But using this method you can change default settings at install time so you have custom tags, categories, pages, comments, posts, etc set up in the installer package and when you run through the upload and install bit you save heaps of time.
 
The only problem with things like wpmanagerdx and the massautomation tools is they need cpanel and not all hosts use it, or if they do, the versions might be different.
With the method I use, you do it on your desktop and don't need any special server-side installations. I've got an app that I use to customise my own installs at the moment, and I might release a product if there's a big need. It looks like cr*p at the moment because it was made just for me, but I can probably tidy it up a bit if I have to so it looks nicer and people will be willing to pay. :)
 
I would be interested in a script that does custom wordpress installs
 
Back
Top