update scripts

This commit is contained in:
2024-11-20 12:01:52 +01:00
parent 94e94ac553
commit 03e0047885
4 changed files with 44 additions and 16 deletions

6
changeurl.sql Normal file
View 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);