FTP upload wordpress

Installing WordPress on DirectAdmin

Installing WordPress on DirectAdmin

This example I will use my domain name Justin.my as the example.

Adding MySQL database

You need one database to run the WordPress. You can create the MySQL database by using the tutorial from here.
[adrotate banner=”1″]
Please remember or write down the database name, username and the password that you’ve created. Because we need to use it later.

Installing WordPress using SSH

I would like to use SSH to do my job:

# cd /home/juzhax/domains/justin.my/public_html
# wget http://wordpress.org/latest.tar.gz
# tar -zvxf latest.tar.gz
# mv ./wordpress/* ./
# rmdir wordpress
# mv wp-config-sample.php wp-config.php
# vi wp-config.php

Installing WordPress using FTP

If you would like to upload using FTP, you can try to get FileZilla – The Free FTP solution, and install it from here.
[adrotate banner=”2″]
Download the wordpress.zip from http://wordpress.org/latest.zip.
Extract the file to your PC C:\Downloads\wordpress\ folder
Upload all files to your /domains/justin.my/public_html/

FTP upload wordpress

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'juzhax_wordpress');

/** MySQL database username */
define('DB_USER', 'juzhax_wordpress');

/** MySQL database password */
define('DB_PASSWORD', 'thisismypassword');

/** MySQL hostname */
define('DB_HOST', 'localhost');

Continue Install WordPress in Browser

Enter //www.justin.my/ in your browser then the step will bring you install to finish.

Tags:

2 thoughts on “Installing WordPress on DirectAdmin”

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.