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.
61
SSL / Re: Probelm with renewing SSL certs
« on: May 13, 2025, 12:24:41 AM »
Is your firewall allowing in & outbound port 80? Is iptables configured similarly to this:
Code: [Select]
iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
You could temporarily disable the CSF firewall (csf -x) and test a renewal, either from the CWP web GUI or via Netino's script. This would tell you if it is a firewall problem, which it would appear to be.
62
CentOS-WebPanel Bugs / Re: Firewall manager Disabled Bug
« on: May 10, 2025, 05:27:04 PM »
Yes, a known bug -- if you disable or restart the firewall via the CLI, the web GUI gets out of sync with its actual state. In other words, the devs need to test if it's running and display its actual current state.
63
E-Mail / Re: ClamAV Failed
« on: May 08, 2025, 01:49:28 PM »
Looks like you have some fundamentals to set up with DNS. Choose where you want to manage your DNS -- CWP? Contabo? A DDoS resilient provider like Cloudflare? You'll need some glue records and all the basic records in place (also DKIM and SPF). At least you have a PTR record (reverse DNS) in place for your IP address, provided by Contabo.
64
Installation / Re: install in centos 9
« on: May 08, 2025, 02:59:32 AM »
CentOS 9 Stream is not recommended as the foundation for a stable production server. Stream is a rolling release, beta-quality OS. Look to AlmaLinux 9 if you need a good EL9 server foundation.
65
Aplications / Re: 2fa not working
« on: May 04, 2025, 02:45:29 AM »
Not sure if rcschaff's CWP module from 2020 still works:
https://forum.centos-webpanel.com/new-modules/module-cwp_2fa/
https://github.com/rcschaff82/cwp_2fa
https://forum.centos-webpanel.com/new-modules/module-cwp_2fa/
https://github.com/rcschaff82/cwp_2fa
66
Suggestions / Re: pause a domain
« on: May 02, 2025, 09:26:34 PM »
Only chance of getting their ear is to submit something via the contact form:
https://control-webpanel.com/contact
https://control-webpanel.com/contact
67
E-Mail / Re: SpamHause x SpamAssassin
« on: May 01, 2025, 05:13:20 PM »
SpamAssassin is a locally-run spam filter that processes, scores, and can act (tag, move to another mailbox, delete) on incoming mail.
Spamhaus is a remote, cloud run RBL (real-time blacklist) that you can integrate in your mail delivery chain (SMTP server). Spamhaus requires a free API key to use it, so you must sign up for an account from them.
I use both in my servers since each serves an important part of the anti-UCE battle. (On another dedicated mail server, I employ ASSP -- Anti-Spam SMTP Proxy and it blocks 75% of incoming non-local mail; highly effective!)
Spamhaus is a remote, cloud run RBL (real-time blacklist) that you can integrate in your mail delivery chain (SMTP server). Spamhaus requires a free API key to use it, so you must sign up for an account from them.
I use both in my servers since each serves an important part of the anti-UCE battle. (On another dedicated mail server, I employ ASSP -- Anti-Spam SMTP Proxy and it blocks 75% of incoming non-local mail; highly effective!)
68
Information / Re: Urgent: Paid Support Issue with Ticket #487931 – Immediate Assistance Required
« on: May 01, 2025, 01:10:19 PM »
Free community support is available here in the forum. Usually you can resolve a problem with the help here in 1/2 a day.
69
Information / Re: linode installation
« on: May 01, 2025, 12:31:17 PM »
AlmaLinux 8 or 9 is recommended for a new production server (8 if you need CWP->CWP migration). Starburst has an updated installer script for 8 with MariaDB:
https://starburst.help/control-web-panel-cwp/control-web-panel-cwp-install-tutorials/updated-cwp-installer-script-for-almalinux-8-with-mariadb-10-6/
https://starburst.help/control-web-panel-cwp/control-web-panel-cwp-install-tutorials/updated-cwp-installer-script-for-almalinux-8-with-mariadb-10-6/
70
CentOS-WebPanel Bugs / Re: BUG: DNS Zone SPF (user account)
« on: April 30, 2025, 01:06:58 PM »
When entering your TXT record for SPF, make sure it is in quotes to preserve special characters:
Code: [Select]
@ 14400 IN TXT "v=spf1 +a +mx +ip4:100.100.100.100 ~all"
You may need to manually clean up the malformed zone records and get rid of these errant characters and then restart BIND:Code: [Select]
nano /var/named/yourdomain.com.db
service named restart
71
E-Mail / Re: Email upload not working
« on: April 30, 2025, 12:43:06 AM »
On my systems, I typically have 8.2 as the system PHP version (for CLI), There's nothing you can do about CWP using its internal PHP 7.2 version. After that, I use PHP-FPM as it is more performant and allows granular selection per-site. For example on one server, I have one customer using PHP 5.4 for a legacy site, several WordPress sites that need 7.4 for full extension compatibility, other WordPress sites running 8.1 (for the best mix of compatibility/modern features/security), and one Drupal site running 8.2. Each version has its own php.ini for customization.
72
E-Mail / Re: Email upload not working
« on: April 29, 2025, 11:45:05 PM »
Your picture should indicate which version is selected for the main system PHP version using the PHP Switcher (or forced version). However, CWP uses its own dedicated version of PHP (/usr/local/cwp/php71) that can run undisturbed -- it is actually PHP 7.2 even though it is labeled as 7.1.
After editing PHP parameters that affect CWP Services (including Roundcube), restart CWP services:
After editing PHP parameters that affect CWP Services (including Roundcube), restart CWP services:
Code: [Select]
service cwp-phpfpm restart
service cwpsrv restart
73
Backup / Re: backup issues - it was not possible to make the ssh connection
« on: April 29, 2025, 10:55:41 PM »
The user you created is set to have shell access in the CWP account panel? Or did you create the user outside of CWP, using standard tools such as adduser? And you aren't making use of AllowUsers or AllowGroups in / etc / ssh / sshd_config?
Test interactively first with a shell session (don't be afraid of calling multiple -v flags in your connection attempt to get some very verbose info about what stage things fail: ssh -v -v -v user@server.com. Then try the same credentials with sftp.
Test interactively first with a shell session (don't be afraid of calling multiple -v flags in your connection attempt to get some very verbose info about what stage things fail: ssh -v -v -v user@server.com. Then try the same credentials with sftp.
74
E-Mail / Re: Email upload not working
« on: April 29, 2025, 10:48:37 PM »
Are you editing the php parameters in /usr/local/cwp/php71/php.ini ?
75
Apache / Re: AH00493: SIGUSR1 received. Doing graceful restart
« on: April 29, 2025, 10:52:41 AM »
Cron (anacron) runs overnight at 3 am. Is that when you are seeing this? For me apache reloads with the logrotate run that is called at that time. And as mentioned in the thread, there is the AutoSSL certificate renewals. Do your sites not come up afterward? Do you have to manually tend to things?