aboutsummaryrefslogtreecommitdiff
path: root/pages/wiki/wordpress/database_update.md
blob: 67d4b7b129d6f9e4369f230d258b52c901d94c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# WordPress Database Update

The following page contains a collection of scripts to update WordPress for numerous things.

## Updating the URL of the Database

    -- Replace in wp_options table
    UPDATE wp_options SET option_value = REPLACE(option_value, 'example.com', 'example2.com') WHERE option_name = 'home' OR option_name = 'siteurl';

    -- Replace in wp_posts table
    UPDATE wp_posts SET post_content = REPLACE(post_content, 'example.com', 'example2.com');
    UPDATE wp_posts SET guid = REPLACE(guid, 'example.com', 'example2.com');

    -- Replace in wp_postmeta table
    UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, 'example.com', 'example2.com');

    -- Replace in wp_usermeta table
    UPDATE wp_usermeta SET meta_value = REPLACE(meta_value, 'example.com', 'example2.com');

    -- Replace in wp_users table
    UPDATE wp_users SET user_url = REPLACE(user_url, 'example.com', 'example2.com');