<?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>Pete Panel</title>
	<atom:link href="https://deploypete.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://deploypete.com/</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://deploypete.com/wp-content/uploads/2020/09/cropped-PeteIconPro-32x32.png</url>
	<title>Pete Panel</title>
	<link>https://deploypete.com/</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://deploypete.com/clone-wordpress-site/</link>
					<comments>https://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://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://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Cloning a WordPress site should be simple.</p>



<p>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>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>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>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>If even one piece is mishandled, the clone breaks.</p>



<p>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>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>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>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>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>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>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>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>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>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>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>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>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>Instead of manually copying files and fixing databases, use a system built for cloning.</p>



<p>With Pete, cloning becomes:</p>



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



<li>Import</li>



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



<p>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>Install the Pete Converter Plugin on the source site, then click <strong>Export Site</strong>.</p>



<p>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>Download the export file.</p>



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



<p>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>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>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>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>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>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>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>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>Move multiple WordPress sites in hours instead of weeks.</p>



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



<p>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>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><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>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>The old way involves FTP, SQL exports, URL replacement, and lots of debugging.</p>



<p>The modern way is simple:</p>



<p><strong>Export → Import → Deploy</strong></p>



<p>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://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://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://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://deploypete.com/?p=28773</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></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"><!-- 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 --></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/how-to-launch-a-new-wordpress-or-laravel-project-in-minutes-with-pete-panel/</link>
					<comments>https://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://deploypete.com/?p=28725</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/install-wordpress-pete-oracle-cloud/</link>
					<comments>https://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://deploypete.com/?p=28176</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/install-wordpress-pete-google-cloud/</link>
					<comments>https://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://deploypete.com/?p=28168</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/deploy-a-wordpress-laravel-integration-using-petes-superpowers/</link>
					<comments>https://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://deploypete.com/?p=26946</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="1024" height="689" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud0-1024x689.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud0" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud0-980x659.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud0-480x323.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26953" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_1">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="689" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud1-1024x689.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud1" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud1-980x659.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud1-480x323.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26954" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_2">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="689" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud3-1024x689.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud3" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud3-980x659.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud3-480x323.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26955" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_3">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="689" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud4-1024x689.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud4" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud4-980x659.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud4-480x323.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26956" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Lets create a fresh git repository to our Laravel app woodashboard following the steps in the images below</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_4">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="494" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud6-1024x494.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud6" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud6-980x473.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud6-480x232.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26959" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_5">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2500" height="1936" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5b-2500x1936.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud5b" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5b-2500x1936.jpg 2500w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5b-1280x991.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5b-980x759.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5b-480x372.jpg 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) 2500px, 100vw" class="wp-image-26958" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_6">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2500" height="1944" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud7-2500x1944.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud7" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud7-2500x1944.jpg 2500w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud7-1280x995.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud7-980x762.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud7-480x373.jpg 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) 2500px, 100vw" class="wp-image-26960" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_7">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="425" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud8-1024x425.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud8" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud8-980x406.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud8-480x199.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26961" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_8">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud10-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud10" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud10-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud10-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26963" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Then let&#8217;s install the WordPress+Laravel Pete plugin</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_9">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="689" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5-1024x689.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud5" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5-980x659.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud5-480x323.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26957" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_10">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud12-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud12" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud12-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud12-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26965" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Copy and paste the GIT repository URL starting with https://</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_11">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud11b-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud11b" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud11b-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud11b-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26964" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Fill all the fields according </p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_12">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud13-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud13" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud13-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud13-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26966" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Now browse to the WordPress Laravel integration</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_13">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud14-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud14" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud14-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud14-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26967" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_14">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="800" src="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud15-1024x800.jpg" alt="" title="deploy_a_wordpress_laravel_integration_to_the_cloud15" srcset="https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud15-980x766.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/deploy_a_wordpress_laravel_integration_to_the_cloud15-480x375.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26968" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/handling-woocommerce-orders-from-laravel-using-petes-superpowers/</link>
					<comments>https://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://deploypete.com/?p=26882</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>1. Let&#8217;s start by creating a new WordPress and Laravel integration from WordPress Pete.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_15">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="707" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic1-1024x707.jpg" alt="" title="integrating_wordpress_with_laravel_pic1" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic1-980x676.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic1-480x331.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26891" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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://deploypete.com/2018/11/03/migrate-a-wordpress-site-to-wordpresspete/">imported a WordPress site</a>.</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_16">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="707" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic2-1024x707.jpg" alt="" title="integrating_wordpress_with_laravel_pic2" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic2-980x676.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic2-480x331.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26892" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_17">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="707" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic3-1024x707.jpg" alt="" title="integrating_wordpress_with_laravel_pic3" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic3-980x676.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic3-480x331.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26893" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>3. We can verify everything is OK by clicking on the link to see the examples. </p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_18">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="765" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic4-1024x765.jpg" alt="" title="integrating_wordpress_with_laravel_pic4" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic4-980x732.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic4-480x359.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26894" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_19">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="765" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic5-1024x765.jpg" alt="" title="integrating_wordpress_with_laravel_pic5" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic5-980x732.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic5-480x359.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26895" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_20">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="765" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic6-1024x765.jpg" alt="" title="integrating_wordpress_with_laravel_pic6" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic6-980x732.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic6-480x359.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26896" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_21">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="765" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic7-1024x765.jpg" alt="" title="integrating_wordpress_with_laravel_pic7" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic7-980x732.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic7-480x359.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26897" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_22">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="566" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic9-1024x566.jpg" alt="" title="integrating_wordpress_with_laravel_pic9" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic9-980x542.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic9-480x265.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26899" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>6. Now, browse the Laravel app folder and run the command to create a controller.</p></div>
			</div>[et_pb_dmb_code_snippet code=&#8221;cGhwIGFydGlzYW4gbWFrZTpjb250cm9sbGVyIFdvb0Rhc2hib2FyZA==&#8221; copy_button=&#8221;on&#8221; _builder_version=&#8221;4.19.2&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][/et_pb_dmb_code_snippet]<div class="et_pb_module et_pb_image et_pb_image_23">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="566" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic10-1024x566.jpg" alt="" title="integrating_wordpress_with_laravel_pic10" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic10-980x542.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic10-480x265.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26900" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>After this, we copy and paste this code into our WooDashboard controller.</p></div>
			</div>[et_pb_dmb_code_snippet title=&#8221;woodashboard/app/Http/Controllers/WooDashboard.php&#8221; code=&#8221;PD9waHAKCm5hbWVzcGFjZSBBcHBcSHR0cFxDb250cm9sbGVyczsKCnVzZSBJbGx1bWluYXRlXEh0dHBcUmVxdWVzdDsKLy9hZGQgdGhpcwp1c2UgSWxsdW1pbmF0ZVxTdXBwb3J0XEZhY2FkZXNcQ29uZmlnOwoKY2xhc3MgV29vRGFzaGJvYXJkIGV4dGVuZHMgQ29udHJvbGxlcgp7CiAgICAvL2FkZCB0aGlzCglwdWJsaWMgZnVuY3Rpb24gb3JkZXJzKCl7CgkKCSRkYl9jb25maWcgPSBDb25maWc6OmdldCgnZGF0YWJhc2UuY29ubmVjdGlvbnMuJy5Db25maWc6OmdldCgnZGF0YWJhc2UuZGVmYXVsdCcpKTsKCgkkbXlzcWxpID0gbmV3IFxteXNxbGkoJGRiX2NvbmZpZ1siaG9zdCJdLCAkZGJfY29uZmlnWyJ1c2VybmFtZSJdLCAkZGJfY29uZmlnWyJwYXNzd29yZCJdLCAkZGJfY29uZmlnWyJkYXRhYmFzZSJdKTsKCglpZiAoJG15c3FsaS0+Y29ubmVjdF9lcnJubykgewoJICAgIGVjaG8gIkZhaWxlZCB0byBjb25uZWN0IHRvIE15U1FMOiAoIiAuICRteXNxbGktPmNvbm5lY3RfZXJybm8gLiAiKSAiIC4gJG15c3FsaS0+Y29ubmVjdF9lcnJvcjsKCX0KCQoJJHF1ZXJ5ID0gInNlbGVjdAogICAgcC5JRCBhcyBvcmRlcl9pZCwKICAgIHAucG9zdF9kYXRlLAogICAgbWF4KCBDQVNFIFdIRU4gcG0ubWV0YV9rZXkgPSAnX2JpbGxpbmdfZW1haWwnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgYmlsbGluZ19lbWFpbCwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19iaWxsaW5nX2ZpcnN0X25hbWUnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX2JpbGxpbmdfZmlyc3RfbmFtZSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19iaWxsaW5nX2xhc3RfbmFtZScgYW5kIHAuSUQgPSBwbS5wb3N0X2lkIFRIRU4gcG0ubWV0YV92YWx1ZSBFTkQgKSBhcyBfYmlsbGluZ19sYXN0X25hbWUsCiAgICBtYXgoIENBU0UgV0hFTiBwbS5tZXRhX2tleSA9ICdfYmlsbGluZ19hZGRyZXNzXzEnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX2JpbGxpbmdfYWRkcmVzc18xLAogICAgbWF4KCBDQVNFIFdIRU4gcG0ubWV0YV9rZXkgPSAnX2JpbGxpbmdfYWRkcmVzc18yJyBhbmQgcC5JRCA9IHBtLnBvc3RfaWQgVEhFTiBwbS5tZXRhX3ZhbHVlIEVORCApIGFzIF9iaWxsaW5nX2FkZHJlc3NfMiwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19iaWxsaW5nX2NpdHknIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX2JpbGxpbmdfY2l0eSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19iaWxsaW5nX3N0YXRlJyBhbmQgcC5JRCA9IHBtLnBvc3RfaWQgVEhFTiBwbS5tZXRhX3ZhbHVlIEVORCApIGFzIF9iaWxsaW5nX3N0YXRlLAogICAgbWF4KCBDQVNFIFdIRU4gcG0ubWV0YV9rZXkgPSAnX2JpbGxpbmdfcG9zdGNvZGUnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX2JpbGxpbmdfcG9zdGNvZGUsCiAgICBtYXgoIENBU0UgV0hFTiBwbS5tZXRhX2tleSA9ICdfc2hpcHBpbmdfZmlyc3RfbmFtZScgYW5kIHAuSUQgPSBwbS5wb3N0X2lkIFRIRU4gcG0ubWV0YV92YWx1ZSBFTkQgKSBhcyBfc2hpcHBpbmdfZmlyc3RfbmFtZSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19zaGlwcGluZ19sYXN0X25hbWUnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX3NoaXBwaW5nX2xhc3RfbmFtZSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19zaGlwcGluZ19hZGRyZXNzXzEnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX3NoaXBwaW5nX2FkZHJlc3NfMSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19zaGlwcGluZ19hZGRyZXNzXzInIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgX3NoaXBwaW5nX2FkZHJlc3NfMiwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19zaGlwcGluZ19jaXR5JyBhbmQgcC5JRCA9IHBtLnBvc3RfaWQgVEhFTiBwbS5tZXRhX3ZhbHVlIEVORCApIGFzIF9zaGlwcGluZ19jaXR5LAogICAgbWF4KCBDQVNFIFdIRU4gcG0ubWV0YV9rZXkgPSAnX3NoaXBwaW5nX3N0YXRlJyBhbmQgcC5JRCA9IHBtLnBvc3RfaWQgVEhFTiBwbS5tZXRhX3ZhbHVlIEVORCApIGFzIF9zaGlwcGluZ19zdGF0ZSwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19zaGlwcGluZ19wb3N0Y29kZScgYW5kIHAuSUQgPSBwbS5wb3N0X2lkIFRIRU4gcG0ubWV0YV92YWx1ZSBFTkQgKSBhcyBfc2hpcHBpbmdfcG9zdGNvZGUsCiAgICBtYXgoIENBU0UgV0hFTiBwbS5tZXRhX2tleSA9ICdfb3JkZXJfdG90YWwnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgb3JkZXJfdG90YWwsCiAgICBtYXgoIENBU0UgV0hFTiBwbS5tZXRhX2tleSA9ICdfb3JkZXJfdGF4JyBhbmQgcC5JRCA9IHBtLnBvc3RfaWQgVEhFTiBwbS5tZXRhX3ZhbHVlIEVORCApIGFzIG9yZGVyX3RheCwKICAgIG1heCggQ0FTRSBXSEVOIHBtLm1ldGFfa2V5ID0gJ19wYWlkX2RhdGUnIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgcGFpZF9kYXRlLAoJbWF4KCBDQVNFIFdIRU4gcG0ubWV0YV9rZXkgPSAnX2N1c3RvbWVyX3VzZXInIGFuZCBwLklEID0gcG0ucG9zdF9pZCBUSEVOIHBtLm1ldGFfdmFsdWUgRU5EICkgYXMgY3VzdG9tZXJfdXNlciwKCQogICAgKCBzZWxlY3QgZ3JvdXBfY29uY2F0KCBvcmRlcl9pdGVtX25hbWUgc2VwYXJhdG9yICd8JyApIGZyb20gd3Bfd29vY29tbWVyY2Vfb3JkZXJfaXRlbXMgd2hlcmUgb3JkZXJfaWQgPSBwLklEICkgYXMgb3JkZXJfaXRlbXMKCWZyb20KICAgIAl3cF9wb3N0cyBwIAogICAgCWpvaW4gd3BfcG9zdG1ldGEgcG0gb24gcC5JRCA9IHBtLnBvc3RfaWQgCiAgIAkgCWpvaW4gd3Bfd29vY29tbWVyY2Vfb3JkZXJfaXRlbXMgb2kgb24gcC5JRCA9IG9pLm9yZGVyX2lkCgl3aGVyZQogICAgCXAucG9zdF90eXBlID0gJ3Nob3Bfb3JkZXInIGFuZAogICAgCXAucG9zdF9kYXRlIEJFVFdFRU4gJzIwMjItMTAtMDEnIEFORCAnMjAyMi0xMi0zMScgYW5kCiAgIAkgCXAucG9zdF9zdGF0dXMgPSAnd2MtY29tcGxldGVkJwoJZ3JvdXAgYnkKICAgIHAuSUQiOwoJCgkkcmVzdWx0ID0gJG15c3FsaS0+cXVlcnkoJHF1ZXJ5KTsKCglyZXR1cm4gdmlldygnV29vRGFzaGJvYXJkLm9yZGVycycsY29tcGFjdCgncmVzdWx0JykpOwoJCgl9Cn0K&#8221; _builder_version=&#8221;4.19.2&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; header_font_size=&#8221;13px&#8221; sticky_enabled=&#8221;0&#8243; header_font=&#8221;||on||||||&#8221;][/et_pb_dmb_code_snippet]<div class="et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>7. Now we create the Laravel view </p></div>
			</div>[et_pb_dmb_code_snippet title=&#8221;woodashboard/resources/views/WooDashboard/orders.blade.php&#8221; code=&#8221;PGh0bWw+CgoJPGhlYWQ+CgkJCgkJPCEtLSBDU1MgLS0+CgkJPGxpbmsgcmVsPSJzdHlsZXNoZWV0IiBocmVmPSJodHRwczovL2Nkbi5qc2RlbGl2ci5uZXQvbnBtL2Jvb3RzdHJhcEA0LjUuMy9kaXN0L2Nzcy9ib290c3RyYXAubWluLmNzcyIgaW50ZWdyaXR5PSJzaGEzODQtVFg4dDI3RWNSRTNlL2loVTd6bVF4Vm5jREF5NXVJS3o0ckVrZ0lYZU1lZDRNMGpsZklEUHZnNnVxS0kyeFhyMiIgY3Jvc3NvcmlnaW49ImFub255bW91cyI+CgoJCTwhLS0galF1ZXJ5IGFuZCBKUyBidW5kbGUgdy8gUG9wcGVyLmpzIC0tPgoJCTxzY3JpcHQgc3JjPSJodHRwczovL2NvZGUuanF1ZXJ5LmNvbS9qcXVlcnktMy41LjEuc2xpbS5taW4uanMiIGludGVncml0eT0ic2hhMzg0LURmWGR6Mmh0UEgwbHNTU3M1bkNUcHVqL3p5NEMrT0dwYW1vRlZ5MzhNVkJuRStJYmJWWVVldytPckNYYVJrZmoiIGNyb3Nzb3JpZ2luPSJhbm9ueW1vdXMiPjwvc2NyaXB0PgoJCTxzY3JpcHQgc3JjPSJodHRwczovL2Nkbi5qc2RlbGl2ci5uZXQvbnBtL2Jvb3RzdHJhcEA0LjUuMy9kaXN0L2pzL2Jvb3RzdHJhcC5idW5kbGUubWluLmpzIiBpbnRlZ3JpdHk9InNoYTM4NC1obytqN2p5V0s4Zk5RZStBMTJIYjhBaFJxMjZMclovSnBjVUdHT24rWTdSc3dlTnJ0Ti90RTNNb0s3WmVaRHl4IiBjcm9zc29yaWdpbj0iYW5vbnltb3VzIj48L3NjcmlwdD4KCQkKCTwvaGVhZD4KCiAgICA8Ym9keT4KCgkJPGRpdiBjbGFzcz0iY29udGFpbmVyIj4KCQkJCgkJCTxiciAvPgkJCgkJCSA8aDM+QWxsIGNvbXBsZXRlZCBvcmRlcnM8L2gzPiAgCgkJCSAKCQkJIAoJCQkKCQkJCQoJICAJCSAgPHRhYmxlIGNsYXNzPSJ0YWJsZSB0YWJsZS1ob3ZlciI+CgkJCQkgIAoJICAJCSAgICA8dGhlYWQ+CgkgIAkJICAgICAgPHRyPgoJCQkJCTx0aD5vcmRlcl9pZDwvdGg+CgkgIAkJICAgICAgICA8dGg+YmlsbGluZ19maXJzdF9uYW1lPC90aD4KCSAgCQkgICAgICAgIDx0aD5iaWxsaW5nX2VtYWlsPC90aD4KCSAgCQkgICAgICAgIDx0aD5vcmRlcl90b3RhbDwvdGg+CgkgIAkJICAgICAgPC90cj4KCSAgCQkgICAgPC90aGVhZD4KCSAgCQkgICAgCgkJCQk8dGJvZHk+CgkJCQkJCgkJCQkJQHdoaWxlKCRyb3cgPSAkcmVzdWx0LT5mZXRjaF9hc3NvYygpKSAKCQkJCQkKICAJICAJCSAgICAgIDx0cj4KICAJICAJCSAgICAgICAgPHRkPnt7JHJvd1sib3JkZXJfaWQiXX19PC90ZD4KCQkJCQk8dGQ+e3skcm93WyJfYmlsbGluZ19maXJzdF9uYW1lIl19fTwvdGQ+CiAgCSAgCQkgICAgICAgIDx0ZD57eyRyb3dbImJpbGxpbmdfZW1haWwiXX19PC90ZD4KICAJICAJCSAgICAgICAgPHRkPnt7JHJvd1sib3JkZXJfdG90YWwiXX19PC90ZD4KICAJICAJCSAgICAgIDwvdHI+CgkJCQkgIAoJCQkJICAJQGVuZHdoaWxlCgkJCQkKCQkJCSA8L3Rib2R5PiAKICAJCgkJCTwvdGFibGU+CgkJCgkJPC9kaXY+CgkJCiAgICA8L2JvZHk+CjwvaHRtbD4=&#8221; _builder_version=&#8221;4.19.2&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; header_font_size=&#8221;13px&#8221; header_font=&#8221;||on||||||&#8221; sticky_enabled=&#8221;0&#8243;][/et_pb_dmb_code_snippet]<div class="et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>8. Now we declare the route for this action</p></div>
			</div>[et_pb_dmb_code_snippet title=&#8221;woodashboard/routes/web.php&#8221; code=&#8221;PD9waHAKCnVzZSBJbGx1bWluYXRlXFN1cHBvcnRcRmFjYWRlc1xSb3V0ZTsKCnVzZSBBcHBcSHR0cFxDb250cm9sbGVyc1xIZWxsb0NvbnRyb2xsZXI7ICAKLy9hZGQgdGhpcwp1c2UgQXBwXEh0dHBcQ29udHJvbGxlcnNcV29vRGFzaGJvYXJkOwovKgp8LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KfCBXZWIgUm91dGVzCnwtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQp8CnwgSGVyZSBpcyB3aGVyZSB5b3UgY2FuIHJlZ2lzdGVyIHdlYiByb3V0ZXMgZm9yIHlvdXIgYXBwbGljYXRpb24uIFRoZXNlCnwgcm91dGVzIGFyZSBsb2FkZWQgYnkgdGhlIFJvdXRlU2VydmljZVByb3ZpZGVyIHdpdGhpbiBhIGdyb3VwIHdoaWNoCnwgY29udGFpbnMgdGhlICJ3ZWIiIG1pZGRsZXdhcmUgZ3JvdXAuIE5vdyBjcmVhdGUgc29tZXRoaW5nIGdyZWF0IQp8CiovCgpSb3V0ZTo6Z2V0KCcvJywgZnVuY3Rpb24gKCkgewogICAgcmV0dXJuIHZpZXcoJ3dlbGNvbWUnKTsKfSk7CgpSb3V0ZTo6Z2V0KCdsaXN0X3VzZXJzJywgW0hlbGxvQ29udHJvbGxlcjo6Y2xhc3MsJ2xpc3RfdXNlcnMnXSk7ClJvdXRlOjpnZXQoJ2xpc3Rfb3JkZXJzJywgW0hlbGxvQ29udHJvbGxlcjo6Y2xhc3MsJ2xpc3Rfb3JkZXJzJ10pOwpSb3V0ZTo6Z2V0KCdsaXN0X3Bvc3RzJywgW0hlbGxvQ29udHJvbGxlcjo6Y2xhc3MsJ2xpc3RfcG9zdHMnXSk7ClJvdXRlOjpnZXQoJ2xpc3RfcHJvZHVjdHMnLCBbSGVsbG9Db250cm9sbGVyOjpjbGFzcywnbGlzdF9wcm9kdWN0cyddKTsKUm91dGU6OmdldCgnZWRpdF9wb3N0cycsIFtIZWxsb0NvbnRyb2xsZXI6OmNsYXNzLCAnZWRpdF9wb3N0cyddKTsKUm91dGU6OmdldCgnZWRpdF9wb3N0JywgW0hlbGxvQ29udHJvbGxlcjo6Y2xhc3MsICdlZGl0X3Bvc3QnXSk7ClJvdXRlOjpwb3N0KCd1cGRhdGVfcG9zdCcsIFtIZWxsb0NvbnRyb2xsZXI6OmNsYXNzLCAndXBkYXRlX3Bvc3QnXSk7ClJvdXRlOjpnZXQoJy93b3JkcHJlc3NfcGx1c19sYXJhdmVsX2V4YW1wbGVzJywgW0hlbGxvQ29udHJvbGxlcjo6Y2xhc3MsICd3b3JkcHJlc3NfcGx1c19sYXJhdmVsX2V4YW1wbGVzJ10pOwoKLy9hZGQgdGhpcwpSb3V0ZTo6Z2V0KCdvcmRlcnMnLCBbV29vRGFzaGJvYXJkOjpjbGFzcywgJ29yZGVycyddKTsK&#8221; _builder_version=&#8221;4.19.2&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; global_colors_info=&#8221;{}&#8221; header_font_size=&#8221;13px&#8221; header_font=&#8221;||on||||||&#8221; sticky_enabled=&#8221;0&#8243;][/et_pb_dmb_code_snippet]<div class="et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>9. Now we can see the list of woocommerce orders from Laravel</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_24">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="769" src="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic11-1024x769.jpg" alt="" title="integrating_wordpress_with_laravel_pic11" srcset="https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic11-980x736.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/integrating_wordpress_with_laravel_pic11-480x360.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26938" /></span>
			</div><div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/hardening-your-wordpress-site-with-wordpress-pete-and-mod-security/</link>
					<comments>https://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://deploypete.com/?p=26863</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_25">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-1024x875.jpg" alt="" title="hardening_wordpress_with_mod_security4" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26869" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Pete also gives you the option to disable it completely or disable it per sites</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_26">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security1-1024x875.jpg" alt="" title="hardening_wordpress_with_mod_security1" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security1-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security1-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26866" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_27">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security2-2400x2050.jpg" alt="" title="hardening_wordpress_with_mod_security2" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security2-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security2-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security2-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security2-480x410.jpg 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) 2400px, 100vw" class="wp-image-26867" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_28">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security6-2400x2050.jpg" alt="" title="hardening_wordpress_with_mod_security6" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security6-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security6-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security6-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security6-480x410.jpg 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) 2400px, 100vw" class="wp-image-26871" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_29">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security3-2400x2050.jpg" alt="" title="hardening_wordpress_with_mod_security3" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security3-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security3-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security3-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security3-480x410.jpg 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) 2400px, 100vw" class="wp-image-26868" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_30">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-2400x2050.jpg" alt="" title="hardening_wordpress_with_mod_security4" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security4-480x410.jpg 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) 2400px, 100vw" class="wp-image-26869" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_31">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security5-2400x2050.jpg" alt="" title="hardening_wordpress_with_mod_security5" srcset="https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security5-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security5-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security5-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/hardening_wordpress_with_mod_security5-480x410.jpg 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) 2400px, 100vw" class="wp-image-26870" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/install-a-ssl-certificate-to-a-wordpress-site-using-wordpress-pete/</link>
					<comments>https://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://deploypete.com/?p=26822</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_4">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span>For this example we will use the domain </span><strong><em>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://deploypete.com/point-a-domain-to-a-wordpress-pete-in-production-environment/">Point a domain to a WordPress Pete in production environment</a></p></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_32">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress-1024x875.jpg" alt="" title="install_ssl_certificate_in_wordpress" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26845" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>2. We choose the upload file validation option</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_33">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress2-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress2" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress2-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress2-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress2-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress2-480x410.jpg 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) 2400px, 100vw" class="wp-image-26846" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>3. Let&#8217;s download the validation text file</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_34">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress3-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress3" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress3-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress3-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress3-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress3-480x410.jpg 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) 2400px, 100vw" class="wp-image-26847" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>4. The validation path must be the same one that we will use to upload the validation file from Pete</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_35">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress4-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress4" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress4-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress4-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress4-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress4-480x410.jpg 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) 2400px, 100vw" class="wp-image-26848" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_36">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress5b" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-480x410.jpg 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) 2400px, 100vw" class="wp-image-26849" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_37">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress5b" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress5b-480x410.jpg 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) 2400px, 100vw" class="wp-image-26849" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_38">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress7-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress7" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress7-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress7-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress7-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress7-480x410.jpg 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) 2400px, 100vw" class="wp-image-26852" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>5. Once we have uploaded the validation file, click confirm file upload from the ssl.com dashboard</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_39">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress8-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress8" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress8-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress8-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress8-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress8-480x410.jpg 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) 2400px, 100vw" class="wp-image-26851" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>6. We wait a few minutes for the SSL certificate to be issued and after that we download it</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_40">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress9-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress9" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress9-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress9-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress9-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress9-480x410.jpg 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) 2400px, 100vw" class="wp-image-26853" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_30  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>7. Now in the SSL upload form from Pete we carefully select the 3 SSL files: .crt, .key, bundle</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_41">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress6-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress6" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress6-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress6-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress6-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress6-480x410.jpg 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) 2400px, 100vw" class="wp-image-26850" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_42">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress11-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress11" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress11-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress11-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress11-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress11-480x410.jpg 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) 2400px, 100vw" class="wp-image-26854" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>8. After this we go to the SSL activation form and select SSL: on and then click on UPDATE SSL STATUS</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_43">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress12-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress12" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress12-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress12-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress12-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress12-480x410.jpg 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) 2400px, 100vw" class="wp-image-26856" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_32  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>9. And it&#8217;s ready</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_44">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress13-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress13" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress13-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress13-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress13-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress13-480x410.jpg 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) 2400px, 100vw" class="wp-image-26857" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_33  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_45">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress14-2400x2050.jpg" alt="" title="install_ssl_certificate_in_wordpress14" srcset="https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress14-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress14-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress14-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/install_ssl_certificate_in_wordpress14-480x410.jpg 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) 2400px, 100vw" class="wp-image-26858" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://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://deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/</link>
					<comments>https://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://deploypete.com/?p=26801</guid>

					<description><![CDATA[<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_5">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_34  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_35  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>1. Using the input file</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_46">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="649" src="https://deploypete.com/wp-content/uploads/2022/12/point_wordpress_pete_to_a_domain_in_production15-1024x649.jpg" alt="" title="point_wordpress_pete_to_a_domain_in_production15" srcset="https://deploypete.com/wp-content/uploads/2022/12/point_wordpress_pete_to_a_domain_in_production15-980x621.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/point_wordpress_pete_to_a_domain_in_production15-480x304.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26797" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>2. Lets browse to the IP where the WordPress Pete is installed and click to the Import option on the left menu</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_47">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="1520" src="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud1-2400x1520.jpg" alt="" title="migrate_wordpress_site_to_cloud1" srcset="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud1-2400x1520.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud1-1280x811.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud1-980x621.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud1-480x304.jpg 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) 2400px, 100vw" class="wp-image-26804" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>2. Select the WordPress Pete file previously obtained through being exported from WordPress Pete or <a href="/plugins">Pete Converter plugin</a></p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_48">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="1520" src="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud2-2400x1520.jpg" alt="" title="migrate_wordpress_site_to_cloud2" srcset="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud2-2400x1520.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud2-1280x811.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud2-980x621.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud2-480x304.jpg 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) 2400px, 100vw" class="wp-image-26805" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_49">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete1-2400x2050.jpg" alt="" title="import_site_to_wordpress_pete1" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete1-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete1-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete1-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete1-480x410.jpg 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) 2400px, 100vw" class="wp-image-26842" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_50">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete2-2400x2050.jpg" alt="" title="import_site_to_wordpress_pete2" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete2-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete2-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete2-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_site_to_wordpress_pete2-480x410.jpg 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) 2400px, 100vw" class="wp-image-26843" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>4. Refresh your site again and done!</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_51">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="1520" src="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud3-2400x1520.jpg" alt="" title="migrate_wordpress_site_to_cloud3" srcset="https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud3-2400x1520.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud3-1280x811.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud3-980x621.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/migrate_wordpress_site_to_cloud3-480x304.jpg 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) 2400px, 100vw" class="wp-image-26806" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2>2. Using FileZilla (Recommended for big files)</h2></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_42  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_52">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="678" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud1-1024x678.jpg" alt="" title="import_wordpress_to_google_cloud1" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud1-980x649.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud1-480x318.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26829" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_text et_pb_text_44  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_53">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="678" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud2-1024x678.jpg" alt="" title="import_wordpress_to_google_cloud2" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud2-980x649.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud2-480x318.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26830" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_45  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_54">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="748" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud3-1024x748.jpg" alt="" title="import_wordpress_to_google_cloud3" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud3-980x716.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud3-480x351.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26831" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_55">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud4-1024x875.jpg" alt="" title="import_wordpress_to_google_cloud4" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud4-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud4-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26832" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_46  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>4. Once we log in we click on Sites which is a symlink to the /var/www/html folder</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_56">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud5-2400x2050.jpg" alt="" title="import_wordpress_to_google_cloud5" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud5-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud5-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud5-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud5-480x410.jpg 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) 2400px, 100vw" class="wp-image-26833" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>5. Now drag the file of Pete that you are going to import</p></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_57">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud6-1024x875.jpg" alt="" title="import_wordpress_to_google_cloud6" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud6-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud6-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26834" /></span>
			</div><div class="et_pb_module et_pb_image et_pb_image_58">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="1024" height="875" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud7-1024x875.jpg" alt="" title="import_wordpress_to_google_cloud7" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud7-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud7-480x410.jpg 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw" class="wp-image-26835" /></span>
			</div><div class="et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><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></div>
			</div><div class="et_pb_module et_pb_image et_pb_image_59">
				
				
				
				
				<span class="et_pb_image_wrap "><img loading="lazy" decoding="async" width="2400" height="2050" src="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud8-2400x2050.jpg" alt="" title="import_wordpress_to_google_cloud8" srcset="https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud8-2400x2050.jpg 2400w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud8-1280x1093.jpg 1280w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud8-980x837.jpg 980w, https://deploypete.com/wp-content/uploads/2022/12/import_wordpress_to_google_cloud8-480x410.jpg 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) 2400px, 100vw" class="wp-image-26837" /></span>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
<p>The post <a href="https://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://deploypete.com">Pete Panel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://deploypete.com/migrate-your-wordpress-site-to-the-cloud-using-wordpress-pete/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
