8.3 C
New York
Thursday, June 25, 2026
Home LATEST NEWS How to Install WordPress Manually

How to Install WordPress Manually

173

The following steps show how to install a WordPress Manually.WordPress is the most popular Content Management System.

Step 1: Download WordPress

  1. Download the WordPress package to your local computer from
  2. http://wordpress.org/download/
  3. Unzip the downloaded file to a folder on your local computer.

Step 2: Upload The Downloaded WordPress to Your Hosting Account.

We assume that you already have hosting account but if you donโ€™t have, visit Bluehost via this link and create an account.

There are three available options for uploading WordPress to a hosting account.

  • Upload via FTPย โ€“ Please seeย FTP Getting Startedย for more information.
  • Upload via File Managerย โ€“ Please seeย How to Upload Using the File Managerย for instructions.
  • Upload via SSHย โ€“ Please seeย How to Get and Use SSH Accessย for instructions.

Step 3: Create MySQL Database and User

WordPress stores its information in a database. Therefore, a database will need to be created.

  1. Log into cPanel.
  2. In theย Databasesย section, click theย MySQL Database Wizardย icon.
  3. Forย Step 1: Create A Database, enter the database name and clickย Next Step.
  4. Forย Step 2: Create Database Users, enter the database user name and password and clickย Create User.
  5. Forย Step 3: Add User to the Database, click theย All Privilegesย checkbox and clickย Next Step.
  6. Forย Step 4: Complete the task, make note of the database name, username and password, as you will need them forย Step 4ย below.

Step 4: Configure wp-config.php

The wp-config-sample.php file contains the database information and tells the WordPress application which database to pull information from. This step must be completed to ensure the correct database information is associated with the WordPress installation.

The wp-config-sample.php file can be found in File Manager in the folder where WordPress is installed. To modify the file:

  1. Log into cPanel.
  2. In theย Filesย section, click theย File Managerย icon.
  3. In the pop-up box, selectย Web Rootย and check the boxย forย Show Hidden Files (dotfiles), then clickย Go.

If you donโ€™t see the pop-up box, you may have selected the โ€œSkip this question, and always open this directory in the future when opening File Managerโ€ option.

To make the pop-up reappear, simply clickย reset all interface settingsย at the very bottom of your cPanel.

  1. From the left navigation menu in File Manager, clickย public_htmlย to expand the folder.
  2. Click the folder containing the WordPress installation.
  3. On the right side of the File Manager screen, locate theย wp-config-sample.phpย file.
  4. Right click on the file, selectย Renameย and change the name of the file toย wp-config.php. Click theย Rename Fileย button.
  5. Right-click on theย wp-config.phpย file and selectย Code Edit. When the file opens, look for the following information:

define(โ€˜DB_NAMEโ€™, โ€˜database_name_hereโ€™);

/** MySQL database username */
define(โ€˜DB_USERโ€™, โ€˜username_hereโ€™);

/** MySQL database password */
define(โ€˜DB_PASSWORDโ€™, โ€˜password_hereโ€™);

    1. Replaceย database_name_hereย with the name of the database you created (above inย Step 3: Create MySQL Database and Userย ).
    2. Replaceย username_hereย with the username of the database you created.
    3. Replaceย password_hereย with the password of the database that you created.
  1. When done editing, click theย Save Changesย button, then close the file.

Step 5: Run the Installation

Open a new browser window and go to the installation page to run the installation script. Depending on where you installed the script, you will find it at either of the following URLs:

http://yoursite.com/wp-admin/install.php

http://yoursite.com/blog/wp-admin/install.php

Be sure to replaceย example.comย in the example above with your actual domain name.

You should now see a welcome page that says โ€œWelcome to the famous five minute WordPress installation process!โ€

Step 6: Complete the Installation

On this page, fill in the fields for:

  • Site Name
  • Username
  • Password (needs to be entered twice)
  • Email address (login information will be sent to the email address provided during sign up)
  • Select whether or not to have the search engines index the site

Clickย Install Now, and you should be taken to the final screen, showing the following message:

Success! WordPress has been installed.

Total
0
Share