• Seems I’m having some problems moving my wordpress over to a new domain name.

    Hosted in exactly the same server and directory, just moved to a new domain.

    realtorsseo.com (old) -> realestatesseo.com (new)

    I referred to the post at https://codex.www.ads-software.com/Moving_WordPress and followed the instructions, but still getting some weird stuff. As you can see, all the posts and side nav looks like its been updated, but the top nav bar links are still pointing to the old domain.

    Any ideas?

    Thanks in advance for your help.
    Warmest Regards,
    Vitaliy Levit

Viewing 1 replies (of 1 total)
  • Hi –
    Removing old locations from database, replacing with new

    1) BACKUP YOUR DATABASE!!!! easiest – install the wp-db-backup plugin https://www.ads-software.com/extend/plugins/wp-db-backup/

    2)
    -the old location was https://realtorsseo.com/

    the new location: https://realestatesseo.com/

    Assuming the name of your posts table is wp_posts. If using a prefix other than wp_ then replace wp_posts with actual posts table name.

    Go to SQL tab in phpMyAdmin. run this SQL statement:

    `UPDATE wp_posts SET post_content = replace(post_content, ‘realtorsseo.com’, ‘realestatesseo.com’);

    That should do it. Backup first is important in case anything goes wrong.

Viewing 1 replies (of 1 total)
  • The topic ‘Moved to New Domain, but Some Errors’ is closed to new replies.