1. Knowledge Base
  2. >
  3. Results
  4. >
  5. Article

WordPress: How to Manually Install Using File Manager on Foundation Interface

Step 1: Download WordPress

  1. Download the WordPress package to your local computer from https://wordpress.org/download/.

Step 2. Create MySQL Database and User 

  1. Go to Hosting Dashboard.
    Hosting Dashboard
  2. In the left sidebar, click MySQL Management.
    MySQL Management
  3. Click on Add MySQL Database and fill in the database name, username, password, and confirm password.
    Add MySQL database
    Type Database Name
    Database Username and Password

Step 3: Upload WordPress to Hosting Account.

  1. Go to Hosting Dashboard.
  2. In the left sidebar, click File Manager.
  3. Once inside the File Manager, click on the (+) New in the options tab.
Upload wordpress files to file manager

Step 4: Extract WordPress Files

  1. Go to Advanced Tools.
  2. Click on Archive Gateway.
  3. Select the folder you've created for your WordPress, then click Extract/Uncompress.
Extract WordPress Files
 

Step 5: Configure wp-config.php

The wp-config-sample.php file contains the database information and tells the WordPress application from which database to pull data. 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.

  1. Go to Advanced Tools.
  2. Click on File Manager.
  3. From the left-hand navigation menu in File Manager, click the folder you created for your WordPress file.
  4. In the right-hand panel of the File Manager, locate the wp-config-sample.php file.
  5. Click on the Options menu next to the file/folder, then hit Edit.
  6. Change the file's name to wp-config.php, then click the Save button to save the change.
Edit file name

     7. A second pop-up box will appear.
     8. 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');
     
     /** MySQL hostname */
     define('DB_HOST', 'localhost_here');
  • Replace database_name_here with the name of the database you created (above in Step 2: Create MySQL Database and User  ⤴).
  • Replace username_here with the username of the database you created.
  • Replace password_here with the password of the database that you created.
  • Replace localhost_here with the MySQL server name found on the right-hand panel of MySQL. 

              9. Once done, click the Save button to save the changes.
 

Note: Make sure there are no spaces before or after your database name, username, and password.

Step 6: Run the Installation.

Open a new browser window and enter your domain to run the installation script. Depending on where you installed the script, you will be automatically redirected to either of the following URLs: If you uploaded WordPress to the domain's root folder, you should be redirected to:

https://example.com/wp-admin/install.php

If you uploaded WordPress to a subfolder of your domain's directory, then the URL will be in this format:

https://example.com/yoursubfolder/wp-admin/install.php
Be sure to replace example.com with your actual domain name in the example above.

Step 7: Complete the installation.

  1. Once you access your correct WordPress URL in a browser, you will see a WordPress setup page prompting you to select your preferred language. Select your preferred language and click the Continue button.
    WordPress Installation Select Language
  2. You should now see a welcome page that says, "Welcome to the famous five-minute WordPress installation process!" Under the Information needed section, you'll need to fill out the following fields:Wp Installation process
  3. Click the Install WordPress button, and you should be taken to the final screen, which says, "WordPress has been installed. Thank you, and enjoy!". It will display the username you chose on the previous page and a placeholder for your password. Click the Login button to log in to the WordPress Admin Dashboard to begin building your site!


Back to top.

Chat
Close