Control Web Panel

WebPanel => Addons => Topic started by: semin a.s on September 22, 2016, 10:03:37 AM

Title: wordpress installation
Post by: semin a.s on September 22, 2016, 10:03:37 AM
Anybody please tell me the steps for installing wordpress on a domain via cwp. 
Title: Re: wordpress installation
Post by: Webbanditten on September 23, 2016, 12:59:01 PM
No offense, but if you have to brains to install centos-webpanel you can install Wordpress as well...

1. Download Wordpress
2. Create the User on CWP
3. Connect through an FTP Client for example Filezilla
4. Upload files
5. Follow the simple instructions on the screen.

Notice - You have to login to your MySQL Database and create a new database for Wordpress, this can be done through PHPMyAdmin or another client. Same username and password as to the user you created earlier.

Kind regards
Patrick
Title: Re: wordpress installation
Post by: iqbalthakur on October 18, 2016, 12:58:46 AM
PLEASE ALSO  SEE the following link:-
http://forum.centos-webpanel.com/aplications/how-to-install-wordpress-to-linux-server/msg80/#msg80 (http://forum.centos-webpanel.com/aplications/how-to-install-wordpress-to-linux-server/msg80/#msg80)

[/size]This is tutorial how to install and setup word-press website on linux server with CentOS Web Panel (CWP)


Steps:
1. Create New Account from CWP under Accounts Menu
2. Create MySQL Database from CWP under SQL Services --> MySQL Manager --> Create Database and User
3. Download Wordpress installation files in users public_html folder
4.Install from SSH (do not forget to replace USERNAME with your users username)


Code: [Select]
cd /home/USERNAME/public_html/


wget http://wordpress.org/latest.tar.gz


tar xvzf latest.tar.gz


yes | cp -a wordpress/* ./
chown -R USERNAME:USERNAME *

if you want to move for  wordpress folder to extract in that folder than
Code: [Select]
mv -f wordpress/* .
Now done with wordpress installantion.So fast and easy by puTTy
after Install,if  you want to remove the following than this command:-
Code: [Select]
rm -Rf wordpress
rm -Rf latest.tar.gz


If you want to unzip any thing then try this
Code: [Select]
unzip latest.zip
Title: Re: wordpress installation
Post by: botonakis on January 30, 2017, 05:08:43 PM
No offense, but if you have to brains to install centos-webpanel you can install Wordpress as well...

1. Download Wordpress
2. Create the User on CWP
3. Connect through an FTP Client for example Filezilla
4. Upload files
5. Follow the simple instructions on the screen.

Notice - You have to login to your MySQL Database and create a new database for Wordpress, this can be done through PHPMyAdmin or another client. Same username and password as to the user you created earlier.

Kind regards
Patrick

Sometimes you need to click "Fix Permissions" from the admin to fix some 403 errors. But in general these are the steps.