Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Information / CWP 1.9 has been released!
« Last post by cHAp on August 22, 2026, 05:37:12 PM »
I just noticed that version 1.9 has been released following version 1.8. According to the changelog, the following fixes and updates were included in version 1.9:

ADMIN UPDATES & FIXES
– Backup system improvements
– PHP version adjustments: 8.3 for el7; 8.4 and 8.5 for el8 and el9
– Enhanced API security

USER UPDATES & FIXES
– Backup system improvements
– Security improvements
– Spam annihilator module
– WordPress tool module
– Improvements to the DNS editing module

Source: https://control-webpanel.com/changelog#1773753427572-9bf81bf4-f2d2
32
Ever bumped into someone in the most random spotlike a late-night grocery run or a half-empty trainand ended up having a surprisingly fun time together?
 
 
 
 
 
FixDim.com
Find a girl who wants the same as you
33
Updates / File Manager
« Last post by alexander999 on August 22, 2026, 11:53:05 AM »
Hi.
Please fix the text editor in the file manager; it's not very convenient to edit online when the line numbers are in the wrong place. It's in the main admin panel.
CWPpro version: 1.9
Distro Name: AlmaLinux release 9.8 (Olive Jaguar)
34
Hi,
Can someone explain how a developer can release an update without writing about the changes and fixes?
Recovery doesn't work. Version 1.9
Distro Name: AlmaLinux release 9.8 (Olive Jaguar)
35
Hi,

Please update to the latest version that was released today
36
Backup / Re: Error/bug when starting a backup
« Last post by josemnunez on August 21, 2026, 10:19:42 PM »
HI, please update to the latest version that was released today
37
Backup / Re: Error/bug when starting a backup
« Last post by diogo-plta on August 21, 2026, 08:58:01 PM »
Me too.

For me is worse. Check if you can restore an account. For me, it doesn't even list the accounts to restore:
https://forum.centos-webpanel.com/backup/new-backup-beta-restore-account-gt-does-not-list-accounts-to-restore/
38
Backup / NEW Backup (beta) / Restore Account -> Does not list accounts to restore
« Last post by diogo-plta on August 21, 2026, 08:50:36 PM »
Even after selecting the directory containing the backup files, the system does not list any accounts to restore. I tried changing the directory (by copying the files), but it still doesn't list them. What could be happening? I have used this feature to restore accounts successfully in the past, but it isn't working now.

I didn't find any errors in the log. Is there a specific log I should check?

CWPpro version: 1.8
AlmaLinux 8

I wish there were a CLI command for restoration.
39
On Rocky8 I got that message:
Quote
[POLICIES] WARNING: [ID:6/Name:Default Server Limit]=>(group:cwp_domains): - Source 'any' is not a valid specification
Any ideas why this appear ?
Thanks for help

cbpolicyd (also known as Policyd v2 or Cluebringer) is a policy server for the Postfix Mail Transfer Agent (MTA).

Its main function is to evaluate SMTP transactions in real time to enforce access control rules, sending quotas, and spam mitigation.

Main Features:
- Quota control: Limits the number of messages a user or domain can send per hour or day to stop compromised accounts.
- Access control: Allows accepting, rejecting, discarding, or redirecting emails based on different criteria.
- Greylisting and SPF: Helps filter spam by applying temporary delays to unknown senders and validating SPF records.
- HELO/EHLO checks: Analyzes the initial commands of the SMTP protocol.

The installation in the following script show the process:
/usr/local/cwpsrv/htdocs/resources/scripts/install_cbpolicyd

If installed, it's configured in /etc/cbpolicyd/cluebringer.conf.

There are a table 'policy_members' in 'postfix_policyd' database.

The error "Source 'any' is not a valid specification in cbpolicyd" occurs because the policy parser does not recognize the literal string 'any' inside a group context or policy member specification like cwp_domains. It expects explicit IP ranges, CIDR blocks, or valid internal group/domain tokens.

You can view this internal_ips to see what does it include, accessing mysql as root:

Code: [Select]
# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 120812
Server version: 10.6.28-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> select * from policy_members;
1|1||||0
2|2|%internal_ips,%internal_domains|!%internal_domains||0
3|3|!%internal_ips,!%internal_domains|%internal_domains||0
4|4|%internal_ips,%internal_domains|%internal_domains||0
5|5|@example.net|||0
6|6|any|!%internal_domains||0
MariaDB [(none)]> select * from policy_groups;
1|internal_ips|0|
2|internal_domains|0|
MariaDB [(none)]> select * from policy_group_members;
1|1|10.0.0.0/8|0|
2|2|@example.org|0|
3|2|@example.com|0|
(...)

You have error in some of these tables.
In the first example, you could execute:
Code: [Select]
MariaDB [(none)]> delete from policy_members where ID=1;

But your error is:
Code: [Select]
[ID:6/Name:Default Server Limit]=>(group:cwp_domains): - Source 'any' is not a valid specification

Seems related to some item 'cwp_domains'. You must check you database, to find it.
Note the id is 6

I don't know how you installed it, but you can reinstall it:
Code: [Select]
# /usr/local/cwpsrv/htdocs/resources/scripts/install_cbpolicyd reinstall
Or uninstall it:
Code: [Select]
# /usr/local/cwpsrv/htdocs/resources/scripts/install_cbpolicyd remove
Regards,
Netino
40
CentOS-WebPanel Bugs / Re: Nginx & Varnish & Apache
« Last post by overseer on August 20, 2026, 10:23:56 PM »
Very true. Varnish is more of an option of last resort to milk the most performance out of a server -- and the config complexity often isn't worth it. Stick with Nginx for the most bang for your buck. And agreed about Redis, but also add in a CDN like Cloudflare to the mix if the server doesn't "feel" fast.
Pages: 1 2 3 [4] 5 6 ... 10