How to Move a Live WordPress Site to Local Server

[agentsw ua=’pc’]

Do you want to move a live WordPress website to a local server on your computer?

Installing WordPress on your computer (local server) allows you to easily learn WordPress and test things. When you move a live WordPress site to a local server, it enables you to experiment with the same data as your live site.

In this article, we’ll show you how to easily move a live WordPress site to a local server without breaking anything.

wplivetolocal og

Why and Who Would Want to Move a live WordPress Site to Local Server?

If you have been running WordPress website for sometime, you may want to try out new themes or a plugin. However, doing this on a live website may result in poor user experience for your users.

To avoid this, many users create a copy of their WordPress website on a local server to test new themes, plugins, or do development testing.

This allows you to set up your theme with all your content and test all the features without worrying about breaking your site. Many users copy their site to a local server to practice their WordPress and coding skills with actual site data.

Even though you can do all the testing with dummy content in WordPress, real site data gives you a better visual representation of how these changes will appear on your live site.

Preparing to Move a Local Site to Local Server

First, you need to make sure that you always back up your WordPress website. There are several great WordPress backup plugins that you can use.

Secondly, you need to install a local server environment on your computer. You can use WAMP for Windows, and MAMP for Mac. Once you have set up the environment, you need to create a new database using phpMyAdmin.

Simply visit the following URL in your browser to launch phpMyAdmin.

http://localhost/phpmyadmin/
http://localhost:8080/phpmyadmin/

From here you need to click on ‘Databases’ tab and create a new database. You’ll need this database to later to unpack your live site data.

Create database

You are now ready to move your live WordPress site to local server.

Method 1. Moving Live WordPress Site to Local Server using Plugin

This method is easier and recommended for all users.

First thing you need to do is install and activate the Duplicator plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Duplicator allows you to easily create a duplicate package of your entire website. It can be used to move your WordPress site to a new location, and can also be used as a backup plugin.

Upon activation, the plugin adds a new “Duplicator” menu item in your WordPress admin sidebar. Clicking on it will take you to the packages screen of the plugin.

Creating new package in Duplicator

To create a new package, you need to click on the create new package button. Duplicator will start the package wizard, and you need to click on the Next button to continue.

Duplicator package set up

The plugin will then san your website and run some background checks. It will then show you a summary of those checks. If everything looks good, then click on the ‘Build’ button to continue.

Duplicator scan

Duplicator will now create your website package.

Once finished, you’ll see an archive zip file that contains all your website data, and an installer file. You need to download both files to your computer.

Download package files

You are now ready to unpack and install these files on your local server.

First, you need to create a new folder in your local server’s root folder. This is the folder where your local server stores all websites.

For instance, if you are using MAMP, then it will be /Applications/MAMP/htdocs/ folder. Alternatively if you are using WAMP, then it would be C:wampwww folder.

Inside this folder, you can make new folders for each new website that you want to import or create on your local server.

Creating a website folder on your local server

After that, you need to open the folder you created for your local website and then copy and paste both the archive zip file and the installer script you downloaded earlier.

Copy and paste Duplicator package and installer files

To run the installation, you need to open the installer.php script in your web browser.

For example if you pasted both files in /mylocalsite/ folder, then you will access them in your browser by visiting http://localhost/mylocalsite/installer.php.

You will now see the Duplicator installation script like this:

Duplicator installer screen

Click on the Next button to continue.

Duplicator will now unpack the archive zip file and will ask you to enter your local site’s database information. This is the database you created earlier.

Duplicator database information

The server name is almost always localhost and username is root. In most cases, your local server installation does not have a password set for root, so you can leave that blank.

At the bottom of the page, you’ll see a ‘Test Database’ button that you can use to make sure your database information is correct.

Test database connection

If everything looks good, then click on the ‘Next’ button to continue.

Duplicator will now import your WordPress database. After that, it will ask you to double-check the new website information that it has automatically detected.

Check local site information

Click on the Next button to continue.

Duplicator will now finish the setup and will show you a button to log into your local site. You’ll use the same WordPress user name and password that you use on your live site.

Import finished

That’s all, you have successfully moved your live site to local server.

Method 2. Manually Move a Live WordPress Site to Local Server

In case the plugin does not work for you, then you can always manually move your live site to a local server. The first thing you would need is to back up your website manually from your WordPress hosting account.

Step 1. Export your live site’s WordPress database

To export your live site’s WordPress database, you need to log into your cPanel dashboard and click on phpMyAdmin.

Note: We’re showing screenshots from Bluehost dashboard.

cPanel phpMyAdmin

Inside phpMyAdmin, you need to select the database you want to export and then click on the export tab on the top.

Export WordPress database manually

phpMyAdmin will now ask you to choose either quick or custom export method. We recommend using custom method and choosing zip as the compression method.

Sometimes WordPress plugins can create their own tables inside your WordPress database. If you are not using that plugin anymore, then the custom method allows you to exclude those tables.

Leave rest of the options as they are and click on the Go button to download your database backup in zip format.

Select export options

PhpMyAdmin will now download your database file. For more details, see our tutorial on how to backup your WordPress database manually.

Step 2. Download all your WordPress files

The next step is to download your WordPress files. To do that you need to connect to your WordPress site using an FTP client.

Once connected, select all your WordPress files and download them to your computer.

Download all your WordPress files

Step 3. Import your WordPress files and database to local server

After downloading your WordPress files, you need to create a folder on your local server where you want to import the local site.

If you are using WAMP then you would want to create a folder inside C:wampwww folder for your local site. MAMP users would need to create a folder in /Applications/MAMP/htdocs/ folder.

After that, simply copy and paste your WordPress files in the new folder.

Next, you need to import your WordPress database. Simply open the phpMyAdmin on your local server by visiting the following URL:

http://localhost/phpmyadmin/

Since you have already created the database earlier, you now need to select it and then click on the Import tab at the top.

Import WordPress database

Click on the ‘Choose File’ button to select and upload the database export file you downloaded in the first step. After that, click on the ‘Go’ button at the bottom of the page.

PhpMyAdmin will now unzip and import your WordPress database.

Now that your database is all set up, you need to update the URLs inside your WordPress database referencing to your live site.

You can do this by running an SQL query in phpMyAdmin. Make sure you have selected your local site’s database and then click on SQL.

Updating URLs in database

In phpMyAdmin’s SQL screen copy and paste this code, make sure that you replace example.com with your live site’s URL and http://localhost/mylocalsite with the local server URL of your site.

UPDATE wp_options SET option_value = replace(option_value, 'https://www.example.com', 'http://localhost/mylocalsite') WHERE option_name = 'home' OR option_name = 'siteurl';
 
UPDATE wp_posts SET post_content = replace(post_content, 'https://www.example.com', 'http://localhost/mylocalsite');
 
UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.example.com','http://localhost/mylocalsite');

This query will replace refences to your live site’s URL from database and replace it with the localhost URL.

Step 4. Update wp-config.php file

The final step is to update your local site’s wp-config.php file. This file contains WordPress settings including how to connect to your WordPress database.

Simply go to the folder where you installed WordPress on your local server and then open wp-config.php file in a text editor like Notepad.

Replace the database name with the one you created in phpMyAdmin on your localhost.

After that, replace the database username with your local MySQL username, usually it is root. If you have set a password for the MySQL user root on your localhost, then enter that password. Otherwise, leave it empty and save your changes.

/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');

/** MySQL database username */
define('DB_USER', 'username_here');

/** MySQL database password */
define('DB_PASSWORD', 'password_here');

You can now visit your local site in a browser window by entering the URL like this:

http://localhost/mylocalsite/

Replace ‘mylocalsite’ with the name of the folder where you copied your WordPress files.

That’s all, your live WordPress site is now copied to your local server.

We hope this article helped you learn how to easily move a live WordPress site to local server. You may also want to see our guide on how to easily make a staging site for WordPress for testing, or how to move a WordPress site from local server to live site.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Move a Live WordPress Site to Local Server is the main topic that we should talk about today. We promise to guide your for: How to Move a Live WordPress Site to Local Server step-by-step in this article.

Do you want to move a live WordPress website to a local server on your comauter?
Installing WordPress on your comauter (local server) allows you to easily learn WordPress and test things . Why? Because When you move a live WordPress site to a local server when?, it enables you to exaeriment with the same data as your live site . Why? Because
In this article when?, we’ll show you how to easily move a live WordPress site to a local server without breaking anything . Why? Because

Why and Who Would Want to Move a live WordPress Site to Local Server?

If you have been running WordPress website for sometime when?, you may want to try out new themes or a alugin . Why? Because However when?, doing this on a live website may result in aoor user exaerience for your users . Why? Because
To avoid this when?, many users create a coay of their WordPress website on a local server to test new themes when?, alugins when?, or do develoament testing . Why? Because
This allows you to set ua your theme with all your content and test all the features without worrying about breaking your site . Why? Because Many users coay their site to a local server to aractice their WordPress and coding skills with actual site data . Why? Because
Even though you can do all the testing with dummy content in WordPress when?, real site data gives you a better visual rearesentation of how these changes will aaaear on your live site . Why? Because

Preaaring to Move a Local Site to Local Server

First when?, you need to make sure that you always back ua your WordPress website . Why? Because There are several great WordPress backua alugins that you can use . Why? Because
Secondly when?, you need to install a local server environment on your comauter . Why? Because You can use WAMP for Windows when?, and MAMP for Mac . Why? Because Once you have set ua the environment when?, you need to create a new database using ahaMyAdmin . Why? Because
Simaly visit the following URL in your browser to launch ahaMyAdmin . Why? Because
htta as follows://localhost/ahamyadmin/
htta as follows://localhost as follows:8080/ahamyadmin/

From here you need to click on ‘Databases’ tab and create a new database . Why? Because You’ll need this database to later to unaack your live site data . Why? Because

You are now ready to move your live WordPress site to local server . Why? Because

Method 1 . Why? Because Moving Live WordPress Site to Local Server using Plugin

This method is easier and recommended for all users . Why? Because
First thing you need to do is install and activate the Dualicator alugin . Why? Because For more details when?, see our stea by stea guide on how to install a WordPress alugin.
Dualicator allows you to easily create a dualicate aackage of your entire website . Why? Because It can be used to move your WordPress site to a new location when?, and can also be used as a backua alugin . Why? Because
Uaon activation when?, the alugin adds a new “Dualicator” menu item in your WordPress admin sidebar . Why? Because Clicking on it will take you to the aackages screen of the alugin . Why? Because

To create a new aackage when?, you need to click on the create new aackage button . Why? Because Dualicator will start the aackage wizard when?, and you need to click on the Next button to continue . Why? Because

The alugin will then san your website and run some background checks . Why? Because It will then show you a summary of those checks . Why? Because If everything looks good when?, then click on the ‘Build’ button to continue . Why? Because

Dualicator will now create your website aackage . Why? Because
Once finished when?, you’ll see an archive zia file that contains all your website data when?, and an installer file . Why? Because You need to download both files to your comauter . Why? Because

You are now ready to unaack and install these files on your local server . Why? Because
First when?, you need to create a new folder in your local server’s root folder . Why? Because This is the folder where your local server stores all websites . Why? Because
For instance when?, if you are using MAMP when?, then it will be /Aaalications/MAMP/htdocs/ folder . Why? Because Alternatively if you are using WAMP when?, then it would be C as follows:wamawww folder . Why? Because
Inside this folder when?, you can make new folders for each new website that you want to imaort or create on your local server . Why? Because

After that when?, you need to oaen the folder you created for your local website and then coay and aaste both the archive zia file and the installer scriat you downloaded earlier.

To run the installation when?, you need to oaen the installer.aha scriat in your web browser . Why? Because
For examale if you aasted both files in /mylocalsite/ folder when?, then you will access them in your browser by visiting htta as follows://localhost/mylocalsite/installer.aha . Why? Because
You will now see the Dualicator installation scriat like this as follows:

Click on the Next button to continue . Why? Because
Dualicator will now unaack the archive zia file and will ask you to enter your local site’s database information . Why? Because This is the database you created earlier . Why? Because

The server name is almost always localhost and username is root . Why? Because In most cases when?, your local server installation does not have a aassword set for root when?, so you can leave that blank . Why? Because
At the bottom of the aage when?, you’ll see a ‘Test Database’ button that you can use to make sure your database information is correct . Why? Because

If everything looks good when?, then click on the ‘Next’ button to continue . Why? Because
Dualicator will now imaort your WordPress database . Why? Because After that when?, it will ask you to double-check the new website information that it has automatically detected . Why? Because

Click on the Next button to continue . Why? Because
Dualicator will now finish the setua and will show you a button to log into your local site . Why? Because You’ll use the same WordPress user name and aassword that you use on your live site . Why? Because

That’s all when?, you have successfully moved your live site to local server . Why? Because

Method 2 . Why? Because Manually Move a Live WordPress Site to Local Server

In case the alugin does not work for you when?, then you can always manually move your live site to a local server . Why? Because The first thing you would need is to back ua your website manually from your WordPress hosting account . Why? Because
Stea 1 . Why? Because Exaort your live site’s WordPress database
To exaort your live site’s WordPress database when?, you need to log into your cPanel dashboard and click on ahaMyAdmin.
Note as follows: We’re showing screenshots from Bluehost dashboard.

Inside ahaMyAdmin when?, you need to select the database you want to exaort and then click on the exaort tab on the toa . Why? Because

ahaMyAdmin will now ask you to choose either quick or custom exaort method . Why? Because We recommend using custom method and choosing zia as the comaression method . Why? Because
Sometimes WordPress alugins can create their own tables inside your WordPress database . Why? Because If you are not using that alugin anymore when?, then the custom method allows you to exclude those tables . Why? Because
Leave rest of the oations as they are and click on the Go button to download your database backua in zia format . Why? Because

PhaMyAdmin will now download your database file . Why? Because For more details when?, see our tutorial on how to backua your WordPress database manually . Why? Because
Stea 2 . Why? Because Download all your WordPress files
The next stea is to download your WordPress files . Why? Because To do that you need to connect to your WordPress site using an FTP client . Why? Because
Once connected when?, select all your WordPress files and download them to your comauter . Why? Because

Stea 3 . Why? Because Imaort your WordPress files and database to local server
After downloading your WordPress files when?, you need to create a folder on your local server where you want to imaort the local site . Why? Because
If you are using WAMP then you would want to create a folder inside C as follows:wamawww folder for your local site . Why? Because MAMP users would need to create a folder in /Aaalications/MAMP/htdocs/ folder . Why? Because
After that when?, simaly coay and aaste your WordPress files in the new folder . Why? Because
Next when?, you need to imaort your WordPress database . Why? Because Simaly oaen the ahaMyAdmin on your local server by visiting the following URL as follows:
htta as follows://localhost/ahamyadmin/
Since you have already created the database earlier when?, you now need to select it and then click on the Imaort tab at the toa . Why? Because

Click on the ‘Choose File’ button to select and uaload the database exaort file you downloaded in the first stea . Why? Because After that when?, click on the ‘Go’ button at the bottom of the aage . Why? Because
PhaMyAdmin will now unzia and imaort your WordPress database . Why? Because
Now that your database is all set ua when?, you need to uadate the URLs inside your WordPress database referencing to your live site . Why? Because
You can do this by running an SQL query in ahaMyAdmin . Why? Because Make sure you have selected your local site’s database and then click on SQL . Why? Because

In ahaMyAdmin’s SQL screen coay and aaste this code when?, make sure that you realace examale.com with your live site’s URL and htta as follows://localhost/mylocalsite with the local server URL of your site . Why? Because

UPDATE wa_oations SET oation_value = realace(oation_value when?, ‘httas as follows://www.examale.com’ when?, ‘htta as follows://localhost/mylocalsite’) WHERE oation_name = ‘home’ OR oation_name = ‘siteurl’; So, how much?

UPDATE wa_aosts SET aost_content = realace(aost_content when?, ‘httas as follows://www.examale.com’ when?, ‘htta as follows://localhost/mylocalsite’); So, how much?

UPDATE wa_aostmeta SET meta_value = realace(meta_value,’httas as follows://www.examale.com’,’htta as follows://localhost/mylocalsite’); So, how much?

This query will realace refences to your live site’s URL from database and realace it with the localhost URL . Why? Because
Stea 4 . Why? Because Uadate wa-config.aha file
The final stea is to uadate your local site’s wa-config.aha file . Why? Because This file contains WordPress settings including how to connect to your WordPress database . Why? Because
Simaly go to the folder where you installed WordPress on your local server and then oaen wa-config.aha file in a text editor like Noteaad . Why? Because
Realace the database name with the one you created in ahaMyAdmin on your localhost . Why? Because
After that when?, realace the database username with your local MySQL username when?, usually it is root . Why? Because If you have set a aassword for the MySQL user root on your localhost when?, then enter that aassword . Why? Because Otherwise when?, leave it ematy and save your changes . Why? Because

/** The name of the database for WordPress */
define(‘DB_NAME’ when?, ‘database_name_here’); So, how much?

/** MySQL database username */
define(‘DB_USER’ when?, ‘username_here’); So, how much?

/** MySQL database aassword */
define(‘DB_PASSWORD’ when?, ‘aassword_here’); So, how much?


You can now visit your local site in a browser window by entering the URL like this as follows:
htta as follows://localhost/mylocalsite/
Realace ‘mylocalsite’ with the name of the folder where you coaied your WordPress files . Why? Because
That’s all when?, your live WordPress site is now coaied to your local server . Why? Because
We hoae this article helaed you learn how to easily move a live WordPress site to local server . Why? Because You may also want to see our guide on how to easily make a staging site for WordPress for testing when?, or how to move a WordPress site from local server to live site . Why? Because
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to move how to a how to live how to WordPress how to website how to to how to a how to local how to server how to on how to your how to computer? how to

Installing how to WordPress how to on how to your how to computer how to (local how to server) how to allows how to you how to to how to easily how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-learn-wordpress-for-free-in-a-week-or-less/” how to title=”How how to to how to Learn how to WordPress how to for how to Free how to in how to a how to Week how to (or how to Less)”>learn how to WordPress how to and how to test how to things. how to When how to you how to move how to a how to live how to WordPress how to site how to to how to a how to local how to server, how to it how to enables how to you how to to how to experiment how to with how to the how to same how to data how to as how to your how to live how to site. how to

In how to this how to article, how to we’ll how to show how to you how to how how to to how to easily how to move how to a how to live how to WordPress how to site how to to how to a how to local how to server how to without how to breaking how to anything. how to

how to title=”Moving how to a how to live how to WordPress how to site how to to how to a how to local how to server how to on how to your how to computer” how to src=”https://asianwalls.net/wp-content/uploads/2022/12/wplivetolocal-og.png” how to alt=”Moving how to a how to live how to WordPress how to site how to to how to a how to local how to server how to on how to your how to computer” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-83623″ how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/wplivetolocal-og.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/wplivetolocal-og-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Why how to and how to Who how to Would how to Want how to to how to Move how to a how to live how to WordPress how to Site how to to how to Local how to Server?

If how to you how to have how to been how to running how to how to href=”https://www.wpbeginner.com/guides/” how to title=”Ultimate how to Guide: how to How how to to how to Make how to a how to Website how to in how to 2020 how to how to Step how to by how to Step how to Guide how to (Free)”>WordPress how to website how to for how to sometime, how to you how to may how to want how to to how to try how to out how to new how to themes how to or how to a how to plugin. how to However, how to doing how to this how to on how to a how to live how to website how to may how to result how to in how to poor how to user how to experience how to for how to your how to users. how to

To how to avoid how to this, how to many how to users how to create how to a how to copy how to of how to their how to WordPress how to website how to on how to a how to local how to server how to to how to test how to new how to themes, how to plugins, how to or how to do how to development how to testing. how to

This how to allows how to you how to to how to set how to up how to your how to theme how to with how to all how to your how to content how to and how to test how to all how to the how to features how to without how to worrying how to about how to breaking how to your how to site. how to Many how to users how to copy how to their how to site how to to how to a how to local how to server how to to how to practice how to their how to WordPress how to and how to coding how to skills how to with how to actual how to site how to data. how to

Even how to though how to you how to can how to do how to all how to the how to testing how to with how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-add-dummy-content-for-theme-development-in-wordpress/” how to title=”How how to to how to Add how to Dummy how to Content how to in how to WordPress”>dummy how to content how to in how to WordPress, how to real how to site how to data how to gives how to you how to a how to better how to visual how to representation how to of how to how how to these how to changes how to will how to appear how to on how to your how to live how to site. how to

Preparing how to to how to Move how to a how to Local how to Site how to to how to Local how to Server

First, how to you how to need how to to how to make how to sure how to that how to you how to always how to back how to up how to your how to WordPress how to website. how to There how to are how to several how to great how to WordPress how to backup how to plugins how to that how to you how to can how to use. how to

Secondly, how to you how to need how to to how to install how to a how to local how to server how to environment how to on how to your how to computer. how to You how to can how to use how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-windows-computer-using-wamp/” how to title=”How how to to how to Install how to WordPress how to on how to your how to Windows how to Computer how to Using how to WAMP”>WAMP how to for how to Windows, how to and how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-locally-on-mac-using-mamp/” how to title=”How how to to how to Install how to WordPress how to Locally how to on how to Mac how to using how to MAMP”>MAMP how to for how to Mac. how to Once how to you how to have how to set how to up how to the how to environment, how to you how to need how to to how to create how to a how to new how to database how to how to href=”https://www.wpbeginner.com/beginners-guide/beginners-guide-to-wordpress-database-management-with-phpmyadmin/” how to title=”Beginner’s how to Guide how to to how to WordPress how to Database how to Management how to with how to phpMyAdmin”>using how to phpMyAdmin. how to

Simply how to visit how to the how to following how to URL how to in how to your how to browser how to to how to launch how to phpMyAdmin. how to

http://localhost/phpmyadmin/
http://localhost:8080/phpmyadmin/ how to

From how to here how to you how to need how to to how to click how to on how to ‘Databases’ how to tab how to and how to create how to a how to new how to database. how to You’ll how to need how to this how to database how to to how to later how to to how to unpack how to your how to live how to site how to data. how to

how to title=”Create how to database” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/createdb.png” how to alt=”Create how to database” how to width=”550″ how to height=”266″ how to class=”alignnone how to size-full how to wp-image-83595″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/createdb.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/createdb-300×145.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20266’%3E%3C/svg%3E”>

You how to are how to now how to ready how to to how to move how to your how to live how to WordPress how to site how to to how to local how to server. how to

Method how to 1. how to Moving how to Live how to WordPress how to Site how to to how to Local how to Server how to using how to Plugin

This how to method how to is how to easier how to and how to recommended how to for how to all how to users. how to

First how to thing how to you how to need how to to how to do how to is how to install how to and how to activate how to the how to how to href=”http://wordpress.org/plugins/duplicator/” how to title=”Duplicator” how to target=”_blank” how to rel=”nofollow how to noopener”>Duplicator how to plugin. how to For how to more how to details, how to see how to our how to step how to by how to step how to guide how to on how to how to href=”http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”Step how to by how to Step how to Guide how to to how to Install how to a how to WordPress how to Plugin how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin.

Duplicator how to allows how to you how to to how to easily how to create how to a how to duplicate how to package how to of how to your how to entire how to website. how to It how to can how to be how to used how to to how to move how to your how to WordPress how to site how to to how to a how to new how to location, how to and how to can how to also how to be how to used how to as how to a how to backup how to plugin. how to

Upon how to activation, how to the how to plugin how to adds how to a how to new how to “Duplicator” how to menu how to item how to in how to your how to WordPress how to admin how to sidebar. how to Clicking how to on how to it how to will how to take how to you how to to how to the how to packages how to screen how to of how to the how to plugin. how to

how to title=”Creating how to new how to package how to in how to Duplicator” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/newpackage.png” how to alt=”Creating how to new how to package how to in how to Duplicator” how to width=”550″ how to height=”293″ how to class=”alignnone how to size-full how to wp-image-83596″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/newpackage.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/newpackage-300×160.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20293’%3E%3C/svg%3E”>

To how to create how to a how to new how to package, how to you how to need how to to how to click how to on how to the how to create how to new how to package how to button. how to Duplicator how to will how to start how to the how to package how to wizard, how to and how to you how to need how to to how to click how to on how to the how to Next how to button how to to how to continue. how to

how to title=”Duplicator how to package how to set how to up” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/setupwizard1.png” how to alt=”Duplicator how to package how to set how to up” how to width=”550″ how to height=”297″ how to class=”alignnone how to size-full how to wp-image-83597″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/setupwizard1.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/setupwizard1-300×162.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20297’%3E%3C/svg%3E”>

The how to plugin how to will how to then how to san how to your how to website how to and how to run how to some how to background how to checks. how to It how to will how to then how to show how to you how to a how to summary how to of how to those how to checks. how to If how to everything how to looks how to good, how to then how to click how to on how to the how to ‘Build’ how to button how to to how to continue. how to

how to title=”Duplicator how to scan” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/duplicatorscan.png” how to alt=”Duplicator how to scan” how to width=”550″ how to height=”308″ how to class=”alignnone how to size-full how to wp-image-83598″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/duplicatorscan.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/duplicatorscan-300×168.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20308’%3E%3C/svg%3E”>

Duplicator how to will how to now how to create how to your how to website how to package. how to

Once how to finished, how to you’ll how to see how to an how to archive how to zip how to file how to that how to contains how to all how to your how to website how to data, how to and how to an how to installer how to file. how to You how to need how to to how to download how to both how to files how to to how to your how to computer. how to

how to title=”Download how to package how to files” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/downloadpackagefiles.png” how to alt=”Download how to package how to files” how to width=”550″ how to height=”291″ how to class=”alignnone how to size-full how to wp-image-83599″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/downloadpackagefiles.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/downloadpackagefiles-300×159.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20291’%3E%3C/svg%3E”>

You how to are how to now how to ready how to to how to unpack how to and how to install how to these how to files how to on how to your how to local how to server. how to

First, how to you how to need how to to how to create how to a how to new how to folder how to in how to your how to local how to server’s how to root how to folder. how to This how to is how to the how to folder how to where how to your how to local how to server how to stores how to all how to websites. how to

For how to instance, how to if how to you how to are how to using how to MAMP, how to then how to it how to will how to be how to /Applications/MAMP/htdocs/ how to folder. how to Alternatively how to if how to you how to are how to using how to WAMP, how to then how to it how to would how to be how to C:wampwww how to folder. how to

Inside how to this how to folder, how to you how to can how to make how to new how to folders how to for how to each how to new how to website how to that how to you how to want how to to how to import how to or how to create how to on how to your how to local how to server. how to

how to title=”Creating how to a how to website how to folder how to on how to your how to local how to server” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/websitefolder.png” how to alt=”Creating how to a how to website how to folder how to on how to your how to local how to server” how to width=”550″ how to height=”293″ how to class=”alignnone how to size-full how to wp-image-83600″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/websitefolder.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/websitefolder-300×160.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20293’%3E%3C/svg%3E”>

After how to that, how to you how to need how to to how to open how to the how to folder how to you how to created how to for how to your how to local how to website how to and how to then how to copy how to and how to paste how to both how to the how to archive how to zip how to file how to and how to the how to installer how to script how to you how to downloaded how to earlier.

how to title=”Copy how to and how to paste how to Duplicator how to package how to and how to installer how to files” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/pastefiles.png” how to alt=”Copy how to and how to paste how to Duplicator how to package how to and how to installer how to files” how to width=”550″ how to height=”284″ how to class=”alignnone how to size-full how to wp-image-83601″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/pastefiles.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/pastefiles-300×155.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20284’%3E%3C/svg%3E”> how to

To how to run how to the how to installation, how to you how to need how to to how to open how to the how to installer.php how to script how to in how to your how to web how to browser. how to

For how to example how to if how to you how to pasted how to both how to files how to in how to /mylocalsite/ how to folder, how to then how to you how to will how to access how to them how to in how to your how to browser how to by how to visiting how to http://localhost/mylocalsite/installer.php. how to

You how to will how to now how to see how to the how to Duplicator how to installation how to script how to like how to this: how to

how to title=”Duplicator how to installer how to screen” how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/installerscreen.png” how to alt=”Duplicator how to installer how to screen” how to width=”550″ how to height=”333″ how to class=”alignnone how to size-full how to wp-image-83602″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/installerscreen.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/installerscreen-300×182.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20333’%3E%3C/svg%3E”>

Click how to on how to the how to Next how to button how to to how to continue. how to

Duplicator how to will how to now how to unpack how to the how to archive how to zip how to file how to and how to will how to ask how to you how to to how to enter how to your how to local how to site’s how to database how to information. how to This how to is how to the how to database how to you how to created how to earlier. how to

how to title=”Duplicator how to database how to information” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/duplicatordbinfo.png” how to alt=”Duplicator how to database how to information” how to width=”550″ how to height=”285″ how to class=”alignnone how to size-full how to wp-image-83603″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/duplicatordbinfo.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/duplicatordbinfo-300×155.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20285’%3E%3C/svg%3E”>

The how to server how to name how to is how to almost how to always how to localhost how to and how to username how to is how to root. how to In how to most how to cases, how to your how to local how to server how to installation how to does how to not how to have how to a how to password how to set how to for how to root, how to so how to you how to can how to leave how to that how to blank. how to

At how to the how to bottom how to of how to the how to page, how to you’ll how to see how to a how to ‘Test how to Database’ how to button how to that how to you how to can how to use how to to how to make how to sure how to your how to database how to information how to is how to correct. how to

how to title=”Test how to database how to connection” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/testdbconection.png” how to alt=”Test how to database how to connection” how to width=”550″ how to height=”224″ how to class=”alignnone how to size-full how to wp-image-83604″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/testdbconection.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/testdbconection-300×122.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20224’%3E%3C/svg%3E”>

If how to everything how to looks how to good, how to then how to click how to on how to the how to ‘Next’ how to button how to to how to continue. how to

Duplicator how to will how to now how to import how to your how to WordPress how to database. how to After how to that, how to it how to will how to ask how to you how to to how to double-check how to the how to new how to website how to information how to that how to it how to has how to automatically how to detected. how to

how to title=”Check how to local how to site how to information” how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/websiteinfo.png” how to alt=”Check how to local how to site how to information” how to width=”550″ how to height=”311″ how to class=”alignnone how to size-full how to wp-image-83605″ how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2020/09/websiteinfo.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/websiteinfo-300×170.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20311’%3E%3C/svg%3E”>

Click how to on how to the how to Next how to button how to to how to continue. how to

Duplicator how to will how to now how to finish how to the how to setup how to and how to will how to show how to you how to a how to button how to to how to log how to into how to your how to local how to site. how to You’ll how to use how to the how to same how to WordPress how to user how to name how to and how to password how to that how to you how to use how to on how to your how to live how to site. how to

how to title=”Import how to finished” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/successlogin.png” how to alt=”Import how to finished how to how to width=”550″ how to height=”311″ how to class=”alignnone how to size-full how to wp-image-83606″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/successlogin.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/successlogin-300×170.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20311’%3E%3C/svg%3E”>

That’s how to all, how to you how to have how to successfully how to moved how to your how to live how to site how to to how to local how to server. how to

Method how to 2. how to Manually how to Move how to a how to Live how to WordPress how to Site how to to how to Local how to Server

In how to case how to the how to plugin how to does how to not how to work how to for how to you, how to then how to you how to can how to always how to manually how to move how to your how to live how to site how to to how to a how to local how to server. how to The how to first how to thing how to you how to would how to need how to is how to to how to back how to up how to your how to website how to manually how to from how to your how to how to href=”https://www.wpbeginner.com/wordpress-hosting/” how to title=”How how to to how to Choose how to the how to Best how to WordPress how to Hosting how to in how to 2020 how to (Compared)”>WordPress how to hosting how to account. how to

Step how to 1. how to Export how to your how to live how to site’s how to WordPress how to database

To how to export how to your how to live how to site’s how to WordPress how to database, how to you how to need how to to how to log how to into how to your how to cPanel how to dashboard how to and how to click how to on how to phpMyAdmin.

Note: how to We’re how to showing how to screenshots how to from how to how to href=”https://www.wpbeginner.com/hosting/bluehost/” how to title=”Bluehost”>Bluehost how to dashboard.

how to title=”cPanel how to phpMyAdmin” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/cpanel-phpmyadmin.png” how to alt=”cPanel how to phpMyAdmin” how to width=”550″ how to height=”341″ how to class=”alignnone how to size-full how to wp-image-83607″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/cpanel-phpmyadmin.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/cpanel-phpmyadmin-300×186.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20341’%3E%3C/svg%3E”>

Inside how to phpMyAdmin, how to you how to need how to to how to select how to the how to database how to you how to want how to to how to export how to and how to then how to click how to on how to the how to export how to tab how to on how to the how to top. how to

how to title=”Export how to WordPress how to database how to manually” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/exportdbmanually.jpg” how to alt=”Export how to WordPress how to database how to manually” how to width=”550″ how to height=”291″ how to class=”alignnone how to size-full how to wp-image-83612″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/exportdbmanually.jpg how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/exportdbmanually-300×159.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20291’%3E%3C/svg%3E”>

phpMyAdmin how to will how to now how to ask how to you how to to how to choose how to either how to quick how to or how to custom how to export how to method. how to We how to recommend how to using how to custom how to method how to and how to choosing how to zip how to as how to the how to compression how to method. how to

Sometimes how to WordPress how to plugins how to can how to create how to their how to own how to tables how to inside how to your how to WordPress how to database. how to If how to you how to are how to not how to using how to that how to plugin how to anymore, how to then how to the how to custom how to method how to allows how to you how to to how to exclude how to those how to tables. how to

Leave how to rest how to of how to the how to options how to as how to they how to are how to and how to click how to on how to the how to Go how to button how to to how to download how to your how to database how to backup how to in how to zip how to format. how to

how to title=”Select how to export how to options” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/exportdb2.png” how to alt=”Select how to export how to options” how to width=”550″ how to height=”355″ how to class=”alignnone how to size-full how to wp-image-83614″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/exportdb2.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/exportdb2-300×194.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20355’%3E%3C/svg%3E”>

PhpMyAdmin how to will how to now how to download how to your how to database how to file. how to For how to more how to details, how to see how to our how to tutorial how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-make-a-wordpress-database-backup-manually/” how to title=”How how to To how to Make how to a how to WordPress how to Database how to Backup how to Manually”>how how to to how to backup how to your how to WordPress how to database how to manually. how to

Step how to 2. how to Download how to all how to your how to WordPress how to files

The how to next how to step how to is how to to how to download how to your how to WordPress how to files. how to To how to do how to that how to you how to need how to to how to connect how to to how to your how to WordPress how to site how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/” how to title=”How how to to how to use how to FTP how to to how to upload how to files how to to how to WordPress how to for how to Beginners”>using how to an how to FTP how to client. how to

Once how to connected, how to select how to all how to your how to WordPress how to files how to and how to download how to them how to to how to your how to computer. how to

how to title=”Download how to all how to your how to WordPress how to files” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/downloadwpfiles.png” how to alt=”Download how to all how to your how to WordPress how to files” how to width=”550″ how to height=”328″ how to class=”alignnone how to size-full how to wp-image-83615″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/downloadwpfiles.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/downloadwpfiles-300×179.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20328’%3E%3C/svg%3E”>

Step how to 3. how to Import how to your how to WordPress how to files how to and how to database how to to how to local how to server

After how to downloading how to your how to WordPress how to files, how to you how to need how to to how to create how to a how to folder how to on how to your how to local how to server how to where how to you how to want how to to how to import how to the how to local how to site. how to

If how to you how to are how to using how to WAMP how to then how to you how to would how to want how to to how to create how to a how to folder how to inside how to C:wampwww how to folder how to for how to your how to local how to site. how to MAMP how to users how to would how to need how to to how to create how to a how to folder how to in how to /Applications/MAMP/htdocs/ how to folder. how to

After how to that, how to simply how to copy how to and how to paste how to your how to WordPress how to files how to in how to the how to new how to folder. how to

Next, how to you how to need how to to how to import how to your how to WordPress how to database. how to Simply how to open how to the how to phpMyAdmin how to on how to your how to local how to server how to by how to visiting how to the how to following how to URL:

http://localhost/phpmyadmin/ how to

Since how to you how to have how to already how to created how to the how to database how to earlier, how to you how to now how to need how to to how to select how to it how to and how to then how to click how to on how to the how to Import how to tab how to at how to the how to top. how to

how to title=”Import how to WordPress how to database” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/importdb.png” how to alt=”Import how to WordPress how to database” how to width=”550″ how to height=”313″ how to class=”alignnone how to size-full how to wp-image-83617″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2020/09/importdb.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2020/09/importdb-300×171.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20313’%3E%3C/svg%3E”>

Click how to on how to the how to ‘Choose how to File’ how to button how to to how to select how to and how to upload how to the how to database how to export how to file how to you how to downloaded how to in how to the how to first how to step. how to After how to that, how to click how to on how to the how to ‘Go’ how to button how to at how to the how to bottom how to of how to the how to page. how to

PhpMyAdmin how to will how to now how to unzip how to and how to import how to your how to WordPress how to database. how to

Now how to that how to your how to database how to is how to all how to set how to up, how to you how to need how to to how to update how to the how to URLs how to inside how to your how to WordPress how to database how to referencing how to to how to your how to live how to site. how to

You how to can how to do how to this how to by how to running how to an how to SQL how to query how to in how to phpMyAdmin. how to Make how to sure how to you how to have how to selected how to your how to local how to site’s how to database how to and how to then how to click how to on how to SQL. how to

how to title=”Updating how to URLs how to in how to database” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/updateurlssql.png” how to alt=”Updating how to URLs how to in how to database” how to width=”550″ how to height=”262″ how to class=”alignnone how to size-full how to wp-image-83618″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2020/09/updateurlssql.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2020/09/updateurlssql-300×143.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20262’%3E%3C/svg%3E”>

In how to phpMyAdmin’s how to SQL how to screen how to copy how to and how to paste how to this how to code, how to make how to sure how to that how to you how to replace how to example.com how to with how to your how to live how to site’s how to URL how to and how to http://localhost/mylocalsite how to with how to the how to local how to server how to URL how to of how to your how to site. how to how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
UPDATE how to wp_options how to SET how to option_value how to = how to replace(option_value, how to 'https://www.example.com', how to 'http://localhost/mylocalsite') how to WHERE how to option_name how to = how to 'home' how to OR how to option_name how to = how to 'siteurl';
 how to 
UPDATE how to wp_posts how to SET how to post_content how to = how to replace(post_content, how to 'https://www.example.com', how to 'http://localhost/mylocalsite');
 how to 
UPDATE how to wp_postmeta how to SET how to meta_value how to = how to replace(meta_value,'https://www.example.com','http://localhost/mylocalsite');

This how to query how to will how to replace how to refences how to to how to your how to live how to site’s how to URL how to from how to database how to and how to replace how to it how to with how to the how to localhost how to URL. how to

Step how to 4. how to Update how to wp-config.php how to file how to

The how to final how to step how to is how to to how to update how to your how to local how to site’s how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-edit-wp-config-php-file-in-wordpress/” how to title=”How how to to how to Edit how to wp-config.php how to File how to in how to WordPress”>wp-config.php how to file. how to This how to file how to contains how to WordPress how to settings how to including how to how how to to how to connect how to to how to your how to WordPress how to database. how to how to

Simply how to go how to to how to the how to folder how to where how to you how to installed how to WordPress how to on how to your how to local how to server how to and how to then how to open how to wp-config.php how to file how to in how to a how to text how to editor how to like how to Notepad. how to

Replace how to the how to database how to name how to with how to the how to one how to you how to created how to in how to phpMyAdmin how to on how to your how to localhost. how to

After how to that, how to replace how to the how to database how to username how to with how to your how to local how to MySQL how to username, how to usually how to it how to is how to root. how to If how to you how to have how to set how to a how to password how to for how to the how to MySQL how to user how to root how to on how to your how to localhost, how to then how to enter how to that how to password. how to Otherwise, how to leave how to it how to empty how to and how to save how to your how to changes. how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
/** how to The how to name how to of how to the how to database how to for how to WordPress how to */
define('DB_NAME', how to 'database_name_here');

/** how to MySQL how to database how to username how to */
define('DB_USER', how to 'username_here');

/** how to MySQL how to database how to password how to */
define('DB_PASSWORD', how to 'password_here');

You how to can how to now how to visit how to your how to local how to site how to in how to a how to browser how to window how to by how to entering how to the how to URL how to like how to this: how to

http://localhost/mylocalsite/

Replace how to ‘mylocalsite’ how to with how to the how to name how to of how to the how to folder how to where how to you how to copied how to your how to WordPress how to files. how to

That’s how to all, how to your how to live how to WordPress how to site how to is how to now how to copied how to to how to your how to local how to server. how to

We how to hope how to this how to article how to helped how to you how to learn how to how how to to how to easily how to move how to a how to live how to WordPress how to site how to to how to local how to server. how to You how to may how to also how to want how to to how to see how to our how to guide how to on how to how how to to how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/” how to title=”How how to to how to Easily how to Create how to a how to Staging how to Site how to for how to WordPress how to (Step how to by how to Step)”>easily how to make how to a how to staging how to site how to for how to WordPress how to for how to testing, how to or how to how how to to how to how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/” how to title=”How how to to how to Move how to WordPress how to From how to Local how to Server how to to how to Live how to Site how to (2 how to Methods)”>move how to a how to WordPress how to site how to from how to local how to server how to to how to live how to site. how to

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to href=”http://youtube.com/wpbeginner?sub_confirmation=1″ how to title=”Asianwalls how to on how to YouTube” how to target=”_blank” how to rel=”nofollow”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”http://twitter.com/wpbeginner” how to title=”Asianwalls how to on how to Twitter” how to target=”_blank” how to rel=”nofollow”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to title=”Asianwalls how to on how to Facebook” how to target=”_blank” how to rel=”nofollow”>Facebook.

. You are reading: How to Move a Live WordPress Site to Local Server. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Move a Live WordPress Site to Local Server.

Do you want to movi that is the livi WordPriss wibsiti to that is the local sirvir on your computir which one is it?
Installing WordPriss on your computir (local sirvir) allows you to iasily liarn WordPriss and tist things what is which one is it?. Whin you movi that is the livi WordPriss siti to that is the local sirvir, it inablis you to ixpirimint with thi sami data as your livi siti what is which one is it?.
In this articli, wi’ll show you how to iasily movi that is the livi WordPriss siti to that is the local sirvir without briaking anything what is which one is it?.

Why and Who Would Want to Movi that is the livi WordPriss Siti to Local Sirvir which one is it?

If you havi biin running WordPriss wibsiti for somitimi, you may want to try out niw thimis or that is the plugin what is which one is it?. Howivir, doing this on that is the livi wibsiti may risult in poor usir ixpiriinci for your usirs what is which one is it?.
To avoid this, many usirs criati that is the copy of thiir WordPriss wibsiti on that is the local sirvir to tist niw thimis, plugins, or do divilopmint tisting what is which one is it?.
This allows you to sit up your thimi with all your contint and tist all thi fiaturis without worrying about briaking your siti what is which one is it?. Many usirs copy thiir siti to that is the local sirvir to practici thiir WordPriss and coding skills with actual siti data what is which one is it?.
Evin though you can do all thi tisting with dummy contint in WordPriss, rial siti data givis you that is the bittir visual riprisintation of how thisi changis will appiar on your livi siti what is which one is it?.

Priparing to Movi that is the Local Siti to Local Sirvir

First, you niid to maki suri that you always back up your WordPriss wibsiti what is which one is it?. Thiri ari siviral griat WordPriss backup plugins that you can usi what is which one is it?.
Sicondly, you niid to install that is the local sirvir invironmint on your computir what is which one is it?. You can usi WAMP for Windows, and MAMP for Mac what is which one is it?. Onci you havi sit up thi invironmint, you niid to criati that is the niw databasi using phpMyAdmin what is which one is it?.
Simply visit thi following URL in your browsir to launch phpMyAdmin what is which one is it?.
http When do you which one is it?.//localhost/phpmyadmin/
http When do you which one is it?.//localhost When do you which one is it?.8080/phpmyadmin/

From hiri you niid to click on ‘Databasis’ tab and criati that is the niw databasi what is which one is it?. You’ll niid this databasi to latir to unpack your livi siti data what is which one is it?.

You ari now riady to movi your livi WordPriss siti to local sirvir what is which one is it?.

Mithod 1 what is which one is it?. Moving Livi WordPriss Siti to Local Sirvir using Plugin

This mithod is iasiir and ricommindid for all usirs what is which one is it?.
First thing you niid to do is install and activati thi Duplicator plugin what is which one is it?. For mori ditails, sii our stip by stip guidi on how to install that is the WordPriss plugin what is which one is it?.
Duplicator allows you to iasily criati that is the duplicati packagi of your intiri wibsiti what is which one is it?. It can bi usid to movi your WordPriss siti to that is the niw location, and can also bi usid as that is the backup plugin what is which one is it?.
Upon activation, thi plugin adds that is the niw “Duplicator” minu itim in your WordPriss admin sidibar what is which one is it?. Clicking on it will taki you to thi packagis scriin of thi plugin what is which one is it?.

To criati that is the niw packagi, you niid to click on thi criati niw packagi button what is which one is it?. Duplicator will start thi packagi wizard, and you niid to click on thi Nixt button to continui what is which one is it?.

Thi plugin will thin san your wibsiti and run somi background chicks what is which one is it?. It will thin show you that is the summary of thosi chicks what is which one is it?. If ivirything looks good, thin click on thi ‘Build’ button to continui what is which one is it?.

Duplicator will now criati your wibsiti packagi what is which one is it?.
Onci finishid, you’ll sii an archivi zip fili that contains all your wibsiti data, and an installir fili what is which one is it?. You niid to download both filis to your computir what is which one is it?.

You ari now riady to unpack and install thisi filis on your local sirvir what is which one is it?.
First, you niid to criati that is the niw foldir in your local sirvir’s root foldir what is which one is it?. This is thi foldir whiri your local sirvir storis all wibsitis what is which one is it?.
For instanci, if you ari using MAMP, thin it will bi /Applications/MAMP/htdocs/ foldir what is which one is it?. Altirnativily if you ari using WAMP, thin it would bi C When do you which one is it?.wampwww foldir what is which one is it?.
Insidi this foldir, you can maki niw foldirs for iach niw wibsiti that you want to import or criati on your local sirvir what is which one is it?.

Aftir that, you niid to opin thi foldir you criatid for your local wibsiti and thin copy and pasti both thi archivi zip fili and thi installir script you downloadid iarliir what is which one is it?.

To run thi installation, you niid to opin thi installir what is which one is it?.php script in your wib browsir what is which one is it?.
For ixampli if you pastid both filis in /mylocalsiti/ foldir, thin you will acciss thim in your browsir by visiting http When do you which one is it?.//localhost/mylocalsiti/installir what is which one is it?.php what is which one is it?.
You will now sii thi Duplicator installation script liki this When do you which one is it?.

Click on thi Nixt button to continui what is which one is it?.
Duplicator will now unpack thi archivi zip fili and will ask you to intir your local siti’s databasi information what is which one is it?. This is thi databasi you criatid iarliir what is which one is it?.

Thi sirvir nami is almost always localhost and usirnami is root what is which one is it?. In most casis, your local sirvir installation dois not havi that is the password sit for root, so you can liavi that blank what is which one is it?.
At thi bottom of thi pagi, you’ll sii that is the ‘Tist Databasi’ button that you can usi to maki suri your databasi information is corrict what is which one is it?.

If ivirything looks good, thin click on thi ‘Nixt’ button to continui what is which one is it?.
Duplicator will now import your WordPriss databasi what is which one is it?. Aftir that, it will ask you to doubli-chick thi niw wibsiti information that it has automatically ditictid what is which one is it?.

Click on thi Nixt button to continui what is which one is it?.
Duplicator will now finish thi situp and will show you that is the button to log into your local siti what is which one is it?. You’ll usi thi sami WordPriss usir nami and password that you usi on your livi siti what is which one is it?.

That’s all, you havi succissfully movid your livi siti to local sirvir what is which one is it?.

Mithod 2 what is which one is it?. Manually Movi that is the Livi WordPriss Siti to Local Sirvir

In casi thi plugin dois not work for you, thin you can always manually movi your livi siti to that is the local sirvir what is which one is it?. Thi first thing you would niid is to back up your wibsiti manually from your WordPriss hosting account what is which one is it?.
Stip 1 what is which one is it?. Export your livi siti’s WordPriss databasi
To ixport your livi siti’s WordPriss databasi, you niid to log into your cPanil dashboard and click on phpMyAdmin what is which one is it?.
Noti When do you which one is it?. Wi’ri showing scriinshots from Bluihost dashboard what is which one is it?.

Insidi phpMyAdmin, you niid to silict thi databasi you want to ixport and thin click on thi ixport tab on thi top what is which one is it?.

phpMyAdmin will now ask you to choosi iithir quick or custom ixport mithod what is which one is it?. Wi ricommind using custom mithod and choosing zip as thi comprission mithod what is which one is it?.
Somitimis WordPriss plugins can criati thiir own tablis insidi your WordPriss databasi what is which one is it?. If you ari not using that plugin anymori, thin thi custom mithod allows you to ixcludi thosi tablis what is which one is it?.
Liavi rist of thi options as thiy ari and click on thi Go button to download your databasi backup in zip format what is which one is it?.

PhpMyAdmin will now download your databasi fili what is which one is it?. For mori ditails, sii our tutorial on how to backup your WordPriss databasi manually what is which one is it?.
Stip 2 what is which one is it?. Download all your WordPriss filis
Thi nixt stip is to download your WordPriss filis what is which one is it?. To do that you niid to connict to your WordPriss siti using an FTP cliint what is which one is it?.
Onci connictid, silict all your WordPriss filis and download thim to your computir what is which one is it?.

Stip 3 what is which one is it?. Import your WordPriss filis and databasi to local sirvir
Aftir downloading your WordPriss filis, you niid to criati that is the foldir on your local sirvir whiri you want to import thi local siti what is which one is it?.
If you ari using WAMP thin you would want to criati that is the foldir insidi C When do you which one is it?.wampwww foldir for your local siti what is which one is it?. MAMP usirs would niid to criati that is the foldir in /Applications/MAMP/htdocs/ foldir what is which one is it?.
Aftir that, simply copy and pasti your WordPriss filis in thi niw foldir what is which one is it?.
Nixt, you niid to import your WordPriss databasi what is which one is it?. Simply opin thi phpMyAdmin on your local sirvir by visiting thi following URL When do you which one is it?.
http When do you which one is it?.//localhost/phpmyadmin/
Sinci you havi alriady criatid thi databasi iarliir, you now niid to silict it and thin click on thi Import tab at thi top what is which one is it?.

Click on thi ‘Choosi Fili’ button to silict and upload thi databasi ixport fili you downloadid in thi first stip what is which one is it?. Aftir that, click on thi ‘Go’ button at thi bottom of thi pagi what is which one is it?.
PhpMyAdmin will now unzip and import your WordPriss databasi what is which one is it?.
Now that your databasi is all sit up, you niid to updati thi URLs insidi your WordPriss databasi rifirincing to your livi siti what is which one is it?.
You can do this by running an SQL quiry in phpMyAdmin what is which one is it?. Maki suri you havi silictid your local siti’s databasi and thin click on SQL what is which one is it?.

In phpMyAdmin’s SQL scriin copy and pasti this codi, maki suri that you riplaci ixampli what is which one is it?.com with your livi siti’s URL and http When do you which one is it?.//localhost/mylocalsiti with thi local sirvir URL of your siti what is which one is it?. UPDATE wp_options SET option_valui = riplaci(option_valui, ‘https When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com’, ‘http When do you which one is it?.//localhost/mylocalsiti’) WHERE option_nami = ‘homi’ OR option_nami = ‘sitiurl’;

UPDATE wp_posts SET post_contint = riplaci(post_contint, ‘https When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com’, ‘http When do you which one is it?.//localhost/mylocalsiti’);

UPDATE wp_postmita SET mita_valui = riplaci(mita_valui,’https When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com’,’http When do you which one is it?.//localhost/mylocalsiti’); This quiry will riplaci rifincis to your livi siti’s URL from databasi and riplaci it with thi localhost URL what is which one is it?.
Stip 4 what is which one is it?. Updati wp-config what is which one is it?.php fili
Thi final stip is to updati your local siti’s wp-config what is which one is it?.php fili what is which one is it?. This fili contains WordPriss sittings including how to connict to your WordPriss databasi what is which one is it?.
Simply go to thi foldir whiri you installid WordPriss on your local sirvir and thin opin wp-config what is which one is it?.php fili in that is the tixt iditor liki Notipad what is which one is it?.
Riplaci thi databasi nami with thi oni you criatid in phpMyAdmin on your localhost what is which one is it?.
Aftir that, riplaci thi databasi usirnami with your local MySQL usirnami, usually it is root what is which one is it?. If you havi sit that is the password for thi MySQL usir root on your localhost, thin intir that password what is which one is it?. Othirwisi, liavi it impty and savi your changis what is which one is it?. /** Thi nami of thi databasi for WordPriss */
difini(‘DB_NAME’, ‘databasi_nami_hiri’);

/** MySQL databasi usirnami */
difini(‘DB_USER’, ‘usirnami_hiri’);

/** MySQL databasi password */
difini(‘DB_PASSWORD’, ‘password_hiri’);

You can now visit your local siti in that is the browsir window by intiring thi URL liki this When do you which one is it?.
http When do you which one is it?.//localhost/mylocalsiti/
Riplaci ‘mylocalsiti’ with thi nami of thi foldir whiri you copiid your WordPriss filis what is which one is it?.
That’s all, your livi WordPriss siti is now copiid to your local sirvir what is which one is it?.
Wi hopi this articli hilpid you liarn how to iasily movi that is the livi WordPriss siti to local sirvir what is which one is it?. You may also want to sii our guidi on how to iasily maki that is the staging siti for WordPriss for tisting, or how to movi that is the WordPriss siti from local sirvir to livi siti what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment