How to or What's the best method to keep a "staging" wordpress site that is in sync with production? So we can test updates.

Melven Atillo 0 Reputation points
2024-11-11T06:56:08.5533333+00:00

How to or What's the best method to keep a "staging" WordPress site that is in sync with production? So we can test updates.

Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
988 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Rick van den Bosch 1 Reputation point
    2024-11-11T08:37:48.2833333+00:00

    Did you look at Preview environments in Azure Static Web Apps?

    By default, when you deploy a site to Azure Static Web Apps each pull request deploys a preview version of your site available through a temporary URL. This version of the site allows you to review changes before merging pull requests. Once the pull request (PR) is closed, the temporary environment disappears.

    0 comments No comments

  3. ajkuma 27,026 Reputation points Microsoft Employee
    2024-11-15T18:24:33.3633333+00:00

    Melven Atillo , could you please share more details/requirement? Are you leveraging Azure App Service or Azure Static Webapps.

    Adding to Rick's response, if you are leveraging Azure App Service, it allows you to create staging slots. This feature lets you deploy your WordPress site to a staging environment that mirrors your production site. You can test updates in the staging slot before swapping it with the production slot.

    Depending on the requirement, you may try the following approaches:

    Development and Testing: You can have separate slots for development, staging, and testing your web app without affecting the production environment. This allows you to validate changes before making them live.

    Blue-Green Deployments: You can set up a production slot and a staging slot. When you're ready to release a new version, you can swap the slots, making the staging slot the new production slot. This enables zero-downtime deployments.

    You may take a look at the article by one of colleague, which outlines steps for setting such a requirement for WordPress on App Service: How to set up staging slots in WordPress on App Service

    For more info: Staging environment with WordPress on App Service

    Kindly let us know, we will follow-up with you further.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.