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
| SET @oldsite='beta.fxbtrading.com'; | |
| SET @newsite='dev.fxbtrading.com'; | |
| UPDATE wp_options SET option_value = replace(option_value, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| UPDATE wp_posts SET post_content = replace(post_content, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| UPDATE wp_links SET link_url = replace(link_url, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| UPDATE wp_revslider_slides SET layers = replace(layers, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| UPDATE wp_revslider_slides SET params = replace(params, @oldsite COLLATE utf8mb4_unicode_520_ci, @newsite COLLATE utf8mb4_unicode_520_ci); | |
| /* only uncomment next line if you want all your current posts to post to RSS again as new */ |