• I byethost.com have a website, using wordpress framework and mysql database.
    Now I want this site to host1free, or use the framework and use the wordpress mysql database.
    I ask if I can just move the database, and in host1free on a fresh install wordpress? ? ?
    wordpress version is 2.9.2

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can find instructions for moving your WordPress blog at Moving_WordPress. You’ll want to make sure that the new host meets the WordPress requirements as not all free hosts will…

    Essentially, you will need to download all of you WP files on your site and transfer them to the new location. You will also need a backup of your database so that you can restore to the new host location. After you have uploaded the files and restore the db backup to the new location you will need to update your wp-config.php file as well. The configurations below should be changed:
    // ** MySQL settings – You can get this info from your web host ** //
    /** The name of the database for WordPress */
    define(‘DB_NAME’, ‘dbname’);

    /** MySQL database username */
    define(‘DB_USER’, dbusername);

    /** MySQL database password */
    define(‘DB_PASSWORD’, dbpassword);

    /** MySQL hostname */
    define(‘DB_HOST’, ‘localhost’);

    If you put the WP install in a new directory hierarchy, you may have to update your WP home and WP Site Url by opening the admin and navigating to Settings > General or by adding the following to the wp-config.php:
    define(‘WP_HOME’,’https://blog.newlocation.com’);
    define(‘WP_SITEURL’,’https:// blog.newlocation.com’);

    Good Luck

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘This website can transfer it?’ is closed to new replies.