<?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>Pedro, Author at Pete Panel</title>
	<atom:link href="https://staging.deploypete.com/author/ozonegroup/feed/" rel="self" type="application/rss+xml" />
	<link>http://deploypetesite.petelocal.net/author/ozonegroup/</link>
	<description>The fastest local-to-cloud environment for WordPress, Laravel, and modern PHP projects.</description>
	<lastBuildDate>Fri, 20 Feb 2026 20:14:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://staging.deploypete.com/wp-content/uploads/2020/09/cropped-PeteIconPro-32x32.png</url>
	<title>Pedro, Author at Pete Panel</title>
	<link>http://deploypetesite.petelocal.net/author/ozonegroup/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</title>
		<link>https://staging.deploypete.com/clone-wordpress-site/</link>
					<comments>https://staging.deploypete.com/clone-wordpress-site/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Fri, 20 Feb 2026 19:40:53 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=28786</guid>

					<description><![CDATA[<p>Cloning a WordPress site should be simple. But if you&#8217;ve ever tried to manually duplicate a WordPress installation, you already know the reality: Whether you&#8217;re creating a staging site, migrating servers, onboarding a developer, or building locally — cloning WordPress the traditional way is painful. In this guide, you&#8217;ll learn: Why Cloning WordPress Is Usually [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/clone-wordpress-site/">How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Cloning a WordPress site should be simple.</p>



<p class="wp-block-paragraph">But if you&#8217;ve ever tried to manually duplicate a WordPress installation, you already know the reality:</p>



<ul class="wp-block-list">
<li>Broken URLs</li>



<li>Database errors</li>



<li>Serialized data corruption</li>



<li>Missing media files</li>



<li>Plugin conflicts</li>



<li>Downtime</li>
</ul>



<p class="wp-block-paragraph">Whether you&#8217;re creating a staging site, migrating servers, onboarding a developer, or building locally — cloning WordPress the traditional way is painful.</p>



<p class="wp-block-paragraph">In this guide, you&#8217;ll learn:</p>



<ul class="wp-block-list">
<li>The traditional way to clone WordPress (and why it fails)</li>



<li>The safest method to clone any WordPress site</li>



<li>How to clone WooCommerce stores correctly</li>



<li>How to avoid database and URL replacement issues</li>



<li>How to do it in minutes using Pete</li>
</ul>



<h2 class="wp-block-heading" id="h-why-cloning-wordpress-is-usually-complicated">Why Cloning WordPress Is Usually Complicated</h2>



<p class="wp-block-paragraph">A WordPress site isn’t just “files.” It includes:</p>



<ul class="wp-block-list">
<li>Core WordPress files</li>



<li>Themes</li>



<li>Plugins</li>



<li>Media uploads</li>



<li>MySQL database</li>



<li>Serialized data</li>



<li>Domain references</li>



<li>Configuration files</li>



<li>Server-level settings (PHP, Apache, SSL)</li>
</ul>



<p class="wp-block-paragraph">If even one piece is mishandled, the clone breaks.</p>



<p class="wp-block-paragraph">Common issues include:</p>



<ul class="wp-block-list">
<li>“Error establishing database connection”</li>



<li>Redirect loops</li>



<li>Broken images</li>



<li>Mixed content warnings</li>



<li>WooCommerce session failures</li>



<li>Plugin license invalidation</li>
</ul>



<p class="wp-block-paragraph">The biggest problem? <strong>Database URL replacement and serialized data corruption.</strong></p>



<h2 class="wp-block-heading" id="h-the-traditional-way-to-clone-wordpress-manual-method">The Traditional Way to Clone WordPress (Manual Method)</h2>



<p class="wp-block-paragraph">Here’s how most developers do it.</p>



<h3 class="wp-block-heading" id="h-step-1-copy-all-files">Step 1: Copy All Files</h3>



<p class="wp-block-paragraph">Using FTP or SSH, copy your whole WordPress directory (often <code>/public_html/</code>) to the new location.</p>



<h3 class="wp-block-heading" id="h-step-2-export-database">Step 2: Export Database</h3>



<p class="wp-block-paragraph">Using phpMyAdmin, export the full database as an SQL file.</p>



<h3 class="wp-block-heading" id="h-step-3-create-new-database">Step 3: Create New Database</h3>



<p class="wp-block-paragraph">Create a new MySQL database and import the SQL file.</p>



<h3 class="wp-block-heading" id="h-step-4-edit-wp-config-php">Step 4: Edit wp-config.php</h3>



<p class="wp-block-paragraph">Update DB details to match the new database:</p>



<pre class="wp-block-code"><code>define('DB_NAME', 'new_db');
define('DB_USER', 'new_user');
define('DB_PASSWORD', 'new_password');</code></pre>



<h3 class="wp-block-heading" id="h-step-5-replace-urls-in-database">Step 5: Replace URLs in Database</h3>



<p class="wp-block-paragraph">Search &amp; replace the old domain with the new domain:</p>



<pre class="wp-block-code"><code>https://oldsite.com → https://newsite.com</code></pre>



<p class="wp-block-paragraph">This is where most clones break. WordPress stores <strong>serialized data</strong>. If you change the URL without updating the string length properly, it corrupts the structure.</p>



<pre class="wp-block-code"><code>a:1:{s:4:"home";s:19:"https://oldsite.com";}</code></pre>



<h3 class="wp-block-heading" id="h-step-6-fix-file-permissions">Step 6: Fix File Permissions</h3>



<p class="wp-block-paragraph">Often required after migration.</p>



<h3 class="wp-block-heading" id="h-step-7-clear-cache-test-everything">Step 7: Clear Cache + Test Everything</h3>



<p class="wp-block-paragraph">And hope nothing breaks.</p>



<h3 class="wp-block-heading" id="h-why-plugins-don-t-always-solve-it">Why Plugins Don’t Always Solve It</h3>



<p class="wp-block-paragraph">Cloning plugins often:</p>



<ul class="wp-block-list">
<li>Time out on large sites</li>



<li>Fail on WooCommerce</li>



<li>Break large databases</li>



<li>Ignore server-level settings</li>



<li>Skip performance configuration</li>



<li>Don’t support Laravel integrations</li>
</ul>



<p class="wp-block-paragraph">For agencies managing many sites, this becomes unsustainable.</p>



<h2 class="wp-block-heading" id="h-the-modern-way-clone-wordpress-in-minutes">The Modern Way: Clone WordPress in Minutes</h2>



<p class="wp-block-paragraph">Instead of manually copying files and fixing databases, use a system built for cloning.</p>



<p class="wp-block-paragraph">With Pete, cloning becomes:</p>



<ol class="wp-block-list">
<li>Export</li>



<li>Import</li>



<li>Done</li>
</ol>



<p class="wp-block-paragraph">No broken URLs. No serialized errors. No downtime.</p>



<h2 class="wp-block-heading" id="h-step-by-step-how-to-clone-a-wordpress-site-in-minutes">Step-by-Step: How to Clone a WordPress Site in Minutes</h2>



<h3 class="wp-block-heading" id="h-step-1-export-the-wordpress-site">Step 1: Export the WordPress Site</h3>



<p class="wp-block-paragraph">Install the Pete Converter Plugin on the source site, then click <strong>Export Site</strong>.</p>



<p class="wp-block-paragraph">Pete creates a portable package including:</p>



<ul class="wp-block-list">
<li>Files</li>



<li>Database</li>



<li>URL mapping</li>



<li>Configuration</li>



<li>Compatibility adjustments</li>
</ul>



<p class="wp-block-paragraph">Download the export file.</p>



<h3 class="wp-block-heading" id="h-step-2-open-pete-panel">Step 2: Open Pete Panel</h3>



<p class="wp-block-paragraph">Open Pete Panel (server or local). Click <strong>Import Site</strong> and upload the export file.</p>



<h3 class="wp-block-heading" id="h-step-3-deploy">Step 3: Deploy</h3>



<p class="wp-block-paragraph">Select:</p>



<ul class="wp-block-list">
<li>Domain or subdomain</li>



<li>PHP version</li>



<li>Enable SSL (Let’s Encrypt built-in)</li>



<li>Performance options</li>
</ul>



<p class="wp-block-paragraph">Click <strong>Deploy</strong>. Within minutes your cloned WordPress site is live.</p>



<h2 class="wp-block-heading" id="h-what-makes-this-different">What Makes This Different?</h2>



<h3 class="wp-block-heading" id="h-1-no-manual-database-editing">1) No Manual Database Editing</h3>



<p class="wp-block-paragraph">Pete automatically handles:</p>



<ul class="wp-block-list">
<li>Serialized data</li>



<li>URL rewriting</li>



<li>Path adjustments</li>



<li>Domain updates</li>
</ul>



<h3 class="wp-block-heading" id="h-2-woocommerce-safe">2) WooCommerce Safe</h3>



<p class="wp-block-paragraph">Pete protects WooCommerce integrity (sessions, hooks, consistency) for staging and migrations.</p>



<h3 class="wp-block-heading" id="h-3-built-in-performance-stack">3) Built-In Performance Stack</h3>



<p class="wp-block-paragraph">Your clone can be deployed optimized with:</p>



<ul class="wp-block-list">
<li>Apache MPM Event</li>



<li>HTTP/2</li>



<li>Proper PHP configuration</li>



<li>Optimized caching structure</li>
</ul>



<h3 class="wp-block-heading" id="h-4-server-level-security">4) Server-Level Security</h3>



<p class="wp-block-paragraph">Includes:</p>



<ul class="wp-block-list">
<li>OWASP CRS protection</li>



<li>Built-in SSL generator</li>



<li>Secure Apache configuration</li>



<li>phpMyAdmin for debugging</li>
</ul>



<h2 class="wp-block-heading" id="h-common-use-cases">Common Use Cases</h2>



<h3 class="wp-block-heading" id="h-create-a-staging-environment">Create a Staging Environment</h3>



<p class="wp-block-paragraph">Clone production → test safely → ship updates confidently.</p>



<h3 class="wp-block-heading" id="h-migrate-to-a-new-server">Migrate to a New Server</h3>



<p class="wp-block-paragraph">Move multiple WordPress sites in hours instead of weeks.</p>



<h3 class="wp-block-heading" id="h-onboard-developers">Onboard Developers</h3>



<p class="wp-block-paragraph">Give developers the latest site version to run locally, debug plugins, and switch PHP versions easily.</p>



<h3 class="wp-block-heading" id="h-integrate-with-laravel">Integrate with Laravel</h3>



<p class="wp-block-paragraph">Run WordPress + Laravel in one environment to build advanced app-like features (auth, subscriptions, custom business logic).</p>



<h2 class="wp-block-heading" id="h-how-long-does-it-take">How Long Does It Take?</h2>



<p class="wp-block-paragraph"><strong>Manual cloning:</strong> 30–90 minutes per site (if nothing breaks)<br><strong>Pete cloning:</strong> 2–5 minutes</p>



<h2 class="wp-block-heading" id="h-frequently-asked-questions">Frequently Asked Questions</h2>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Does cloning a WordPress site affect SEO?</summary><p>No. For staging or development, block indexing using noindex or robots rules.</p></details>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Can I clone a WooCommerce store safely?</summary><p>Yes. WooCommerce cloning must preserve serialized/session integrity. Pete handles this automatically.</p></details>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Will my plugins and themes work?</summary><p>Yes. Your export package includes themes and plugins.</p></details>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>What about large sites (5GB+ media)?</summary><p>Pete is built for full-site portability, including large installations.</p></details>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Can I clone WordPress to localhost?</summary><p>Yes. Pete supports local deployment so you can use your machine’s resources for development and debugging.</p></details>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>Do I need advanced server knowledge?</summary><p>No. Pete automates the infrastructure steps so you don’t need to manually manage SSH/database operations.</p></details>



<h2 class="wp-block-heading" id="h-when-should-you-not-clone-manually">When Should You NOT Clone Manually?</h2>



<p class="wp-block-paragraph">Avoid manual cloning if:</p>



<ul class="wp-block-list">
<li>The site uses WooCommerce</li>



<li>The site has complex serialized data</li>



<li>The site is large (1GB+)</li>



<li>You’re migrating multiple sites</li>



<li>You want zero downtime</li>



<li>You manage client sites</li>
</ul>



<h2 class="wp-block-heading" id="h-final-thoughts">Final Thoughts</h2>



<p class="wp-block-paragraph">The old way involves FTP, SQL exports, URL replacement, and lots of debugging.</p>



<p class="wp-block-paragraph">The modern way is simple:</p>



<p class="wp-block-paragraph"><strong>Export → Import → Deploy</strong></p>



<p class="wp-block-paragraph">In minutes.</p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button is-style-fill"><a class="wp-block-button__link wp-element-button" href="/try">Try Pete Now</a></div>
</div>
<p>The post <a href="https://staging.deploypete.com/clone-wordpress-site/">How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/clone-wordpress-site/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</title>
		<link>https://staging.deploypete.com/learn-how-to-clone-a-wordpress-site-in-minutes-without-breaking-urls-corrupting-the-database-or-using-unreliable-plugins-step-by-step-guide-for-developers-and-agencies/</link>
					<comments>https://staging.deploypete.com/learn-how-to-clone-a-wordpress-site-in-minutes-without-breaking-urls-corrupting-the-database-or-using-unreliable-plugins-step-by-step-guide-for-developers-and-agencies/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Fri, 20 Feb 2026 14:06:16 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=28773</guid>

					<description><![CDATA[<p>The post <a href="https://staging.deploypete.com/learn-how-to-clone-a-wordpress-site-in-minutes-without-breaking-urls-corrupting-the-database-or-using-unreliable-plugins-step-by-step-guide-for-developers-and-agencies/">How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<!-- divi:paragraph -->
<p>Cloning a WordPress site should be simple.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>But if you&#8217;ve ever tried to manually duplicate a WordPress installation, you already know the reality:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Broken URLs</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Database errors</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Serialized data corruption</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Missing media files</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Plugin conflicts</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Downtime</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>Whether you&#8217;re creating a staging site, migrating servers, onboarding a developer, or building locally — cloning WordPress the traditional way is painful.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>In this guide, you&#8217;ll learn:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>The traditional way to clone WordPress (and why it fails)</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>The safest method to clone any WordPress site</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>How to clone WooCommerce stores correctly</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>How to avoid database and URL replacement issues</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>How to do it in minutes using Pete</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>Let’s begin.</p>
<!-- /divi:paragraph -->

<!-- divi:heading {"level":1} -->
<h1 class="wp-block-heading" id="h-why-cloning-wordpress-is-usually-complicated">Why Cloning WordPress Is Usually Complicated</h1>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>A WordPress site isn’t just “files.”</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>It includes:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Core WordPress files</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Themes</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Plugins</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Media uploads</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>MySQL database</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Serialized data</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Domain references</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Configuration files</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Server-level settings (PHP, Apache, SSL)</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>If even one piece is mishandled, the clone breaks.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>Common issues include:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>“Error establishing database connection”</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Redirect loops</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Broken images</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Mixed content warnings</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>WooCommerce session failures</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Plugin license invalidation</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>The biggest problem?</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p><strong>Database URL replacement and serialized data corruption.</strong></p>
<!-- /divi:paragraph -->

<!-- divi:heading {"level":1} -->
<h1 class="wp-block-heading">The Traditional Way to Clone WordPress (Manual Method)</h1>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Here’s how most developers do it.</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-step-1-copy-all-files">Step 1: Copy All Files</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Using FTP or SSH:</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>/public_html/</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>Copy everything to the new location.</p>
<!-- /divi:paragraph -->

<!-- divi:heading {"fontSize":"medium"} -->
<h2 class="wp-block-heading has-medium-font-size" id="h-step-2-export-database">Step 2: Export Database</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Using phpMyAdmin:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Export full database as SQL file</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:heading -->
<h2 class="wp-block-heading">Step 3: Create New Database</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Create a new MySQL database</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>Import SQL file</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading">Step 4: Edit wp-config.php</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>define(&#8216;DB_NAME&#8217;, &#8216;new_db&#8217;);<br>define(&#8216;DB_USER&#8217;, &#8216;new_user&#8217;);<br>define(&#8216;DB_PASSWORD&#8217;, &#8216;new_password&#8217;);</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading">Step 5: Replace URLs in Database</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Search &amp; replace:</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>https://oldsite.com → https://newsite.com<br><br>This is where most clones break.<br>Why?<br><br>Because WordPress stores serialized data like this:<br>a:1:{s:4:&#8221;home&#8221;;s:19:&#8221;https://oldsite.com&#8221;;}<br><br>If you change the string length incorrectly, the serialized structure breaks.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p></p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-step-6-fix-file-permissions">Step 6: Fix File Permissions</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Often required after migration.</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-step-7-clear-cache-test-everything">Step 7: Clear Cache + Test Everything</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>And hope nothing breaks.</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-why-plugins-don-t-always-solve-it">Why Plugins Don’t Always Solve It</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Many people use cloning plugins.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p>But plugins often:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Time out on large sites</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Fail on WooCommerce</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Break large databases</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Don’t handle server-level settings</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Don’t include performance configuration</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Don’t integrate Laravel apps</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>For agencies managing 10+ sites, this becomes unsustainable.</p>
<!-- /divi:paragraph -->

<!-- divi:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /divi:separator -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-the-modern-way-clone-wordpress-in-minutes-instead-of-manually-copying-files-and-fixing-databases-use-a-system-built-for-cloning">The Modern Way: Clone WordPress in Minutes<br><br>Instead of manually copying files and fixing databases, use a system built for cloning.</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>With Pete, cloning WordPress becomes:</p>
<!-- /divi:paragraph -->

<!-- divi:list {"ordered":true} -->
<ol class="wp-block-list"><!-- divi:list-item -->
<li>Export</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Import</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Done</li>
<!-- /divi:list-item --></ol>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>No broken URLs. No serialized errors. No downtime.</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-step-by-step-how-to-clone-a-wordpress-site-in-minutes">Step-by-Step: How to Clone a WordPress Site in Minutes</h2>
<!-- /divi:heading -->

<!-- divi:heading {"level":3} -->
<h3 class="wp-block-heading" id="h-step-1-export-the-wordpress-site-install-the-pete-converter-plugin-on-the-source-site">Step 1: Export the WordPress Site<br>Install the Pete Converter Plugin on the source site.</h3>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Click:</p>
<!-- /divi:paragraph -->

<!-- divi:heading {"level":3} -->
<h3 class="wp-block-heading" id="h-create-a-backup"><strong>Create a Backup</strong></h3>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>Pete creates a full portable package including:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Files</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Database</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>URL mapping</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Configuration</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Compatibility adjustments</li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>Download the backup file.</p>
<!-- /divi:paragraph -->

<!-- divi:heading -->
<h2 class="wp-block-heading" id="h-step-2-open-pete-panel">Step 2: Open Pete Panel</h2>
<!-- /divi:heading -->

<!-- divi:paragraph -->
<p>On your server or local environment:</p>
<!-- /divi:paragraph -->

<!-- divi:list -->
<ul class="wp-block-list"><!-- divi:list-item -->
<li>Open Pete Panel</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Click &#8220;Plugins&#8221;</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Install the WordPress Importer plugin</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Set the Destination URL</li>
<!-- /divi:list-item -->

<!-- divi:list-item -->
<li>Choose the Backup file<br></li>
<!-- /divi:list-item --></ul>
<!-- /divi:list -->

<!-- divi:paragraph -->
<p>Upload the exported file.</p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p><br></p>
<!-- /divi:paragraph -->

<!-- divi:paragraph -->
<p><br></p>
<!-- /divi:paragraph -->
<p>The post <a href="https://staging.deploypete.com/learn-how-to-clone-a-wordpress-site-in-minutes-without-breaking-urls-corrupting-the-database-or-using-unreliable-plugins-step-by-step-guide-for-developers-and-agencies/">How to Clone a WordPress Site in Minutes (2026 Step-by-Step Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/learn-how-to-clone-a-wordpress-site-in-minutes-without-breaking-urls-corrupting-the-database-or-using-unreliable-plugins-step-by-step-guide-for-developers-and-agencies/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Launch a New WordPress or Laravel Project in Minutes with Pete Panel</title>
		<link>https://staging.deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/</link>
					<comments>https://staging.deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Mon, 01 Dec 2025 18:50:45 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=28725</guid>

					<description><![CDATA[<p>The post <a href="https://staging.deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/">How to Launch a New WordPress or Laravel Project in Minutes with Pete Panel</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://staging.deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/">How to Launch a New WordPress or Laravel Project in Minutes with Pete Panel</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install WordPress Pete on Oracle Cloud (8 GB VM Guide)</title>
		<link>https://staging.deploypete.com/install-wordpress-pete-oracle-cloud/</link>
					<comments>https://staging.deploypete.com/install-wordpress-pete-oracle-cloud/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Thu, 25 Sep 2025 12:55:06 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=28176</guid>

					<description><![CDATA[<p>The post <a href="https://staging.deploypete.com/install-wordpress-pete-oracle-cloud/">How to Install WordPress Pete on Oracle Cloud (8 GB VM Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://staging.deploypete.com/install-wordpress-pete-oracle-cloud/">How to Install WordPress Pete on Oracle Cloud (8 GB VM Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/install-wordpress-pete-oracle-cloud/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install WordPress Pete on Google Cloud (8 GB VM Guide)</title>
		<link>https://staging.deploypete.com/install-wordpress-pete-google-cloud/</link>
					<comments>https://staging.deploypete.com/install-wordpress-pete-google-cloud/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Thu, 25 Sep 2025 12:45:30 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=28168</guid>

					<description><![CDATA[<p>The post <a href="https://staging.deploypete.com/install-wordpress-pete-google-cloud/">How to Install WordPress Pete on Google Cloud (8 GB VM Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://staging.deploypete.com/install-wordpress-pete-google-cloud/">How to Install WordPress Pete on Google Cloud (8 GB VM Guide)</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/install-wordpress-pete-google-cloud/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Deploy a WordPress Laravel Integration using Pete&#8217;s superpowers</title>
		<link>https://staging.deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/</link>
					<comments>https://staging.deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Thu, 15 Dec 2022 20:15:40 +0000</pubDate>
				<category><![CDATA[WordPress Laravel Integration]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=26946</guid>

					<description><![CDATA[<p>Let&#8217;s start this tutorial after having done this: Handling woocommerce orders from Laravel using Pete’s superpowers Then migrate our saveaplaya site to a WordPress Pete in production. To know how to do this, read this tutorial: Migrate your WordPress site to the cloud using WordPress Pete Lets create a fresh git repository to our Laravel [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/">Deploy a WordPress Laravel Integration using Pete&#8217;s superpowers</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s start this tutorial after having done this: <a href="/2022/12/14/handling-woocommerce-orders-from-laravel-using-petes-superpowers/">Handling woocommerce orders from Laravel using Pete’s superpowers</a></p>
<p>Then migrate our saveaplaya site to a WordPress Pete in production. To know how to do this, read this tutorial: <a href="/2022/12/06/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/">Migrate your WordPress site to the cloud using WordPress Pete</a></p>
<p>Lets create a fresh git repository to our Laravel app woodashboard following the steps in the images below</p>
<p>Then let&#8217;s install the WordPress+Laravel Pete plugin</p>
<p>Copy and paste the GIT repository URL starting with https://</p>
<p>Fill all the fields according </p>
<p>Now browse to the WordPress Laravel integration</p>
<p>To update the Laravel app from development you just have to push to the repository and then pull from the terminal in the cloud installation</p>
<p>The post <a href="https://staging.deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/">Deploy a WordPress Laravel Integration using Pete&#8217;s superpowers</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Handling woocommerce orders from Laravel using Pete&#8217;s superpowers</title>
		<link>https://staging.deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/</link>
					<comments>https://staging.deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Wed, 14 Dec 2022 11:48:36 +0000</pubDate>
				<category><![CDATA[WordPress Laravel Integration]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=26882</guid>

					<description><![CDATA[<p>1. Let&#8217;s start by creating a new WordPress and Laravel integration from WordPress Pete. 2. For this tutorial, we will use Laravel 8, and the name of our Laravel app will be woodashboard. You must have previously imported a WordPress site. 3. We can verify everything is OK by clicking on the link to see [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/">Handling woocommerce orders from Laravel using Pete&#8217;s superpowers</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>1. Let&#8217;s start by creating a new WordPress and Laravel integration from WordPress Pete.</p>
<p>2. For this tutorial, we will use Laravel 8, and the name of our Laravel app will be woodashboard. You must have previously <a href="https://staging.deploypete.com/2018/11/03/migrate-a-wordpress-site-to-wordpresspete/">imported a WordPress site</a>.</p>
<p>3. We can verify everything is OK by clicking on the link to see the examples. </p>
<p>4. After this, it is a good idea to familiarize yourself with the structure of how your files look. Open the WordPress Pete installation folder with your favorite text editor. Since I am old school, I use TextMate.</p>
<ul>
<li>The WordPress Pete installation folder name is saveaplaya</li>
<li>The name of the WordPress site folder is saveaplayapetelocalnet</li>
<li>The name of the Laravel app integrated into WordPress is woodashboard</li>
<li>Inside woodasboard you can find all the files of the Laravel app.</li>
</ul>
<p>The integration Pete does of WordPress and Laravel is clean. That means all WordPress and Laravel files are complete, and you can update each app to its latest versions without breaking the integration. Cool right?</p>
<p>5. To create a controller in Laravel from the terminal, you must enter the apache container in docker. For this, go to the installation guide of your operating system and copy the command to enter the apache container in docker.</p>
<p>6. Now, browse the Laravel app folder and run the command to create a controller.</p>
<p>After this, we copy and paste this code into our WooDashboard controller.</p>
<p>7. Now we create the Laravel view </p>
<p>8. Now we declare the route for this action</p>
<p>9. Now we can see the list of woocommerce orders from Laravel</p>
<p>The post <a href="https://staging.deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/">Handling woocommerce orders from Laravel using Pete&#8217;s superpowers</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hardening your WordPress site with WordPress Pete and Mod Security</title>
		<link>https://staging.deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/</link>
					<comments>https://staging.deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Thu, 08 Dec 2022 17:53:43 +0000</pubDate>
				<category><![CDATA[WordPress Hardening]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=26863</guid>

					<description><![CDATA[<p>WordPress Pete with coreruleset v3.3 out of the box and other good practices. You won&#8217;t have to worry about most hack attacks. You can also disable or enable the mod_security firewall at your convenience if you are developing any feature of your site to avoid false positives. After this we recommend you activate it again [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/">Hardening your WordPress site with WordPress Pete and Mod Security</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress Pete with coreruleset v3.3 out of the box and other good practices. You won&#8217;t have to worry about most hack attacks.</p>
<p>You can also disable or enable the mod_security firewall at your convenience if you are developing any feature of your site to avoid false positives. After this we recommend you activate it again</p>
<p>Pete also gives you the option to disable it completely or disable it per sites</p>
<p>You can also see in a table and easy to manage which rules were activated and the attacks that Pete&#8217;s mod_security constantly protects your site</p>
<p>In this example you can see how we disabled the mod_security firewall and you showed the result of that address that otherwise would have triggered a protection rule</p>
<p>The post <a href="https://staging.deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/">Hardening your WordPress site with WordPress Pete and Mod Security</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install a SSL certificate to a WordPress site using WordPress Pete</title>
		<link>https://staging.deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/</link>
					<comments>https://staging.deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Wed, 07 Dec 2022 22:09:14 +0000</pubDate>
				<category><![CDATA[WordPress Hardening]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=26822</guid>

					<description><![CDATA[<p>For this example we will use the domain staging.deploypete.com which is pointing to a WordPress Pete installation. To see how to do this check out this tutorial: Point a domain to a WordPress Pete in production environment 1. For this example we purchased an SSL certificate from my favorite site for SSL certificates: ssls.com 2. We choose the [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/">Install a SSL certificate to a WordPress site using WordPress Pete</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span>For this example we will use the domain </span><strong><em>staging.deploypete.com</em></strong><span> which is pointing to a WordPress Pete installation. To see how to do this check out this tutorial: </span><a href="https://staging.deploypete.com/point-a-domain-to-a-wordpress-pete-in-production-environment/">Point a domain to a WordPress Pete in production environment</a></p>
<p>1. For this example we purchased an SSL certificate from my favorite site for SSL certificates: <a href="ssls.com">ssls.com</a></p>
<p>2. We choose the upload file validation option</p>
<p>3. Let&#8217;s download the validation text file</p>
<p>4. The validation path must be the same one that we will use to upload the validation file from Pete</p>
<p>5. Once we have uploaded the validation file, click confirm file upload from the ssl.com dashboard</p>
<p>6. We wait a few minutes for the SSL certificate to be issued and after that we download it</p>
<p>7. Now in the SSL upload form from Pete we carefully select the 3 SSL files: .crt, .key, bundle</p>
<p>8. After this we go to the SSL activation form and select SSL: on and then click on UPDATE SSL STATUS</p>
<p>9. And it&#8217;s ready</p>
<p>10. The SSL files are stored in /var/www/html/ssl/project_name . To update an SSL certificate repeat these steps first disabling the SSL STATUS</p>
<p>The post <a href="https://staging.deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/">Install a SSL certificate to a WordPress site using WordPress Pete</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Migrate your WordPress site to the cloud using WordPress Pete</title>
		<link>https://staging.deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/</link>
					<comments>https://staging.deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/#respond</comments>
		
		<dc:creator><![CDATA[Pedro]]></dc:creator>
		<pubDate>Tue, 06 Dec 2022 21:07:08 +0000</pubDate>
				<category><![CDATA[Production Environment]]></category>
		<guid isPermaLink="false">https://staging.deploypete.com/?p=26801</guid>

					<description><![CDATA[<p>For this example we will use the domain peteteting.com which is pointing to a WordPress Pete installation. To see how to do this check out this tutorial: Point a domain to a WordPress Pete in production environment 1. Using the input file 1. Check that the domain you are going to use is pointing to [&#8230;]</p>
<p>The post <a href="https://staging.deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/">Migrate your WordPress site to the cloud using WordPress Pete</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>For this example we will use the domain <strong><em>peteteting.com</em></strong> which is pointing to a WordPress Pete installation. To see how to do this check out this tutorial: <a href="/point-a-domain-to-a-wordpress-pete-in-production-environment/">Point a domain to a WordPress Pete in production environment</a></p>
<h2>1. Using the input file</h2>
<p>1. Check that the domain you are going to use is pointing to the IP of the WordPress Pete installation in production. The way to do this, and check that everything is ok, is to navigate to the domain and see Pete&#8217;s face.</p>
<p>2. Lets browse to the IP where the WordPress Pete is installed and click to the Import option on the left menu</p>
<p>2. Select the WordPress Pete file previously obtained through being exported from WordPress Pete or <a href="/plugins">Pete Converter plugin</a></p>
<p>3. Wait until the process is complete then browse to the domain you chose for your site. If you have the Divi theme it is possible that some styles appear broken, for this we share a small hack to fix this trick. Go to the Divi theme options and save the changes without doing anything and this will fix it</p>
<p>4. Refresh your site again and done!</p>
<h2>2. Using FileZilla (Recommended for big files)</h2>
<p>1. For this example, the Pete WordPress installation is hosted on the GCP, we must activate SSH access, which is disabled by default. We click on the SSH console to open in the browser</p>
<p>2. Once it is open we run the following commands to enable SSH access for the root user. Once it is open we run the following commands to enable SSH access for the root user. (<em>It is good security practice to enable this on a port other than 22. But we are not going to do this here because this is not a hardening tutorial</em>)</p>
<p><code><br />
sudo find /etc/ssh/sshd_config -type f -exec sed -i 's/#Port 22/Port 22/g' {} \;<br />
sudo find /etc/ssh/sshd_config -type f -exec sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' {} \;<br />
sudo find /etc/ssh/sshd_config -type f -exec sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' {} \;</p>
<p>echo -e "mypassword\nmypassword" | sudo passwd</p>
<p>sudo systemctl restart sshd<br />
</code></p>
<p>3. Now we open FileZilla and create an SFTP connection for the root user and us the password: mypassword  (<em>This is an example password, we recommend you change it in the previous command)</em></p>
<p>4. Once we log in we click on Sites which is a symlink to the /var/www/html folder</p>
<p>5. Now drag the file of Pete that you are going to import</p>
<p>6. Now go to WordPress Pete and check file path for large files and enter the path where you previously uploaded the file</p>
<p>The post <a href="https://staging.deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/">Migrate your WordPress site to the cloud using WordPress Pete</a> appeared first on <a href="https://staging.deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
