Forked from chuckreynolds/wordpress-change-domain-migration.sql
Last active
August 3, 2017 13:07
-
-
Save ctengiz/51d7fa05b387ed90c2b45c6d09e42c06 to your computer and use it in GitHub Desktop.
Use this SQL script when changing domains on a WordPress site. Whether you’re moving from an old domain to a new domain or you’re changing from a development domain to a production domain this will work. __STEP1: always backup your database. __STEP2: change the ‘oldsite.com’ and ‘newsite.com’ variables to your own. __STEP3: make sure your databa…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET @oldsite='old_url'; | |
| SET @newsite='new-url'; | |
| UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_value like '%' || @old_site || '%'; | |
| UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite); | |
| UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite); | |
| UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite); | |
| UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite); | |
| /* only uncomment next line if you want all your current posts to post to RSS again as new */ | |
| #UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite); | |
| UPDATE wp_revslider_slides SET layers = replace(layers, @oldsite, @newsite); | |
| UPDATE wp_revslider_slides SET params = replace(params, @oldsite, @newsite); | |
| UPDATE wp_revslider_sliders SET settings = replace(settings, @oldsite, @newsite); | |
| UPDATE wp_revslider_sliders SET params = replace(params, @oldsite, @newsite); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment