Setup a Wordpress Blog
How to setup a blog on our servers

  1. Go to Wordpress' Download section to get their latest zipped release.

  2. Unzip the file into yourdomainname.com/YOURBLOGDIRECTORY (for FTP, it would be www/YOURBLOGDIRECTORY).

    .

  3. Copy or rename the "wp-config-sample.php" found in the blog root directory to "wp-config.php".
  4. Open wp-config.php.
  5. Under the "MySQL Settings", you will need to change the following:
    define('DB_NAME', 'wordpress'); // The name of the database
    define('DB_USER', 'username'); // Your MySQL username
    define('DB_PASSWORD', 'password'); // ...and password
    define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value


    to

    define('DB_NAME', 'yourdomainname'); 
    define('DB_USER', 'yourdomainname'); 
    define('DB_PASSWORD', 'password'); 
    define('DB_HOST', 'mysqlserver.setupsite.com');


    Your MySQL database name and username should be the same.  The DB_HOST address, where the MySQL servers are located, will be either be yourmysqlserver.setupsite.com or yourmysqlserver.setupsite.net.  Refer to your MySQL login email sent by us for this information.

  6. Go to http://yourdomainname.com/YOURBLOGDIRECTORY/wp-admin/install.php . If successful, you should see the following:

  7. Follow and fill in the necessary form entries.

  8. Wordpress should then populate the MySQL database with the necessary entries. If successful, you should see a similar page:

  9. Log in and change the admin username and password as needed at http://yourdomainname.com/YOURBLOGDIRECTORY/wp-login.php .
  10. Go to http://yourdomainname.com/YOURBLOGDIRECTORY/index.php . Your Wordpress blog installation should now be completed.

If you receive any errors during installation, contact us as soon as possible.