This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
1216
CentOS 7 Problems / Re: Server Internal Error 500
« on: September 05, 2017, 10:59:57 AM »
you checked error_log file at end of the file?
live monitoring of the log from the shell via ssh
live monitoring of the log from the shell via ssh
Code: [Select]
tail -f /usr/local/apache/logs/error_log
1217
CentOS 7 Problems / Re: Cannot Access CWP URL | IP Address:2030
« on: September 04, 2017, 01:09:24 PM »
do you maybe know what version you had on that server since that looks like an very old version without update ?
you can also check your cwp version from the shell
you can also check your cwp version from the shell
Code: [Select]
cat /usr/local/cwpsrv/htdocs/resources/admin/include/version.php
1218
CentOS 7 Problems / Re: PHPMyAdmin giving 502 Bad gateway
« on: September 04, 2017, 12:58:34 PM »
yes from the shell/console by using ssh access as root user.
1219
E-Mail / Re: Redirect Webmail
« on: September 04, 2017, 09:48:59 AM »
by using htaccess, you can create webmail folder and add into it file .htaccess with the following content
don't forget to replace this domains, RewriteRule is destination.
Code: [Select]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.net/$1 [L,R=301,NC]don't forget to replace this domains, RewriteRule is destination.
1220
How to / Re: Whats the best way to migrate fron CentOS 6 to CentOS 7 with CWP
« on: September 04, 2017, 09:44:10 AM »
you should wait more for a short time as the new cwp is coming soon and this should have easy migration tools.
1221
MySQL / Re: getting errors when trying to "stop" the mysql service
« on: September 04, 2017, 09:42:56 AM »
you can't stop mysql since cwp is using it and mail server also.
You can stop mysql only if you will not use cwp and emails on that server.
You can stop mysql only if you will not use cwp and emails on that server.
1223
CentOS 6 Problems / Re: server down after change server ip ? apache error
« on: September 04, 2017, 09:38:39 AM »
you need to check apache error_log
/usr/local/apache/logs/error_log
/usr/local/apache/logs/error_log
1224
PHP / Re: Phpmyadmin "502 Bad Gateway" Error
« on: September 04, 2017, 09:36:49 AM »
check that your packages are update and then restart the server
yum -y update
if the issue continues try this
yum reinstall cwpsrv
yum reinstall cwpphp
....after that again restart of the services or reboot
yum -y update
if the issue continues try this
yum reinstall cwpsrv
yum reinstall cwpphp
....after that again restart of the services or reboot
1225
SSL / Re: SSL Problem with CWP Client (as opposed to Admin)
« on: September 04, 2017, 09:32:22 AM »
no you can't do that, you need to use server hostname for ssl connection to cwp.
In fact you could do that but you would have many manual work to setup this for each domain
If you want to play you can check this config locations
/usr/local/cwpsrv/conf/
/usr/local/cwpsrv/conf.d/
In fact you could do that but you would have many manual work to setup this for each domain
If you want to play you can check this config locations
/usr/local/cwpsrv/conf/
/usr/local/cwpsrv/conf.d/
1226
SSL / Re: CAN'T GET SSL TO WORK.. TRIED EVERYTHING!
« on: September 04, 2017, 09:27:53 AM »
since this is AWS you probably have private ip instead of public on your server and that would mean you would need to activate NAT in the cwp.
You can check this
http://wiki.centos-webpanel.com/default-page-displayed-for-all-domains
You can check this
http://wiki.centos-webpanel.com/default-page-displayed-for-all-domains
1227
CentOS 7 Problems / Re: Server Internal Error 500
« on: September 04, 2017, 09:25:20 AM »
this looks like an limit of processes or something similar, try checking apache logs and try increasing number of processes for that user by editing it in the CWP as root.
Location of apache logs
/usr/local/apache/logs/
Location of apache logs
/usr/local/apache/logs/
1228
CSF Firewall / Re: xtables lock
« on: September 04, 2017, 09:22:58 AM »
have you tried to run configuration test script to see if your server has all required ?
1229
Installation / Re: CWP PRO
« on: September 04, 2017, 09:21:30 AM »
you need to request ip change via ticket if you have a new server
1230
Backup / Re: Database backup is not generated (file size 0)
« on: September 04, 2017, 09:19:03 AM »
try running backup manually or test mysqldump by yourself
MySQL dump examples
http://wiki.centos-webpanel.com/import-export-mysql-database
Code: [Select]
/usr/local/cwp/php71/bin/php /usr/local/cwpsrv/htdocs/resources/admin/include/cron_backup.phpMySQL dump examples
http://wiki.centos-webpanel.com/import-export-mysql-database
