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.
151
CentOS 7 Problems / Re: Cron Not Working, Error "No such file or directory"
« on: May 23, 2022, 02:24:01 AM »
Seems like that cron is a remnant from an old cpanel server. Can you post the output of crontab -l
152
SSL / Re: Let's Encrypt DST Root CA X3 expiry Sept 30th 2021 needs sorting
« on: May 14, 2022, 02:31:12 AM »
This is a problem with the computers Root Certificates, not a problem with CWP
153
Installation / Re: Hello, Having Hard Time in Redirection with Deafult Page
« on: May 13, 2022, 06:08:12 PM »
The Default page is the page added to /home/(user)/public_html when the account is created. If you have edited the page, and its not working, you probably need to rebuild all of the vhosts
154
Addons / Re: CONSIDER ADDING A FEATURE TO ENABLE/DISABLE DOWNLOAD OF FILES/DATABASE
« on: May 13, 2022, 06:21:29 AM »
YOu can create a database user for them to access mysql with a different password. They can access that via (hostname)/pma
155
Addons / Re: CONSIDER ADDING A FEATURE TO ENABLE/DISABLE DOWNLOAD OF FILES/DATABASE
« on: May 12, 2022, 02:43:23 AM »
It's called don't give them the credentials to access the backend while developing. Or invest in ionCube and encode your work, and license it for a time period.
156
DNS Manager / DNS manager is broken
« on: May 03, 2022, 04:17:59 AM »
/admin/loader_ajax.php?ajax=slave_dns_admin gives a 404 error on trying to push domains
157
Suggestions / Re: Enable/Disable goaccess web statistics per account
« on: May 01, 2022, 11:56:05 AM »
I don't know if it will crash anything, but if someone wants to try.
chattr -R +i /home/{acct}/cwp_stats might prevent goaccess from creating the files
chattr -R +i /home/{acct}/cwp_stats might prevent goaccess from creating the files
158
CentOS 7 Problems / Re: Apache won't start because it is trying to get localhost.crt
« on: April 30, 2022, 05:03:41 AM »
apache should be in /usr/local/apache
so you had a previous version of apache installed before you installed CWP. The directions clearly state that you must have a clean install OS with NO software installed.
On a side note, you can simply "mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.bak"
so you had a previous version of apache installed before you installed CWP. The directions clearly state that you must have a clean install OS with NO software installed.
On a side note, you can simply "mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.bak"
159
PHP / Re: PHP-FPM not working, 503 Service Unavailable
« on: April 29, 2022, 12:32:10 PM »
systemctl status php-fpm74
if it is stopped, start it
systemctl start php-fpm74
if it's alive, try restarting it
systemctl restart php-fpm74
if that doesn't work, please post the contents of
journalctl -xeu php-fpm74
if it is stopped, start it
systemctl start php-fpm74
if it's alive, try restarting it
systemctl restart php-fpm74
if that doesn't work, please post the contents of
journalctl -xeu php-fpm74
160
E-Mail / Re: too much mail from
« on: April 28, 2022, 01:55:12 AM »
What is your "Hourly Emails" set at for the package the account has?
161
E-Mail / Re: too much mail from
« on: April 27, 2022, 12:28:52 PM »
If you are being blocked by a remote host, there is nothing you can do on your end. Gmail is good for this. If you send more than 100 emails in a day, no matter how legit they are, they put a temporary block on your server. IF your client is a high volume email sender, then they need to use a high volume mail server that the big tech companies don't throttle. I'm sure that's not what you want to hear, but it is the only option.
162
Suggestions / Re: Two-Factor Authentication (2FA) - Google Authenticator for CWP and CWP PRO !
« on: April 22, 2022, 12:30:16 PM »
2031 is closed to all traffic not "ALLOWED" through the firewall. By having a DDNS address in the allow list, you are bypassing the firewall.
Ports 443, and 80 are run by different software than all of the other ports. Therefor, if you don't add the port on the end of the URL, those softwares don't know how to route them to cwpsrv.
Ports 443, and 80 are run by different software than all of the other ports. Therefor, if you don't add the port on the end of the URL, those softwares don't know how to route them to cwpsrv.
163
DKIM / Re: How to setup DKIM for domain using remote DNS servers
« on: April 21, 2022, 12:11:51 AM »
admin/index.php?module=dns_list_zones
Find the domain you want the records for, then click edit recoreds.
For DKIm, you are looking for the record "default._domainkey"
Find the domain you want the records for, then click edit recoreds.
For DKIm, you are looking for the record "default._domainkey"
164
DKIM / Re: How to setup DKIM for domain using remote DNS servers
« on: April 19, 2022, 08:09:28 PM »
You need to copy the records over to godaddy, who hosts your actual DNS. You should create the TXT records for SPF, DKIM and any other pertinent records, and give them the same values as the ones on your CWP server.
165
MySQL / Re: How connect to database in another site of same server
« on: April 19, 2022, 03:47:30 AM »
You cannot access /home/A from /home/B by default for security purposes. You have a few options.
1) Copy the settings.inc from /home/A to /home/B and chown the files to B
2) You can use "setfacl" to give B permission to A's files
3) You can make B part of A's group in linux "usermod -G A"
1) Copy the settings.inc from /home/A to /home/B and chown the files to B
2) You can use "setfacl" to give B permission to A's files
3) You can make B part of A's group in linux "usermod -G A"