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.
601
New Modules / Re: [BUG - ERROR] Two Factor Authorization Mod - CWP_2FA by "rcschaff"
« on: May 03, 2020, 12:33:15 AM »
Ok. Verify that the API key has access to accounts-List
As for uninstall, I will create a script. I have already added it as an issue on the GitHub page.
As for uninstall, I will create a script. I have already added it as an issue on the GitHub page.
602
New Modules / Re: [BUG - ERROR] Two Factor Authorization Mod - CWP_2FA by "rcschaff"
« on: May 02, 2020, 04:16:25 PM »
That specific error has to do with not being able to pull a list of accounts from the api.
Could you verify that the API endpoint is eunning.
netstat -aptn | grep 2304
As for uninstall, you can manually reverse the steps of in install.sh, bit I will add an uninstall script soon.
Could you verify that the API endpoint is eunning.
netstat -aptn | grep 2304
As for uninstall, you can manually reverse the steps of in install.sh, bit I will add an uninstall script soon.
603
E-Mail / Re: can't log in to email "login failed"
« on: May 02, 2020, 02:37:46 AM »
The origional answer should not have been to delete/reinstall dovecot. Roundcube is a PHP script. If it couldn't access the storage engine, it was probably a permissions problem. If you reinstalled dovecot, but didn't configure it correctly, it has no idea what accounts are on the server. CWP uses Mysql to hold the account info, and if dovecot deleted that table on uninstall, you may have fubared your mail.
604
CSF Firewall / Re: Firewall suddenly blocking access to websites
« on: May 02, 2020, 02:34:47 AM »
check TCP_IN, TCP6_IN, TCP_OUT and TCP6_OUT to make sure the ports are open. then restart csf.
605
CentOS 7 Problems / Re: Mail Outgoing Working fine But Incoming is not [550 No Such User Here]
« on: May 02, 2020, 02:32:21 AM »
make sure postfix is running and can connect to mysql. Make sure dovecot is also running for local delivery.
606
FTP / Re: ERROR: Connection timed out after 20 seconds of inactivity
« on: May 02, 2020, 02:30:48 AM »
Try editing /etc/pure-ftp/pure-ftpd.conf
find # PassivePortRange 30000 50000
and uncomment it. Open those ports in CSF
find # PassivePortRange 30000 50000
and uncomment it. Open those ports in CSF
607
CentOS-WebPanel Bugs / Re: WebServers vhost templates not applied
« on: May 01, 2020, 06:00:59 PM »
Default vhost type should be set to php-fpm I believe.
608
Updates / Re: Default Apache Page on All Domains
« on: May 01, 2020, 01:39:06 AM »
systemctl status httpd
in CWP -> WebServers Settings -> Webservers Main COnfig
Check Rebuild all Vhosts and click save
in CWP -> WebServers Settings -> Webservers Main COnfig
Check Rebuild all Vhosts and click save
609
CentOS 7 Problems / Re: Server stop. After reboot CWP not work
« on: April 30, 2020, 04:24:06 AM »
Sounds like your system may have rebooted into recovery mode. Best to contact your hosting provider.
610
Updates / Re: Packages not getting updated
« on: April 29, 2020, 01:43:41 AM »
yum remove python36u-3.6.8-1.el7.ius.x86_64
yum -y update
yum -y install cmake3
yum -y update
yum -y install cmake3
611
CentOS-WebPanel Bugs / Re: CWP backup error
« on: April 29, 2020, 01:41:02 AM »
They are aware...
612
CentOS 6 Problems / Re: No Loader is installed, please try to run this command or contact support: sh /s
« on: April 28, 2020, 10:58:05 AM »
Hello,
Test what is the cwp PHP version and if it is updated to 7.2
/usr/local/cwp/php71/bin/php -v
PHP 7.2.30
if PHP was not updated to 7.2 then try manually
yum update cwpphp --enablerepo=cwp
**Manual update CentOS 7 (ignore if you have CentOS 6)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget static.cdn-cwp.com/files/cwp/el7/cwp-el7-0.9.8.961.zip
unzip -o -q cwp-el7-0.9.8.961.zip
rm -f cwp-el7-0.9.8.961.zip
```
**Manual update CentOS 6 (ignore if you have CentOS 7)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget dl1.centos-webpanel.com/files/cwp/cwp2-0.9.8.765.zip
unzip -o cwp2-0.9.8.765.zip
rm -f cwp2-0.9.8.765.zip
```
**Manual update for services (This steep must be done for CentOS 6 and 7)**
```
cd /usr/local/cwpsrv/var/services/
wget static.cdn-cwp.com/files/cwp/el7/cwp-services.zip
unzip -o -q cwp-services.zip
rm -f cwp-services.zip
```
Test if all is ok, it should run update without errors
```
sh /scripts/update_cwp
```
If you get error like:
> Cannot load the ionCube PHP Loader - it was built with configuration API320151012,NTS, whereas running engine is API320170718,NTS
then run this:
```
sed -i "s/ioncube_loader_lin_7.0/ioncube_loader_lin_7.2/g" /usr/local/cwp/php71/php.ini
sh /scripts/restart_cwpsrv
Test what is the cwp PHP version and if it is updated to 7.2
/usr/local/cwp/php71/bin/php -v
PHP 7.2.30
if PHP was not updated to 7.2 then try manually
yum update cwpphp --enablerepo=cwp
**Manual update CentOS 7 (ignore if you have CentOS 6)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget static.cdn-cwp.com/files/cwp/el7/cwp-el7-0.9.8.961.zip
unzip -o -q cwp-el7-0.9.8.961.zip
rm -f cwp-el7-0.9.8.961.zip
```
**Manual update CentOS 6 (ignore if you have CentOS 7)**
```
chattr -i -R /usr/local/cwpsrv/htdocs
cd /usr/local/cwpsrv/htdocs
wget dl1.centos-webpanel.com/files/cwp/cwp2-0.9.8.765.zip
unzip -o cwp2-0.9.8.765.zip
rm -f cwp2-0.9.8.765.zip
```
**Manual update for services (This steep must be done for CentOS 6 and 7)**
```
cd /usr/local/cwpsrv/var/services/
wget static.cdn-cwp.com/files/cwp/el7/cwp-services.zip
unzip -o -q cwp-services.zip
rm -f cwp-services.zip
```
Test if all is ok, it should run update without errors
```
sh /scripts/update_cwp
```
If you get error like:
> Cannot load the ionCube PHP Loader - it was built with configuration API320151012,NTS, whereas running engine is API320170718,NTS
then run this:
```
sed -i "s/ioncube_loader_lin_7.0/ioncube_loader_lin_7.2/g" /usr/local/cwp/php71/php.ini
sh /scripts/restart_cwpsrv
613
PHP / Re: CWP7.Pro Error | Unable to Login Admin Panel
« on: April 28, 2020, 10:55:47 AM »
Follow the directions from my post above.
614
Addons / Re: Error with eXtplorer Addons - Open Page White
« on: April 28, 2020, 09:48:06 AM »
It won't appear in your user files. It's part of the software.
It's not an actual File Manager per se, but more like a script installer.
It's not an actual File Manager per se, but more like a script installer.
615
CentOS 7 Problems / Re: Help SQL CWP
« on: April 28, 2020, 09:13:12 AM »
Step 1: Select Database
Step 2: CLick Privileges

Step 3: Find the user name
Step 4: Click Edit Privileges

Step 5: Click Databases

Step 6: Select your Database
Step 7: Make sure Data and Struction have all options checked
Step 2: CLick Privileges

Step 3: Find the user name
Step 4: Click Edit Privileges

Step 5: Click Databases

Step 6: Select your Database
Step 7: Make sure Data and Struction have all options checked
