...

Transferring your WordPress site

Transferring your WordPress site

wordpress-logo-hoz-rgbTransferring your WordPress site

This tutorial looks at how to go about transferring your WordPress site to an FASTDOT hosting account.

While installing a WordPress Blog into your FASTDOT hosting account can be simply done by using Fantastico Deluxe, there are some occasions where you want to manually transferring your WordPress site blog to your FASTDOT hosting account. This may be because you already have a WordPress Blog hosted elsewhere and are changing hosting providers or you have a WordPress Blog that you have developed on a test server.

Start transferring your WordPress site

You can transfer your WordPress site over to FASTDOT by following the steps below:

  1. Download your WordPress Blog

    Do this by Logging into your old host via FTP and download your WordPress blog

  2. Upload your WordPress Blog to FASTDOT

    Login to your FASTDOT FTP account and upload your WordPress site

  3. Export your WordPress MySQL Database using phpMyAdmin

    1. Login to your old host’s cPanel account
    2. Navigate to phpMyAdmin
    3. Select your WordPress database
    4. Select the ‘Export‘ tab on the menu on the top
    5. Click on the ‘Go‘ button to confirm
  4. Create a new FASTDOT MySQL Database via cPanel

    1. Create a new database called ‘wp’
      1. From cPanel select the MySQL Databases shortcut under the Databases section
      2. Enter ‘wp’ into the Create New Database field and click on the ‘Create Database‘ button to complete
    2. Create a new user called ‘wpuser’
      1. Click ‘Back’ to return to MySQL Databases, then scroll down to the MySQL Users section
      2. Enter a new user ‘wpuser’ and password into the required fields
      3. Click ‘Create User’ to complete
    3. Assign privileges to your newly created user
      1. Again, click ‘Back’ to return to MySQL Databases
      2. Scroll down to the ‘Add User to Database’ section
      3. Select your newly created user from the ‘User’ dropdown menu
      4. Select the database from the ‘Database’ dropdown menu
      5. Click on the ‘Add’ button
      6. Select the ‘All Privileges’ checkbox
      7. Select ‘Make Changes’ to finalise
  5. Import your MySQL Database to FASTDOT using phpMyAdmin

    1. Login to your FASTDOT cPanel
    2. Navigate to phpMyAdmin
    3. Select database ‘wp’
    4. Select ‘Import’ tab in the menu on the top
    5. Click on the ‘Choose File’ button and select the .sql file you exported earlier
  6. Modify your WordPress wp-config.php via cPanel File Manager

    1. From the cPanel Homepage click on ‘File Manager’ under the ‘Files’ section
    2. Navigate to where you uploaded WordPress site, this should be in the public_html folder
    3. Select the wp-config file, right click and select ‘Edit’
    4. Leave the character encoding set to utf-8 and Click ‘Edit’
    5. Update the Database, Username and Password sections of the document with your new credentials
    6. Scroll down and create two new lines above the /* That’s all, stop editing! Happy blogging. */ line with the following:
      define("WP_SITEURL","yourdomain.com");
      define("WP_HOME","yourdomain.com");
      Note: If your domain is not pointing to your FASTDOT account, you can use your ‘temporary URL’. Your temporary URL can be found in the email titled ‘New cPanel Hosting Account Information’ which was sent to you upon signup.
    7. Click on ‘Save Changes’ to complete transferring your wordpress site
  7. Login to your WordPress Site
    1. Login at /wp-admin
    2. Select Settings > General on the menu on the left
    3. Have your nameservers been delegated to FASTDOT?
    4. Enter http://yourdomain.com into the WordPress Address (URL) and Site Address (URL) fields

This is the end of the tutorial of how transferring your WordPress site to FASTDOT.

FAQ

  1. I can’t upload images, why?
    “Unable to create directory. Is its parent directory writable by the server?”
    Check permissions are 755 on ‘wp-uploads’ folder
  2. I can’t see my site at ‘fastdotaddress.com’ what’s happening?
    1. Check to see what directory WordPress is in under ‘public_html’
    2. Make sure step 6 has been followed correctly with the correct address
    3. Make sure your nameservers have been delegated, if not, use the temporary address transferring your WordPress site to FASTDOT.

How to use Your Temporary URL with WordPress

When transferring your WordPress installation to FASTDOT you may need to use the temporary URL, this URL will allow you to access your site before the Name Servers have propagated to ours.
A few of the symptoms or issues you may be running into are:

  • My Domain name isn’t resolving to my new account yet.
  • I don’t get any images or themes to show up, just the text.
  • I can’t log into my Administrator Panel, because logging in wants to take me to a url with my domain.
  • How can I change my settings to allow me to view my WordPress Blog before my domain name resolves?

Changing to the temp URL

There are a few cases where you might need to go in and change a URL in the WordPress database.

    • My domain name isn’t resolving to my new account yet, so I have to visit my WordPress install with a URL like http://111.222.333.444/~example/. I don’t get any images or themes to show up, just the text.
    • I also can’t log into my Administrator Panel, because logging in wants to take me to a URL with my domain name in it. How can I change my settings to allow me to view my WordPress blog before my domain name resolves?
    • The URL appears like http://www.domain.com/addondomain/ and there are no redirects in the .htaccess

 

  • If WordPress was installed to an addon domain, then the database URL will need to be changed to something like http://www.addondomain.com

This requires a little MySQL trick. It’s two simple edits in the database.

 

    • First, make sure that your WordPress installation is complete, and you know what the name of the database is. If Installatron or Fantastico installed WordPress for you, it’s likely the name of the database is something like:
        • username_wrd1
    • If you don’t know the database name, you can use the File Manager to look inside the wp-config.php file to find out its name.

 

file_manager_wp_config
    • Right click wp-config.php and select Code Edit. You can now see the username and database.

 

wp_config_userwp_config_database

 

    • Next, log into your cPanel. Look for the Databases section.
    • Select the icon named phpMyAdmin (looks like a sailboat.)
databases_phpmyadmin

 

    • Once here, you need to select the database name on the left. (i.e. “_wrd1”)

 

phpmyadmin_wrd1

 

    • This will display the names of the Tables to the right.
    • Now there are icons to the right of the tables. The First one is called “Browse”. Click “Browse”.
      phpmyadmin_browse
    • Next, the database entries are listed in columns and rows. You want to select the pencil icon (for Edit) on the left for the top row (option_name is “site url”)

 

phpmyadmin_edit_siteurl

 

    • Once you’ve clicked the pencil icon, you will see your domain name listed something like this:
      • http://example.com/
      phpmyadmin_url
    • You want to change that to something like this:
      • http://221.121.145.213/~massivenew/
      phpmyadmin_temp_url
    • This step is crucial so you don’t make a mistake. Please take a moment to verify the URL you are typing in here is correct, or you won’t see any change.
    • Once you’ve changed the URL, down at the bottom there is a “Go” button. Select the “Go” button.
    • Select the next button to go to the next page
    • Look for the option_name home

 

phpmyadmin_edit_home

 

    • Select the pencil icon  to Edit.
    • Make the same URL change here as you did for siteurl earlier. And click the “Go” button.

 

  • Visit your Temporary URL (https://111.222.333.444/~examplec/) for your blog, and all the images will show up just fine.

 

Changing from the temp URL

Once you’ve changed your name servers so your domain name resolves to your account, you don’t have to go back into phpMyAdmin to make the change again.

 

    • Log into your WordPress Admin Panel
    • Click the tab “Settings”. Here you will see WordPress and Site address (URL):
wordpress_settings

 

    • It is set to your Temporary URL .

 

wordpress_settings_temp_url

 

    • Change this to your domain name with any folders required, and you’re back to normal.

 

wordpress_settings_url
Previous Post
SSH commands for CSF – ConfigServer Security & Firewall
Next Post
Check If Your Linux Server Is Vulnerable to Shellshock

Get Online Today!

  

Your perfect domain name is waiting!

Search our huge portfolio for more domain name extensions and pricing below
domain name extensions

Classic Domain Names

.COM | .AU | .CO | .NET | .BIZ | .ME | .EU | .ASIA | .TV | .MOBI | .NAME | .INFO | .ORG | .US | .NL| .FM | .HK | .ES | .CO.NZ | .DE | .CO.UK | .RU | .IM | .PM | .TW | .FR | .CN | .CA | .CH | .VN | .PL | .IL | .JP | .KR |