Created
October 8, 2020 20:24
-
-
Save jbd91/207d616fee9bc5de484bd15a13c7ff68 to your computer and use it in GitHub Desktop.
When Updraft Shits the Bed
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
Post in PHPmyadmin SQL tab when updraft does not correctly replace URLs | |
UPDATE wp_options SET option_value = replace(option_value, 'Old URL', 'New URL') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET post_content = replace(post_content, 'Old URL', 'New URL'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value,'Old URL','New URL'); | |
UPDATE wp_usermeta SET meta_value = replace(meta_value, 'Old URL','New URL'); | |
UPDATE wp_links SET link_url = replace(link_url, 'Old URL','New URL'); | |
UPDATE wp_comments SET comment_content = replace(comment_content , 'Old URL','New URL'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'Old URL', 'New URL'); | |
UPDATE wp_links SET link_image = replace(link_image, 'Old URL','New URL'); | |
UPDATE wp_posts SET guid = replace(guid, 'Old URL','New URL'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment