Created
November 22, 2014 21:32
-
-
Save ginocremer/d911c7174bc0ade16f5e to your computer and use it in GitHub Desktop.
SQL Anweisung Update Datenbank: Umzug WordPress
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
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