Skip to content

Instantly share code, notes, and snippets.

@AidHamza
Created March 30, 2017 13:04
Show Gist options
  • Save AidHamza/91241e7618f86b9451ba5732f11d711d to your computer and use it in GitHub Desktop.
Save AidHamza/91241e7618f86b9451ba5732f11d711d to your computer and use it in GitHub Desktop.
SQL to modify Jambe légères URL's
UPDATE wp_options SET option_value = replace(option_value, 'http://servier.appsdoc.com', 'http://www.jambeslegeres.ma') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://servier.appsdoc.com','http://www.jambeslegeres.ma');
UPDATE wp_posts SET post_content = replace(post_content, 'http://servier.appsdoc.com', 'http://www.jambeslegeres.ma');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://servier.appsdoc.com','http://www.jambeslegeres.ma');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment