Support

Account

Home Forums Front-end Issues How to migrate files from old site to new site? Reply To: How to migrate files from old site to new site?

  • Hello,

    the best option should be to migrate your site by uploading all the files of wp on your ftp, changing the database connexion on wp-config.php and then change urls in you phpmyadmin like this :
    select your db
    click on sql tab
    add this script and change what’s needed :
    UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl’, ‘http://www.newurl’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;

    UPDATE wp_posts SET guid = replace(guid, ‘http://www.oldurl’,’http://www.newurl’);

    UPDATE wp_posts SET post_content = replace(post_content, ‘http://www.oldurl’, ‘http://www.newurl’);

    UPDATE wp_postmeta SET meta_value = replace(meta_value,’http://www.oldurl’,’http://www.newurl’);