Show Posts

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.


Messages - overseer

Pages: [1] 2 3 ... 91
1
Aplications / Re: 2fa not working
« on: May 04, 2025, 02:45:29 AM »

2
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

3
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!)

4
Free community support is available here in the forum. Usually you can resolve a problem with the help here in 1/2 a day.

5
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/

6
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

7
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.

8
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:
Code: [Select]
service cwp-phpfpm restart
service cwpsrv restart

9
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.

10
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 ?

11
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?

12
CentOS 8 Problems / Re: ImageMagick installation on Almalinux 8
« on: April 28, 2025, 12:55:29 PM »
I replied to your other post, too. Probably best to create a new thread like this for the modern OSes rather than resurrect a zombie thread like that for CentOS 7. Under AlmaLinux 8/9, it should go something like this:
Code: [Select]
dnf update -y
dnf install epel-release -y
dnf install ImageMagick ImageMagick-devel -y
dnf install php php-devel php-pear -y
pecl install imagick
[Add the extension "extension=imagick.so" to your desired PHP configuration -- php.ini]
systemctl restart httpd
systemctl restart php-fpmXX

13
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« on: April 28, 2025, 12:46:57 PM »
It wouldn't appear that IPv6 is enabled on your system, but you can double check here:
Code: [Select]
sysctl -a | grep -i ipv6
nmtui is a semi-graphical utility, so the procedure is not just a single command but a series of steps.
Invoke nmtui with sudo in a root shell: nmtui
Click on Edit a connection.
Select the interface you want to edit (eth0).
Go to IPv6 with the arrow keys on the keyboard.
Then select Disabled and click OK.
Run the ip a command from the terminal to confirm that IPv6 is no longer available.

14
PHP / Re: Install ImageMagick or GD ?
« on: April 28, 2025, 12:41:14 PM »
Under AlmaLinux 8/9 it would go something like this:
Code: [Select]
dnf update -y
dnf install epel-release -y
dnf install ImageMagick ImageMagick-devel -y
dnf install php php-devel php-pear -y
pecl install imagick
[Add the extension "extension=imagick.so" to your desired PHP configuration -- php.ini]
systemctl restart httpd
systemctl restart php-fpmXX

15
FTP / Re: FTP connection FAILED
« on: April 28, 2025, 10:55:29 AM »
Did you read through the wiki? For sure you would want TLS for FTP. Also, set the passive port range.
https://wiki.centos-webpanel.com/category/ftp

If the address is already in use (21), you need to find out what the conflict is or move the pure-ftpd config to operate on an alternate port.

Pages: [1] 2 3 ... 91