Maintaining synced staging/production WP sites

This is a more general question about WP website best practices.

An issue I encounter with many of my clients is maintaining two identical WP installs (staging and production). They insist on seeing changes before they go live. However, with WP’s structure, that would involve constantly clearing and re-importing databases in addition to updating theme files.

Is there a simple answer out there that would allow me to maintain two identical WP websites with as few headaches as possible?

Thank you in advance for your help!
Jake

3 Answers
3

You might be interested in this Q/A in the FAQ category:

How to: Easily Move a WordPress Install from Development to Production?

Server mirroring/migration is a pain because there are so many pieces that might (or might not) need to be synced. PHP code (core, plugins, themes) is easy enough to keep straight. But when it comes to data, it gets messier. You’ve got your content, user accounts, and lots of option settings. Some of which will come from your plugins and themes, and which are typically not namespaced in any way that lets us manage them well. Plus, some of the options are ‘hardcoded’ to your hostname/URL, and internal links (such as for media) are hardcoded based on the configured URL, as well.

I keep hoping that over time, we’ll come up with some changes to core that will help mitigate at least some of these issues.

Leave a Comment