Skip to content

Instantly share code, notes, and snippets.

@ginocremer
Created November 22, 2014 21:32
Show Gist options
  • Save ginocremer/d911c7174bc0ade16f5e to your computer and use it in GitHub Desktop.
Save ginocremer/d911c7174bc0ade16f5e to your computer and use it in GitHub Desktop.
SQL Anweisung Update Datenbank: Umzug WordPress
UPDATE wp_posts SET post_content = REPLACE ( post_content, 'http://127.0.0.1:8080/wordpress', 'http://www.mein-blog.info');
UPDATE wp_options SET option_value = REPLACE ( option_value, 'http://127.0.0.1:8080/wordpress', 'http://www.mein-blog.info');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment