<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Staging &amp; Dev Environment Pro | WPvivid Plugins Documentation</title>
	<atom:link href="https://docs.wpvivid.com/category/staging-pro/feed" rel="self" type="application/rss+xml" />
	<link>https://docs.wpvivid.com</link>
	<description>WPvivid Plugins Knowledge Base</description>
	<lastBuildDate>Sun, 01 Feb 2026 19:29:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to Add Rewrite Rules to Nginx</title>
		<link>https://docs.wpvivid.com/add-rewrite-rules-to-nginx.html</link>
					<comments>https://docs.wpvivid.com/add-rewrite-rules-to-nginx.html#respond</comments>
		
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Fri, 10 Dec 2021 08:45:32 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">https://docs.wpvivid.com/?p=1454</guid>

					<description><![CDATA[Nginx has no directory-level configuration file like Apache’s .htaccess or IIS’s web.config files. All configuration has to be done at the server level by an administrator, and WordPress cannot modify the configuration, like it can with Apache or IIS. Please also see this WP doc for more details – https://wordpress.org/support/article/nginx/. So as described in the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Nginx has no directory-level configuration file like Apache’s .htaccess or IIS’s web.config files. All configuration has to be done at the server level by an administrator, and WordPress cannot modify the configuration, like it can with Apache or IIS. Please also see this WP doc for more details – <a href="https://wordpress.org/support/article/nginx/">https://wordpress.org/support/article/nginx/</a>.</p>
<p>So as described in the doc, on an Nginx server, after creating an individual domain(subdomain) or creating a site in an subdirectory, you will need to manually add the configuration rules for the domain(website).</p>
<h2>Install A Staging Site to A Subdirectory</h2>
<p>WPvivid Staging Pro supports installing a staging site to a subdirectory of the live site, in the root directory or the wp-content directory.</p>
<h4><strong>Install the staging site to the root directory of the live site</strong></h4>
<p>When you choose to install the staging site to the website root, and if the subdirectory name(where the staging site is installed)is <em>monzgvhz</em>(or any name you defined when creating the staging site), you will need to add the following rules to the Nginx config file:</p>
<blockquote><p><em>location /monzgvhz<strong>(replace this with your own subdirectory name)</strong> {</em></p>
<p><em># First attempt to serve request as file, then</em></p>
<p><em># as directory, then fall back to displaying a 404,</em></p>
<p><em>#try_files $uri $uri/ = 404;</em></p>
<p><em>try_files $uri $uri/ /monzgvhz<strong>(replace this with your own subdirectory name)</strong>/ index.php?$args;</em></p>
<p><em>}</em></p></blockquote>
<h4><a href="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-root-directory.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1459 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-root-directory.png" alt="WPvivid subdirectory staging root directory" width="754" height="448" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-root-directory.png 754w, https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-root-directory-480x285.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 754px, 100vw" /></a></h4>
<h4><strong>Install the staging site to the wp-content directory </strong><strong>of the live site</strong></h4>
<p>When you choose to install the staging site to the wp-content directory, and if the subdirectory name(where the staging site is installed)is <em>udlkbpsb</em>(or any name you defined when creating the staging site), you will need to add the following rules to the Nginx config file:</p>
<blockquote><p><em>location /wp-content/udlkbpsb<strong>(replace this with your own subdirectory name)</strong> {</em></p>
<p><em># First attempt to serve request as file, then</em></p>
<p><em># as directory, then fall back to displaying a 404,</em></p>
<p><em>#try_files $uri $uri/ = 404;</em></p>
<p><em>try_files $uri $uri/ /udlkbpsb<strong>(replace this with your own subdirectory name)</strong>/ index.php?$args;</em></p>
<p><em>}</em></p></blockquote>
<h2><a href="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-wp-content.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1460 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-wp-content.png" alt="WPvivid subdirectory staging wp content" width="715" height="488" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-wp-content.png 715w, https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdirectory-staging-wp-content-480x328.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 715px, 100vw" /></a></h2>
<h2>Install A Staging Site to An Individual Domain(Subdomain)</h2>
<p>WPvivid Staging Pro also supports installing a staging site to an individual domain(top-level domain and second level domain) that is hosted on the same server as your live site. For example, your live site is <em>a.com</em>, then you can install the staging site to <em>123.a.com </em>or <em>b.com</em>.</p>
<p>Here is also a step-by-step Nginx offical doc on <a href="https://www.nginx.com/blog/installing-wordpress-with-nginx-unit/">How to Install WordPress on Nginx and Configure Nginx</a>.</p>
<p>In that case, you will need to create a different conf file for the domain and add the following rules to the conf file to make the staging site to work properly:</p>
<blockquote><p><em>root /var/www/html/domain.com/wordpress<strong>(replace the root folder of the web server, the domain, and the website directory with your owns)</strong>;</em><br />
<em>server_name domain.com<strong>(replace this with the individual domain name)</strong>;</em></p></blockquote>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1461 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging.png" alt="WPvivid subdomain staging" width="758" height="512" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging.png 758w, https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging-480x324.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 758px, 100vw" /></a></p>
<p>You can even map an individual domain to a different domain&#8217;s subdirectory, as long as the domains(websites) are hosted on the same server, for example, <em>123.b.com</em> to <em>a.com/wordpress/123</em>. In this case, the rules that should be added to the domain&#8217;s(123.b.com) conf file are:</p>
<blockquote><p><em>root /var/www/html/domain.com/wordpress/subdirectory<strong>(replace the root folder of the web server, the domain, and the website subdirectory with your owns)</strong>;</em><br />
<em>server_name domain.com<strong>(replace this with the individual domain name)</strong>;</em></p></blockquote>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging-individual-domain.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1462 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging-individual-domain.png" alt="WPvivid subdomain staging individual domain" width="802" height="493" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging-individual-domain.png 802w, https://docs.wpvivid.com/wp-content/uploads/2021/12/wpvivid-subdomain-staging-individual-domain-480x295.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 802px, 100vw" /></a></p>
<p><strong>Notes:</strong></p>
<p>1. After adding the above rules, make sure to restart Nginx server to make the changes effect.</p>
<p>2. For staging sites on Nginx server, make sure to use the same Permalink settings as the live site.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/add-rewrite-rules-to-nginx.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How-to: Create A Fresh WordPress Install with Staging &#038; Dev Environment Pro</title>
		<link>https://docs.wpvivid.com/wpvivid-staging-pro-create-fresh-install.html</link>
					<comments>https://docs.wpvivid.com/wpvivid-staging-pro-create-fresh-install.html#respond</comments>
		
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Mon, 07 Jun 2021 02:14:40 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">http://docs.wpvivid.com/?p=65</guid>

					<description><![CDATA[Pvivid Staging Pro provides the ability to create a fresh WordPress install in a subfolder of your current site. This feature is especially useful in the case where you need to develop a WordPress site from scratch and easily publish it to a live site once development work is done. You can choose which plugins [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>W</span>Pvivid Staging Pro provides the ability to create a fresh WordPress install in a subfolder of your current site. This feature is especially useful in the case where you need to develop a WordPress site from scratch and easily publish it to a live site once development work is done.</p>
<p>You can choose which plugins and themes on your current site to copy to the fresh site. After a fresh install is created, you can also update it with the live site.</p>
<blockquote>
<h3><strong>How to Create A Fresh WordPress Install?</strong></h3>
</blockquote>
<p>To create a fresh WordPress install, login to your admin dashboard &gt; click <em>WPvivid Staging </em>in the left side menu &gt; switch <em>to </em>Create A Fresh WP Install tab.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1151 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-fresh-install.png" alt="Staging pro create fresh install" width="1011" height="654" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-fresh-install.png 1011w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-fresh-install-980x634.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-fresh-install-480x311.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1011px, 100vw" /></a></p>
<h4><strong>1. </strong><strong>Choose A Database for the Fresh Site</strong></h4>
<p>On the &#8216;Create A Fresh WP Install&#8217; page, first enter a prefix for the fresh site&#8217;s database tables. You can leave it as the default: <i>wpvividfresh**_</i></p>
<p>Then choose a database for the fresh site:</p>
<ul>
<li>Share the same database with your live site, which is recommended.</li>
<li>Install the fresh site to another database, this requires you to provide additional login credentials for the database: database name, user name. user password, localhost.</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-database-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1153 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-database-fresh-install.png" alt="Staging Pro choose database fresh install" width="599" height="362" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-database-fresh-install.png 599w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-database-fresh-install-480x290.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 599px, 100vw" /></a></p>
<h4><strong>2. </strong><strong>Choose Which Subfolder to Install the Fresh Site to</strong></h4>
<p>Next, enter a name for subfolder where the fresh site will be installed. You can leave it as the default: <em>myfreshinstall**</em></p>
<p>Then choose which subfolder of your current site you want the staging site to be saved in:</p>
<ul>
<li>The root directory</li>
<li>The wp-content directory</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-subdirectory-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1152 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-subdirectory-fresh-install.png" alt="Staging Pro choose subdirectory fresh install" width="621" height="206" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-subdirectory-fresh-install.png 621w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-subdirectory-fresh-install-480x159.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 621px, 100vw" /></a></p>
<h4><strong>3. Choose Which Themes and Plugins to Install</strong></h4>
<p>After that, choose which themes or plugins on the current site that you wish to install to the fresh site.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-themes-plugins-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1154 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-themes-plugins-fresh-install-1024x564.png" alt="Staging Pro choose themes plugins fresh install" width="1024" height="564" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-themes-plugins-fresh-install-1024x564.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-themes-plugins-fresh-install-980x539.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-choose-themes-plugins-fresh-install-480x264.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<p>Once done, click the <em><em>Creating Now</em> </em>button at the bottom to start creating the fresh site.</p>
<blockquote><p><strong>Note: </strong>Please don not close or refresh the page while the plugin is creating a fresh site. This can take some time depending on your connection speed and the size of the copy.</p></blockquote>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1155 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-fresh-install-1024x477.png" alt="Staging Pro creating fresh install" width="1024" height="477" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-fresh-install-1024x477.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-fresh-install-980x457.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-fresh-install-480x224.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<p>When the process is complete and you get the success message, head to the Staging Sites tab where all your staging sites and fresh WordPress installs are displayed. You can manage the sites from the list:</p>
<ul>
<li>Copy the fresh install to the live site</li>
<li>Update the fresh install</li>
<li>Access the frontend and backend of the fresh install</li>
<li>Delete the fresh install</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1156 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-fresh-install-1024x362.png" alt="Staging Pro manage fresh install" width="1024" height="362" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-fresh-install-1024x362.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-fresh-install-980x346.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-fresh-install-480x170.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<blockquote>
<h3><strong>How to Copy the Fresh Install to Live?</strong></h3>
</blockquote>
<p>After you finish the development work on the fresh install, you can publish it to your live site with one click.</p>
<p>To do that, click the <em>Copy the Fresh Install to Live</em> button of the site, on the tab that opens, choose what you wish to copy from the fresh install to the live site.</p>
<p>Once done, click the <em>Copy Now</em> button to start the process.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-fresh-install-to-live.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1157 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-fresh-install-to-live-1024x530.png" alt="Staging Pro push fresh install to live" width="1024" height="530" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-fresh-install-to-live-1024x530.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-fresh-install-to-live-980x508.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-fresh-install-to-live-480x249.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<blockquote>
<h3><strong>How to Update the Fresh Install?</strong></h3>
</blockquote>
<p>Sometimes you may need to update the fresh install with some contents or settings on your live site, then you can use the update the fresh install option.</p>
<p>To do that, click the <em>Update the Fresh Install</em> button of the site.</p>
<p>On the tab that opens, choose what you wish to update from the live site to the fresh install.</p>
<p>Once done, click the <em>Update Now</em> button to start the process.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-fresh-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1158 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-fresh-install-1024x502.png" alt="Staging Pro update fresh install" width="1024" height="502" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-fresh-install-1024x502.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-fresh-install-980x480.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-fresh-install-480x235.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/wpvivid-staging-pro-create-fresh-install.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How-to: Publish A Staging Site to Live with Staging &#038; Dev Environment Pro</title>
		<link>https://docs.wpvivid.com/wpvivid-staging-pro-publish-staging-to-live.html</link>
					<comments>https://docs.wpvivid.com/wpvivid-staging-pro-publish-staging-to-live.html#respond</comments>
		
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Mon, 07 Jun 2021 02:14:20 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">http://docs.wpvivid.com/?p=146</guid>

					<description><![CDATA[he Staging Sites tab displays all your staging sites. From this tab, you can manage your staging sites, update staging sites from the live sites and copy staging sites to live. You can also access the staging site’s admin dashboard by clicking the Admin URL, and delete a staging site from the list(it will delete [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>T</span>he <em>Staging Sites</em> tab displays all your <a href="https://wpvivid.com/wpvivid-backup-pro-create-staging-site">staging sites</a>.</p>
<p>From this tab, you can manage your staging sites, update staging sites from the live sites and copy staging sites to live.</p>
<p>You can also access the staging site’s admin dashboard by clicking the<em> Admin URL</em>, and delete a staging site from the list(it will delete the staging site folder and staging tables).</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2351 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/Staging-site.png" alt="Staging site" width="1254" height="543" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/Staging-site.png 1254w, https://docs.wpvivid.com/wp-content/uploads/2021/06/Staging-site-980x424.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/Staging-site-480x208.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1254px, 100vw" /></p>
<h2><strong>How to Publish A Staging Site to Live?</strong></h2>
<p>To push a staging site to live, click on <em>Copy the Staging Site to Live</em> button on the <em>Staging Sites</em> tab,</p>
<p>Next, select the content you want to copy from the staging site to the live site,</p>
<ul>
<li>Database + Uploads folder: When you choose this option, only the database and the Uploads folder of the staging site will be pushed to the live site.</li>
<li>Custom Content: Select content you wish to push to the live site, click the arrows to expand the options.</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2352 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/Copy-the-staging-site-to-live.png" alt="Copy the staging site to live" width="1254" height="584" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/Copy-the-staging-site-to-live.png 1254w, https://docs.wpvivid.com/wp-content/uploads/2021/06/Copy-the-staging-site-to-live-980x456.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/Copy-the-staging-site-to-live-480x224.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1254px, 100vw" /></p>
<p>Once you have selected the content, hit the <em>Copy Now</em> button to start publishing it to the live site.</p>
<p><strong>Note: </strong>Please do not close or refresh the page while the plugin is copying a staging site to a live site. This can take some time depending on your connection speed and the size of the copy.</p>
<p>Once done, a success message will pop up.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2354 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/The-pushing-process-is-completed.png" alt="The pushing process is completed" width="551" height="198" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/The-pushing-process-is-completed.png 551w, https://docs.wpvivid.com/wp-content/uploads/2021/06/The-pushing-process-is-completed-480x172.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 551px, 100vw" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/wpvivid-staging-pro-publish-staging-to-live.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How-to: Create A Staging Site for A WordPress Multisite Network with Staging &#038; Dev Environment Pro</title>
		<link>https://docs.wpvivid.com/wpvivid-staging-pro-create-staging-site-for-wordpress-multisite.html</link>
					<comments>https://docs.wpvivid.com/wpvivid-staging-pro-create-staging-site-for-wordpress-multisite.html#respond</comments>
		
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Mon, 07 Jun 2021 02:14:11 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">http://docs.wpvivid.com/?p=67</guid>

					<description><![CDATA[Pvivid Staging Pro provides the ability to create a staging site for a WordPress Multisite network. You can choose to copy the entire MU network(only subdirectory Multisite supported) or a specific subsite(both subdomain and subdirectory Multisite supported) to the staging site. Once the staging site is created, you also have the options to update the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>W</span>Pvivid Staging Pro provides the ability to <a href="https://wpvivid.com/wpvivid-staging-pro-create-staging-site-for-wordpress-multisite">create a staging site for a WordPress Multisite network</a>.</p>
<p>You can choose to copy the entire MU network(only subdirectory Multisite supported) or a specific subsite(both subdomain and subdirectory Multisite supported) to the staging site.</p>
<p>Once the staging site is created, you also have the options to update the live site to staging site and push the staging site back to live with one click.</p>
<h2><strong>How to Create A Staging Site for WordPress Multisite?</strong></h2>
<p>To create a staging site, login to your admin dashboard &gt; click <em>WPvivid Staging </em>in the left side menu &gt; click the <em>Create A Staging Site </em>button<em>.</em></p>
<p><strong>Note: </strong>WPvivid Staging will automatically exclude some most-used cache plugins when creating a staging site, but considering that there are hundreds of cache plugins on the market, we would recommend temporarily deactivating cache plugins before creating a staging site to rule out possibilities of unknown failures.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-site-multisite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1171 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-site-multisite.png" alt="Staging Pro create staging site multisite" width="805" height="358" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-site-multisite.png 805w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-site-multisite-480x213.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 805px, 100vw" /></a></p>
<h4><strong>1. Choose Database and Directory to Install the Staging Site</strong></h4>
<p>First, enter a name for the folder where the staging site will be installed and a prefix for the staging site database tables.</p>
<p>The information you entered will be reflected immediately on the staging site overview section under the fields.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-multisite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1169 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-multisite-1024x549.png" alt="Staging Pro create staging multisite" width="1024" height="549" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-multisite-1024x549.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-multisite-980x526.png 980w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-multisite-480x257.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<p>Next, choose a database for the staging site with the options to:</p>
<ul>
<li><label>Share the same database with your live site (recommended)</label></li>
<li><label>Install the staging site to another database, this requires you to provide additional login credentials for the database: database name, user name. user password, localhost.</label></li>
</ul>
<p>Choose which directory to install the staging site:</p>
<ul>
<li>Install the staging site to the root directory of the current site</li>
<li>Install the staging site to the wp-content directory of the current site</li>
</ul>
<h4><strong>2. Choose What to Copy to the Staging Site</strong></h4>
<p>Next, choose what content on the live site you want to copy to the staging site:</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1172 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite.png" alt="Staging Pro create staging mu subsite" width="769" height="445" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite.png 769w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite-480x278.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 769px, 100vw" /></a></p>
<h6><strong><label>Option 1: Create a staging site for a single MU subsite</label></strong></h6>
<p>This option allows you to create a staging site for a single MU subsite, <strong>it supports both subdomain and subdirectory Multisite</strong>.</p>
<p>First, you will need to choose a subsite for which you want to create a staging site. You can search the specific subsite if you have many.</p>
<p>Then click <em>Next Step </em>to start choosing what content you want to copy to the staging site.</p>
<p>By default, the plugin will copy the entire database and WordPress files to the staging site, however, you do have the option to exclude files/folders that you don&#8217;t want to copy. To do that, expand the option &#8216;Exclude Additional Files/Folders&#8217; &gt; Select directory from the dropdown menu: /themes, /plugins, /wp-content, /uploads and select files/folders under the directory to exclude them. Click the trashcan icon delete a foler/file from the exclusion list.</p>
<h6><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite-select-content.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1173 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite-select-content.png" alt="Staging Pro create staging mu subsite select content" width="768" height="688" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite-select-content.png 768w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-mu-subsite-select-content-480x430.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 768px, 100vw" /></a></h6>
<h6><strong><label>Option 2: Create a staging site for the entire MU network</label></strong></h6>
<p><label>By choosing this option, you can create a staging site for the entire MU network. You have the options to choose to copy the entire MU database, exclude file/folder, select specific or all subsites to copy to the staging site. </label><strong><label>This option is only supported on a subdirectory Multisite.</label></strong></p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-entire-mu.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1174 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-entire-mu.png" alt="Staging Pro create staging entire mu" width="768" height="663" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-entire-mu.png 768w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-create-staging-entire-mu-480x414.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 768px, 100vw" /></a></p>
<h4><strong>3. Create the Staging Site </strong></h4>
<p>Once you are done with the content, click the <em>Create Now</em> button to start creating the staging site. You can view the live progress on the dashboard.</p>
<p><strong>Note: </strong>Please don not close or refresh the page while the plugin is creating a staging site. It can take some time depending on your connection speed and the size of the copy.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-staging-entire-mu.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1175 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-staging-entire-mu.png" alt="Staging Pro creating staging entire mu" width="773" height="348" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-staging-entire-mu.png 773w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-creating-staging-entire-mu-480x216.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 773px, 100vw" /></a></p>
<p>Once created successfully, the staging site will show up in the <em>Staging Sites</em> tab where you will get an overview of the staging site:</p>
<div>
<ul>
<li><span class="wpvivid-element-space-right">Staging Site URL: e.g., </span><span class="wpvivid-element-space-right">http://yourdomain.com/mystaging01</span></li>
<li><span class="wpvivid-element-space-right">Staging Site Admin URL: e.g., </span><span class="wpvivid-element-space-right">http://yourdomain.com/mystaging01/wp-admin/</span></li>
</ul>
<p>The urls are clickable so that you can click them to access the staging site&#8217;s homepage or admin dashboard to start your development work. Your login credentials for your staging site will be the same as your live site’s.</p>
<ul>
<li>Database: e.g., <span class="wpvivid-element-space-right">wpvivid_db_9</span></li>
<li>Table Prefix: e.g., <span class="wpvivid-element-space-right">wpvividstg01_</span></li>
<li>Site Directory: e.g., <span class="wpvivid-element-space-right">/var/www/html/yourdomain.com/wordpress/mystaging01</span></li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-staging-multisite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1176 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-staging-multisite.png" alt="Staging Pro manage staging multisite" width="873" height="353" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-staging-multisite.png 873w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-manage-staging-multisite-480x194.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 873px, 100vw" /></a></p>
</div>
<p>You can also mange the staging site with the options:</p>
<ul>
<li>Copy the Staging Site to Live</li>
<li>Update the Staging Site</li>
<li>Delete the staging site</li>
</ul>
<h2><strong>How to Update A Staging Site of WordPress Multisite?</strong></h2>
<p>Sometimes when you make changes on the staging site, there can be new data generated on the live site at the same time.</p>
<p>In this case, you may also want to update the new data to the staging site before finally pushing it to the live site.</p>
<p>To do that, go to WPvivid Staging plugin &gt; Staging Sites tab, click the <em>Update the Staging Site</em> button after the site.</p>
<p>Next, choose what you wish to update from the live site to the staging site.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-staging-multisite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1177 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-staging-multisite.png" alt="Staging pro update staging multisite" width="852" height="568" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-staging-multisite.png 852w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-update-staging-multisite-480x320.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 852px, 100vw" /></a></p>
<p>If the staging site is a Multisite network as you chose when creating it, you&#8217;ll also have the options of:</p>
<p>Easy Mode: Quickly get started by choosing the entire MU database and custom files and/or specific subsites and updating them to the staging site.</p>
<p>Advanced Update: Give you the freedom to choose custom files and database tables of the entire MU network and update them to the staging site.</p>
<p>Once done, click the <em>Update Now</em> button to start the process.</p>
<p><strong>Note: </strong>Please do not close or refresh the page while the plugin is updating the staging. It can take some time depending on your connection speed and the size of the copy.</p>
<p>Once the update is done, you&#8217;ll receive a popup message saying &#8216;Updating the staging site completed successfully&#8217;.</p>
<h2><strong>How to Publish A Staging Site to A Live WordPress Multisite Network?</strong></h2>
<p>Once you have finished your development work on the staging site, you can push it back to your live site.</p>
<p>To do that, go to WPvivid Staging plugin &gt; <em>Staging Sites</em> tab, click on the <em>Copy the Staging Site to Live</em> button.</p>
<p>Next, choose what to copy from the staging site to the live site.</p>
<p>If the staging site is a Multisite network as you chose when creating it, you&#8217;ll also have the options of:</p>
<ul>
<li>Easy Mode: Quickly get started by choosing the entire MU database and custom files and/or specific subsites and pushing them to the live site.</li>
<li>Advanced Update: Give you the freedom to choose custom files and database tables of the entire MU network and push them to the live site.</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-staging-to-live-multisite.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1178 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-staging-to-live-multisite.png" alt="Staging Pro push staging to live multisite" width="834" height="653" srcset="https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-staging-to-live-multisite.png 834w, https://docs.wpvivid.com/wp-content/uploads/2021/06/staging-pro-push-staging-to-live-multisite-480x376.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 834px, 100vw" /></a></p>
<p>Once you have selected the content, click the <em>Copy Now </em>button to start publishing these selected content to the live site.</p>
<p><strong>Note: </strong>Please do not close or refresh the page while the plugin is copying a staging site to a live site. It can take some time depending on your connection speed and the size of the copy.</p>
<p>Once the pushing is done, you&#8217;ll receive a pop message saying &#8216;Pushing the staging site to live completed successfully&#8217;.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/wpvivid-staging-pro-create-staging-site-for-wordpress-multisite.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How-to: Create A Staging Site with Staging &#038; Dev Environment Pro</title>
		<link>https://docs.wpvivid.com/wpvivid-backup-pro-create-staging-site.html</link>
					<comments>https://docs.wpvivid.com/wpvivid-backup-pro-create-staging-site.html#respond</comments>
		
		<dc:creator><![CDATA[Tony]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 09:18:00 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">http://docs.wpvivid.com/?p=70</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
								<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><span class='et-dropcap'>W</span>Pvivid Staging Pro provides the ability to create a staging copy of your WordPress site in a subdirectory or subdomain easily.</p>
<p>You can select the content that you want to copy from the live site to the staging site.</p>
<p>Once the staging site is created, you also have the options to update the live site to staging site and push the staging site back to live with one click.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-staging-sites.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1299 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-staging-sites.png" alt="WPvivid Staging Pro Create Staging Sites" width="899" height="837" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-staging-sites.png 899w, https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-staging-sites-480x447.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 899px, 100vw" /></a></p>
<h2><strong>How to Create A Staging Site?</strong></h2>
<p>To create a staging site, login to your admin dashboard &gt; click <em>WPvivid Staging </em>in the left side menu &gt; On the <em>Staging sites tab, </em>click the <em>Create A Staging Site </em>button.</p>
<p><strong>Note: </strong>WPvivid Staging will automatically exclude some most-used cache plugins when creating a staging site, but considering that there are hundreds of cache plugins on the market, we would recommend temporarily deactivating cache plugins before creating a staging site to rule out possibilities of unknown failures.</p>
<h4><strong>1. Choose Database and Directory for the Staging Site</strong></h4>
<p>First, select a directory where the staging site will be saved under your WordPress installation, and name the staging directory, which is also the staging site&#8217;s name.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-choose-staging-directory.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1300 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-choose-staging-directory.png" alt="WPvivid Staging Pro Choose Staging Directory" width="800" height="202" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-choose-staging-directory.png 800w, https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-choose-staging-directory-480x121.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 800px, 100vw" /></a></p>
<p>As of version 2.0.1, WPvivid Staging Pro offers the option to install the staging site to a subdomain, you will need to fill in the information below to use this option:</p>
<ol>
<li>An existing subdomain of your live site that you want to install the staging site to. You can usually create one on your hosting panel. E.g., http://dev.yourdomain.com.</li>
<li>An existing absolute path that you have mapped the subdomain to. E.g., /var/www/html/dev.example.com/.</li>
</ol>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-subdomain-cpanel.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1301 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-subdomain-cpanel.png" alt="WPvivid Staging Pro Create Subdomain cPanel" width="723" height="305" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-subdomain-cpanel.png 723w, https://docs.wpvivid.com/wp-content/uploads/2020/12/wpvivid-staging-pro-create-subdomain-cpanel-480x202.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 723px, 100vw" /></a></p>
<p>Next, choose a database for the staging site and name the staging table prefix:</p>
<ul>
<li>Share the same database with your live site, which is recommended.</li>
<li>Install the staging site to a different database, this requires you to provide additional login credentials for the database: database name, user name. user password, localhost.</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-choose-database-staging-site.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1182 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-choose-database-staging-site.png" alt="Staging Pro choose database staging site" width="583" height="351" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-choose-database-staging-site.png 583w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-choose-database-staging-site-480x289.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 583px, 100vw" /></a></p>
<h4><strong>2. Choose What to Copy to the Staging Site</strong></h4>
<p>Next, you can customize the content on the live site that you wish to copy to the staging site.</p>
<p>By default, the plugin will copy the entire database and WordPress files to the staging site, however, you do have the option to exclude certain tables or files/folders that you don’t want to copy:</p>
<p>To exclude tables, expand the option &#8216;Database Will Be Copied&#8217; and deselect tables that you don&#8217;t want to copy.</p>
<p>To exclude files/folders, expand the option ‘Exclude Additional Files/Folders’ &gt; select directory from the dropdown menu: /themes, /plugins, /wp-content, /uploads and select files/folders under the directory to exclude them. Click the trashcan icon delete a folder/file from the exclusion list.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-select-content-staging-site.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1184 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-select-content-staging-site-1024x740.png" alt="Staging pro select content staging site" width="1024" height="740" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-select-content-staging-site-1024x740.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-select-content-staging-site-980x708.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-select-content-staging-site-480x347.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<h4><strong>3. Create the Staging Site</strong></h4>
<p>Once you are done with the content, click the <em>Creating Staging</em> button to start creating the staging site.</p>
<p><strong>Note: </strong>Please don not close or refresh the page while the plugin is creating a staging site. This can take some time depending on your connection speed and the size of the copy.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-creating-staging-site.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1185 size-large" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-creating-staging-site-1024x478.png" alt="Staging Pro creating staging site" width="1024" height="478" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-creating-staging-site-1024x478.png 1024w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-creating-staging-site-980x457.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-creating-staging-site-480x224.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" /></a></p>
<p>Once done, head to <em>Staging Sites</em> tab where all your staging sites are displayed. You can then log in to the staging site&#8217;s admin area from login url showing in the list, your login credentials for your staging site’s WordPress dashboard will be the same as your live site’s.</p>
<h2><strong>How to Update the Staging Site?</strong></h2>
<p>Sometimes when you make changes on the staging site, there can be new data generated on the live site at the same time.</p>
<p>In this case, you may also want to update the new data to the staging site before finally pushing it to the live site.</p>
<p>To do that, go to WPvivid Staging plugin &gt; Staging Sites tab, click the <em>Update the Staging Site</em> button after the site.</p>
<p>Next, choose what you wish to update from the live site to the staging site.</p>
<ul>
<li>Database + Uploads folder: Quickly update the entire database and the uploads folder of the live site to the staging site.</li>
<li>Custom Content: Choose custom content from the live site to update to the staging site.</li>
</ul>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-update-staging-site.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-1186 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-update-staging-site.png" alt="Staging Pro update staging site" width="992" height="551" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-update-staging-site.png 992w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-update-staging-site-980x544.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/12/staging-pro-update-staging-site-480x267.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 992px, 100vw" /></a></p>
<p>Once done, click the <em>Update Now</em> button to start the process.</p>
<p><strong>Note: </strong>Please do not close or refresh the page while the plugin is updating the staging. It can take some time depending on your connection speed and the size of the copy.</p>
<p>Once the update is done, you’ll receive a popup message saying ‘Updating the staging site completed successfully’.</p>
<p>Now feel free to develop your site on a staging environment and once the development work is done, you can <a href="https://wpvivid.com/wpvivid-backup-pro-publish-staging-to-live">publish the staging site your live site with one click</a>.</div>
			</div>
			</div>			
				
				
				
				
			</div>		
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/wpvivid-backup-pro-create-staging-site.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Overview: Staging &#038; Dev Environment Pro</title>
		<link>https://docs.wpvivid.com/wpvivid-staging-pro-overview.html</link>
					<comments>https://docs.wpvivid.com/wpvivid-staging-pro-overview.html#respond</comments>
		
		<dc:creator><![CDATA[docswpvivid_admin]]></dc:creator>
		<pubDate>Sun, 22 Nov 2020 01:34:46 +0000</pubDate>
				<category><![CDATA[Docs]]></category>
		<category><![CDATA[Staging & Dev Environment Pro]]></category>
		<guid isPermaLink="false">http://docs.wpvivid.com/?p=22</guid>

					<description><![CDATA[Pvivid Staging Pro is a development tool that provide you the abilities to create a staging/development environment and publish a staging site to live. This plugin comes in very handy especially in cases where you need to create a testing environment to test plugins, themes or WordPress updates, or you need to create a fresh [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><span class='et-dropcap'>W</span>Pvivid Staging Pro is a development tool that provide you the abilities to create a staging/development environment and publish a staging site to live.</p>
<p>This plugin comes in very handy especially in cases where you need to create a testing environment to test plugins, themes or WordPress updates, or you need to create a fresh WordPress installation to develop a WordPress site from scratch. With it, you can create a staging site or a fresh WordPress installation in a subdirectory of the current live site in just few clicks, and make the staging sites live after your finish the work.</p>
<p>This article will give you a great overview on the WPvivid Staging Pro plugin.</p>
<h2><strong>Install WPvivid Staging Pro</strong></h2>
<p>First, log in to your <em><a href="https://wpvivid.com/my-account/downloads">My Account area on wpvivid.com &gt; Downloads section</a>. </em>Click <em>Download</em> button of the wpvivid-staging.zip.</p>
<p>Go to your WordPress dashboard &gt; <em>Plugins</em> &gt; Click <em>Add New</em> &gt; Click <em>Upload Plugin </em>and upload the installation zip you just downloaded &gt; Click <em>Install Now </em>&gt; Click <em>Activate Plugin.</em></p>
<p>Once installed, you can access the plugin from your left admin menu &gt; WPvivid Staging.</p>
<p>WPvivid Staging Pro has 3 tab pages: Staging Sites, Create A Staging Site, Create A Fresh WP Install</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2338 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-sites-page.png" alt="Staging sites page" width="1255" height="246" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-sites-page.png 1255w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-sites-page-980x192.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-sites-page-480x94.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1255px, 100vw" /></p>
<h2><strong>Staging Sites</strong></h2>
<p>The Staging Sites page serves as a managing dashboard for all your staging sites. From the page, you can copy a staging site to live, update a staging site and delete a staging site. It also gives you quick access to the creating page of the staging site and fresh WP install.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2340 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/A-staging-site.png" alt="A staging site" width="1254" height="545" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/A-staging-site.png 1254w, https://docs.wpvivid.com/wp-content/uploads/2020/11/A-staging-site-980x426.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/11/A-staging-site-480x209.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1254px, 100vw" /></p>
<h2><strong>Create A Staging Site</strong></h2>
<p>From the page, you can create a staging site in a subdirectory of the current site in few steps:</p>
<ol>
<li>Choose a database to install the staging site: to the same database as your live site, or a separate database.</li>
<li>Choose directory to install the staging site: the root directory or the wp-content directory.</li>
<li>Choose what to copy to the staging site: Select files and database tables you want to copy from live site to the staging site</li>
</ol>
<p>Once you&#8217;re done with the settings, click &#8216;Create Now&#8217; to start creating the staging site.</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-staging-site.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-936 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-staging-site.png" alt="WPvivid Staging pro create staging site" width="944" height="754" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-staging-site.png 944w, https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-staging-site-480x383.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 944px, 100vw" /></a></p>
<h2><strong>Create A Fresh WP Install</strong></h2>
<p>The &#8216;fresh WP install&#8217; page allows you to create a fresh WordPress install in a subdirectory of the current site in few steps:</p>
<ol>
<li>Choose a database to install the fresh install: to the same database as your live site, or a separate database.</li>
<li>Choose directory to install the fresh install: the root directory or the wp-content directory.</li>
<li>Choose what to copy to the fresh install: Select files and database tables you want to copy from live site to the fresh install.</li>
</ol>
<p>Once you&#8217;re done with the settings, click &#8216;Create Now&#8217; to start creating the the fresh install.</p>
<p>&nbsp;</p>
<p><a href="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-fresh-wp-install.png"><img loading="lazy" decoding="async" class="with-border alignnone wp-image-938 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-fresh-wp-install.png" alt="WPvivid staging pro create fresh WP install" width="954" height="961" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-fresh-wp-install.png 954w, https://docs.wpvivid.com/wp-content/uploads/2020/11/wpvivid-staging-pro-create-fresh-wp-install-480x484.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 954px, 100vw" /></a></p>
<h2><strong>Settings</strong></h2>
<p>The settings page of the WPvivid Staging Pro plugin. You can try to configure the settings when encountering problems when creating a staging site:</p>
<ol>
<li><strong>DB Copy Count: </strong>Number of DB rows copied within one ajax query. If you encounter timeout errors, try lower values until no more errors occur.</li>
<li><strong>DB Replace Count:</strong> Number of DB rows processed within one ajax query. If timeout erros occur, decrease the value.</li>
<li><strong>File Copy Count:</strong> Number of files copied within one ajax request. If you encounter timeout errors, try lower values until no more errors occur.</li>
<li><strong>Max File Size:</strong> Maximum size of the files copied to a staging site. If you set the value of 0 MB, all files will be copied to a staging site.</li>
<li><strong>Staging Memory Limit:</strong> A temporary PHP memory limit for the plugin to create a staging site. Increase the value if you encounter a memory error.</li>
<li><strong>PHP Script Execution Timeout:</strong> The time-out is not your server PHP time-out. Try to scale the value bigger in a timeout situation.</li>
<li><strong>Delay Between Requests:</strong> If your server has a limit on the number of requests, a higher value is recommended.</li>
<li><strong>Retrying times when encountering a time-out error:</strong> Task retry times in a timeout situation.</li>
<li><strong>Anyone can visit the staging site:</strong> When the option is checked, anyone will be able to visit the staging site without the need to login. Uncheck it to request a login to visit the staging site.</li>
<li><strong>Keep permalink when transferring website:</strong> When checked, this option allows you to keep the current permalink structure when you create a staging site or push a staging site to live.</li>
<li><strong>Keep staging sites when deleting the plugin: </strong>With this option checked, all staging sites you have created will be retained when the plugin is deleted, just in case you still need them later. The sites will show up again after the plugin is reinstalled.</li>
<li><strong>Show the option &#8216;Push the staging site to live&#8217; on the staging site: </strong>When this option is checked, the plugin will offer an option of &#8216;Push the staging site to live&#8217; on the staging site, so you can directly push the staging site to live from the staging site. Uncheck it if you want to remove the option from the staging site.</li>
<li><strong>Files permission:</strong> The setting controls how file permissions are applied to the target site during staging creation, staging update, and staging push operations. Proper permission settings help balance security and write access during staging workflows.</li>
</ol>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2343 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings1.png" alt="Staging settings1" width="1320" height="769" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings1.png 1320w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings1-1280x746.png 1280w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings1-980x571.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings1-480x280.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1320px, 100vw" /></p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2344 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings2.png" alt="Staging settings2" width="1325" height="839" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings2.png 1325w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings2-1280x811.png 1280w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings2-980x621.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-settings2-480x304.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1325px, 100vw" /></p>
<h2><strong>License</strong></h2>
<p>Enter your WPvivid pro license in this page to get the plugin update and support.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-2346 size-full" src="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-license.png" alt="Staging license" width="1300" height="367" srcset="https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-license.png 1300w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-license-1280x361.png 1280w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-license-980x277.png 980w, https://docs.wpvivid.com/wp-content/uploads/2020/11/Staging-license-480x136.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1300px, 100vw" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://docs.wpvivid.com/wpvivid-staging-pro-overview.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
