WordPress Installation
WordPress is the world's most popular content management system (CMS).
Method 1: Automatic Installation (Recommended)
CloudWeb provides easy WordPress installation directly from the panel:
- Log in to the user panel
- Select your hosting
- Go to the Apps tab
- Click Install next to WordPress
- Fill in required details (site name, admin account)
- Wait for installation to complete
Method 2: Manual Installation
Step 1: Download WordPress
Connect via SSH and download WordPress:
cd /var/www/html
wget https://wordpress.org/latest.tar.gz
tar -xzf latest.tar.gz
mv wordpress/* .
rm -rf wordpress latest.tar.gz
Step 2: Set Document Root
WordPress expects files in the root directory. Set Document Root to empty value (dot) in the panel.
Step 3: Create Database
Enable MySQL in the panel and note down the credentials.
Step 4: Run the Installer
- Visit
https://your-domain.com - Select language
- Enter database details:
- Database name
- Username
- Password
- Database host:
mysql - Table prefix:
wp_
- Click Run the installation
- Fill in site details and create admin account
Step 5: Fix Permissions
fix_permissions
After Installation
- Admin area:
https://your-domain.com/wp-admin - Set permalinks in Settings → Permalinks
- Install a security plugin (e.g., Wordfence)
Was this article helpful?
Your feedback helps us improve our documentation