sql/config.sql.tmpl
author ymh <ymh.work@gmail.com>
Mon, 22 Mar 2010 16:36:28 +0100
changeset 5 ac511f1ccc8e
parent 2 4f3e6ea1c867
permissions -rw-r--r--
add hgignore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     1
BEGIN;
0d28b7c10758 First commit
ymh
parents:
diff changeset
     2
DELETE FROM `wp_options` WHERE option_name LIKE '_transient_%';
0d28b7c10758 First commit
ymh
parents:
diff changeset
     3
UPDATE wp_options set option_value="http://localhost/~ymh/site_iri_wp/" where option_name = "siteurl";
2
4f3e6ea1c867 small corrections
ymh
parents: 1
diff changeset
     4
UPDATE wp_options set option_value="http://localhost/~ymh/site_iri_wp/" where option_name = "home";
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     5
UPDATE wp_options SET option_value = "root@iri.centrepompidou.fr" where option_name = "admin_email";
2
4f3e6ea1c867 small corrections
ymh
parents: 1
diff changeset
     6
UPDATE wp_posts SET post_content = replace(post_content,'http://www.iri.centrepompidou.fr/dev/~hurons/', 'http://localhost/~ymh/site_cinecast/');
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     7
COMMIT;