Différences entre les versions de « Divers Wordpress »

De Marmits Wiki
Ligne 1 : Ligne 1 :
== Procédures et requêtes SQL à utiliser pour déménagement site. ==
== Procédures et requêtes SQL à utiliser pour déménagement site. ==
<nowiki>
<blockquote>
  UPDATE wpmcat_options SET option_value = replace(option_value, 'http://ancien.site.com', 'http://nouveau.site.com') WHERE option_name = 'home' OR option_name = 'siteurl';
  UPDATE wpmcat_options SET option_value = replace(option_value, 'http://ancien.site.com', 'http://nouveau.site.com') WHERE option_name = 'home' OR option_name = 'siteurl';
  UPDATE wpmcat_posts SET guid = replace(guid, 'http://ancien.site.com','http://nouveau.site.com');
  UPDATE wpmcat_posts SET guid = replace(guid, 'http://ancien.site.com','http://nouveau.site.com');
  UPDATE wpmcat_posts SET post_content = replace(post_content, 'http://ancien.site.com', 'http://nouveau.site.com');
  UPDATE wpmcat_posts SET post_content = replace(post_content, 'http://ancien.site.com', 'http://nouveau.site.com');
 
</blockquote>
[[category:wordpress]]
[[category:wordpress]]

Version du 24 juillet 2019 à 11:55

Procédures et requêtes SQL à utiliser pour déménagement site.

UPDATE wpmcat_options SET option_value = replace(option_value, 'http://ancien.site.com', 'http://nouveau.site.com') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wpmcat_posts SET guid = replace(guid, 'http://ancien.site.com','http://nouveau.site.com'); UPDATE wpmcat_posts SET post_content = replace(post_content, 'http://ancien.site.com', 'http://nouveau.site.com');