WordPress multisite – What’s the ideal setup for development/staging/production environments?

Since its been so long without an answer I take its already solved, but I’ll leave something here for posterity. I run a Multisite to a client at the agency I work for, and the setup is kinda complicated to keep up. They way I see it, the workflow you presented is pretty much spot … Read more

How developed with version control word press site on shared host? [closed]

You should familiarize yourself with a Version Control System. Most people are using Git these days, however, there are other systems such as Subversion CVS Mercurial And plenty of others. The way I typically see WordPress projects in Version Control is the following: Everything in your /wp-content/ should be in your repository Things like wp-config.php … Read more

How can I perform high-level database merging for WordPress within continues delivery?

There are open-source solutions out there to migrate database changes and WordPress configuration (WPCFM) in the way you’ve described, but I’m going to answer this by giving insight into the most common practice in a simple scenario. Updating plugins Let’s assume all 3 environments are the same except the database on production which has new … Read more

Version control with a team of non-developers

You can try using Source Tree https://www.sourcetreeapp.com/, no need to learn heavily the command line git, all the non coders need to do is copy their files to your repo, then commit and push if there are no complications that will arise. The only bad side of this is if there will be merge issues … Read more