update scripts
This commit is contained in:
6
changeurl.sql
Normal file
6
changeurl.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
SET @old_URL = 'https://www.landleben-linum.de';
|
||||
SET @new_URL = 'http://localhost:8080';
|
||||
|
||||
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 guid = replace(guid, @old_URL, @new_URL);
|
||||
UPDATE wp_posts SET post_content = replace(post_content, @old_URL, @new_URL);
|
||||
Reference in New Issue
Block a user