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.
481
MySQL / Re: upgraded MariaDB, and to 10.11and does not recognize the database....
« on: June 03, 2025, 12:09:58 AM »
You didn't miss the last step? And you are indeed on EL9 (AlmaLinux 9)?
Code: [Select]
mysql_upgrade --force
482
Postfix / Re: Error found - Mail Server Manager
« on: June 01, 2025, 11:45:07 AM »
To further reduce spam, consider this stanza in main.cf:
Code: [Select]
smtpd_sender_restrictions =
permit_mynetworks,
permit_sasl_authenticated,
check_sender_access pcre:/etc/postfix/reject_domains hash:/etc/postfix/sender_access,
reject_unknown_sender_domain,
reject_unknown_reverse_client_hostname,
reject_unknown_client_hostname
483
CentOS 7 Problems / Re: PHPDefender permission denied
« on: June 01, 2025, 12:53:48 AM »
AI bot?
484
E-Mail / Re: ClamAV not working
« on: May 31, 2025, 01:54:57 PM »
https://www.linux.com/training-tutorials/using-clamav-kill-viruses-postfix/
You can also make use of postfix's built-in header checks to reject bad attachments. Since the ransomware outbreaks of the last decade or more, I've even had to block .zip files to prevent users from shooting themselves in the foot by opening zipped bad attachments:
You can also make use of postfix's built-in header checks to reject bad attachments. Since the ransomware outbreaks of the last decade or more, I've even had to block .zip files to prevent users from shooting themselves in the foot by opening zipped bad attachments:
Quote
Mime Header Checks
In the mime_header_checks file, you will place a restriction for any file extensions that you do not want to have passing through your system. For example:
/name=[^>]*\.(bat|com|exe|dll|zip)/ REJECT
This will reject any messages that have attachments whose files end in .bat, .com, .exe, .dll, or .zip.
485
Installation / Re: AL10 Install Problem
« on: May 31, 2025, 01:10:25 PM »
TBE -- to be expected. Some more transparency and communication from the devs would be very desirable and would assure other current & future customers. A roadmap, changelogs, a dev blog... anything would be good.
486
Addons / Re: Web Analytics for CWP
« on: May 31, 2025, 11:59:21 AM »
Here's how to update GoAccess under CentOS 7:
https://forum.centos-webpanel.com/informations/goaccess-geo-ip-location/msg50684/#msg50684
I've also used Webalizer before on a dedicated server; it wasn't difficult to setup. And long ago I've used AWstats, but don't like it as well -- very "heavy" and slow.
https://forum.centos-webpanel.com/informations/goaccess-geo-ip-location/msg50684/#msg50684
I've also used Webalizer before on a dedicated server; it wasn't difficult to setup. And long ago I've used AWstats, but don't like it as well -- very "heavy" and slow.
487
CentOS-WebPanel Bugs / Re: BUG: DNS Zone SPF (user account)
« on: May 30, 2025, 12:11:34 AM »
Temporary workaround: use -all instead of ~all.
489
Information / Re: Well, it's happened... RHEL 10 has been released...
« on: May 28, 2025, 10:58:02 AM »
Let the fun begin!
490
CentOS-WebPanel Bugs / Re: website url end with 'blog' gives error of Forbidden
« on: May 28, 2025, 10:56:16 AM »
Details are scant. Are you checking the domain error logs? What OS are you on? CWP Pro? Are you running under php-fpm or PHP CGI? Is this Wordpress? It wouldn't seem to be default behavior. Have you put in redirects that might come into play here?
491
Updates / Re: CWP Update?
« on: May 28, 2025, 12:33:20 AM »
Staying right here unless CWP folds and closes up shop. (Mark Twain's quip is usually apropos: Rumors of its demise are greatly exaggerated.[/i])
492
MySQL / Re: CWP Pro in Almalinux 8: Skip MariaDB offering to upgrade to almost same version
« on: May 27, 2025, 12:44:24 PM »
They're not needed unless you need them 
Seriously though, I would install MariaDB-backup. It is included in a a common full-featured install of MariaDB:

Seriously though, I would install MariaDB-backup. It is included in a a common full-featured install of MariaDB:
Code: [Select]
yum install MariaDB-server galera-4 MariaDB-client MariaDB-shared MariaDB-backup MariaDB-common
493
PHP Selector / Re: phpfm not work
« on: May 27, 2025, 12:40:36 PM »
I guess when you're establishing a major new branch version of PHP, it can be expected that you will need to do some housekeeping. This does give you control over what versions of PHP are available to which users. This perl one-liner takes care of updating the user conf for you:
Code: [Select]
cp -R /opt/alt/php-fpm82/usr/etc/php-fpm.d/users /opt/alt/php-fpm83/usr/etc/php-fpm.d
perl -p -i -e 's/82/83/' /opt/alt/php-fpm83/usr/etc/php-fpm.d/users/*.conf
service php-fpm83 restart
494
E-Mail / Re: How to configure Spamassassin [updated]
« on: May 27, 2025, 10:54:39 AM »
Mine is owned by nobody:nobody with 755 permissions
495
MySQL / Re: CWP Pro in Almalinux 8: Skip MariaDB offering to upgrade to almost same version
« on: May 26, 2025, 01:29:22 PM »
You could try the relevant portion of the guide pertaining to the server section. I followed the whole thing at once.
