Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created October 8, 2020 20:24
Show Gist options
  • Save jbd91/207d616fee9bc5de484bd15a13c7ff68 to your computer and use it in GitHub Desktop.
Save jbd91/207d616fee9bc5de484bd15a13c7ff68 to your computer and use it in GitHub Desktop.
When Updraft Shits the Bed
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