Want a WordPress site on your Battlehorns hosting without a one-click installer? A manual FTP installation gives you full control: you pick the version, see every file on the server, and understand how WordPress is structured.
This guide assumes you already have FTP/SFTP access set up. If not, read our How to Use FTP with FileZilla tutorial first.
What you need
- Hosting plan with PHP 8.x and MySQL/MariaDB
- FTP or SFTP (FileZilla or similar)
- A MySQL database + user with privileges (created in your hosting panel)
- A computer with room to download and unzip WordPress (~50 MB)
Overview (6 steps)
- Download WordPress from wordpress.org/download
- Create a MySQL database in your panel
- Unzip the package on your PC
- Upload files via FTP to
public_html - Open your site in the browser and run the installer
- Log in to
/wp-adminand configure your site
Step 1 — Download WordPress
- Go to wordpress.org/download
- Click Download WordPress (
latest.zip) - Save the ZIP somewhere easy to find
- Extract it — you get a folder named
wordpress
Important: inside wordpress you'll see index.php, wp-admin, wp-content, and wp-includes. You upload the contents of that folder, not the “wordpress” folder itself (unless you want a subdirectory install).
Step 2 — Create the MySQL database
In your Battlehorns hosting panel:
- Create a database (e.g.
mysite_wp) - Create a MySQL user with a strong password
- Grant the user full privileges on that database
- Write down: database name, username, password, and host (often
localhost)
Step 3 — (Optional) Edit wp-config.php on your PC
You can skip this — the web installer creates the file for you. To prepare early:
- In the
wordpressfolder, renamewp-config-sample.phptowp-config.php - Open it in a text editor
- Fill in
DB_NAME,DB_USER,DB_PASSWORD, andDB_HOST - Save the file
Step 4 — Upload files via FTP
Connect to your server with FileZilla (see our FTP tutorial).
Site at domain root (e.g. yourdomain.com)
- On the server, open
public_html(orwww/htdocs) - On your PC, open the extracted
wordpressfolder - Select all files and folders inside wordpress (not the “wordpress” folder itself)
- Drag them into
public_htmlon the server - Wait for the full upload (thousands of files — it can take a while)
Site in a subfolder (e.g. yourdomain.com/blog)
- Create a
blogfolder insidepublic_html - Upload the contents of the
wordpressfolder intoblog
Classic mistake: uploading the whole wordpress folder makes the site load at yourdomain.com/wordpress/ instead of the root. Fix by moving files one level up.
FTP tip: disable “convert filenames to lowercase” in your FTP client if that option exists.
Step 5 — Run the installer in your browser
When the upload finishes, visit:
- Root install:
https://yourdomain.comorhttps://yourdomain.com/wp-admin/install.php - Subfolder:
https://yourdomain.com/blog/wp-admin/install.php
If wp-config.php doesn't exist, WordPress asks for database details:
Then set:
- Site title
- Admin username (avoid “admin” if possible)
- Strong password
- Admin email
- Search engine visibility (leave visible for SEO)
Step 6 — After installation
- Log in at
/wp-admin - Go to Settings → Permalinks and choose a friendly structure (e.g. “Post name”) — click Save
- Install plugins only from trusted sources
- Activate a theme and create your first page or post
- Back up files and database regularly
Common problems
Directory listing instead of the site
Missing root files or the server isn't using index.php as the default. Confirm index.php is in public_html.
Error establishing a database connection
- Check database name, user, password, and host in
wp-config.php - Confirm the MySQL user has access to the database
- Contact support if the database isn't active on your plan
Blank page or 500 error
- Check PHP version (WordPress recommends PHP 8.x)
- Ensure the FTP upload completed without corrupted files
- Check error logs in your hosting panel
File permissions
Folders usually 755, files 644. Avoid 777 for security.
Manual install vs one-click
Manual FTP install is useful when:
- You want the latest version immediately
- You're migrating from another server
- The auto-installer fails or isn't available
- You want to learn WordPress file structure
Need WordPress hosting?
Battlehorns offers hosting with PHP, MySQL, and FTP/SFTP for gaming communities, personal projects, and WordPress sites.
View hosting plans · My services · FTP FileZilla tutorial · Support
Images: WordPress Developer Handbook. Tutorial adapted for Battlehorns customers.
Comments (0)
Sign in to comment. Register
No comments yet.