sql/config.sql.tmpl
author Anthony Ly <anthonyly.com@gmail.com>
Mon, 10 Dec 2012 16:45:00 -0800
changeset 197 6f2ea86df1aa
parent 136 bde1974c263b
permissions -rw-r--r--
Remplacement des logos footer partenariat, style et liens. Correction traduction.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
136
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     1
BEGIN;
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     2
DELETE FROM `wp_options` WHERE option_name LIKE '_transient_%';
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     3
DELETE FROM `wp_ak_twitter`;
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     4
UPDATE wp_options set option_value="http://localhost/~ymh/site_iri_wp/" where option_name = "siteurl";
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     5
UPDATE wp_posts SET guid = replace(guid, 'http://www.iri.centrepompidou.fr/dev/~hurons/',
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     6
   'http://localhost/~ymh/site_iri_wp/');
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     7
UPDATE wp_options SET option_value = replace(option_value,'http://www.iri.centrepompidou.fr/dev/~hurons/', 'http://localhost/~ymh/site_iri_wp/') WHERE option_name = 'sm_status';
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     8
UPDATE wp_options SET option_value = replace(option_value,'/iridata/users/hurons/public_html/', '/Users/ymh/dev/workspace/site_iri_wordpress/web/') WHERE option_name = 'sm_status';
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
     9
UPDATE wp_options SET option_value = "root@iri.centrepompidou.fr" where option_name = "admin_email";
bde1974c263b merge from wordpress
ymh@caf4f556-3d62-0410-8435-a86758001935
parents:
diff changeset
    10
COMMIT;