WPanel forum

WPanel Installation Guide

Feb 20, 2026 67 views
Step 1: Download the installation package from the client area:
https://cust.wpanel.net/customers/downloads.php

Step 2: You will find a file named “WPanel_Full_Bundle.zip”. Upload this file to your server using your preferred method, such as FTP, or through the terminal using this command:

scp -r "C:\Files\FolderName\WPanel_Full_Bundle.zip*" root@177.0.0.1:/var/www/xxxx.net/


Replace:

C:\Files\FolderName\ with the directory path where you saved the installation package.
177.0.0.1 with your own server IP address.
xxxx.net with the domain or folder where you want to install the system.

Step 3: Extract the installation files.

Navigate to the target directory:

cd /var/www/xxxx.net/

Extract the main bundle:
unzip WPanel_Full_Bundle.zip

Extract the core system files:
unzip demoWP.zip

Extract the installer folder:
unzip install.zip

Move all system files into the current directory:
cp -r demoWP/* .

Clean up unnecessary files and folders:
rm -rf demoWP demoWP.zip install.zip WPanel_Full_Bundle.zip

Verify that no extra files or folders remain:
ls -l


Step 4: Complete the installation via the following link:
https://xxxx.net/install/

Before running the installer, make sure to read the Installation_Guide folder included in the package and apply the required configurations.

One essential step is granting database user privileges:
GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost' WITH GRANT OPTION; 
FLUSH PRIVILEGES;

Replace user with the actual database username you plan to use for the installation.

Don’t forget to adjust folder permissions as mentioned in the installation notes.

Best regards,
Saleh

Replies (0)

Join the Conversation

You must be logged in to post a reply and participate.