Skip to content

Instantly share code, notes, and snippets.

@stkjj
Created November 13, 2020 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stkjj/5ee87153e5f11caad08d082cf6ba72c1 to your computer and use it in GitHub Desktop.
Save stkjj/5ee87153e5f11caad08d082cf6ba72c1 to your computer and use it in GitHub Desktop.
SQL Befehle nach Umzug von dev auf live System in WP Datenbank um die Domain anzupassen
UPDATE wp_options SET option_value = replace(option_value, 'https://old.tld', 'https://new.tld') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'https://old.tld','https://new.tld');
UPDATE wp_posts SET post_content = replace(post_content, 'https://old.tld', 'https://new.tld');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'https://old.tld', 'https://new.tld');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment