Migration went well, except some links
-
I have recently migrated a wordpress installation from a public host to a private host in my home. I have issued the following three commands in mysql:
UPDATE wp_options SET option_value = replace(option_value, ‘http://tuxtraining.com’, ‘http://ip-address/wordpress’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_posts SET guid = replace(guid, ‘http://tuxtraining.com’,’http://ip-address/wordpress’);
UPDATE wp_posts SET post_content = replace(post_content, ‘http://tuxtraining.com’, ‘http://ip-address/wordpress’);
Yet I, areas where I have linked to other blog posts from the same site (so same site, just from one entry to another) and it auto generated the html as:
< a rel = “bookmark” href = “../?p=39 ” > Title of Blog </ a>
the problem it’s taking me here:When it should be taking me here:
http://192.168.1.112/wordpress/?p=39
any ideas?
The topic ‘Migration went well, except some links’ is closed to new replies.