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.
1
MySQL / Re: MySQL - BAD CONFIGURATION DETECTED
« on: Today at 12:41:59 PM »
Check the config file (or its directories) isn't group or other writeable but also make sure the file is readable by the mysql user. The easy way to check the last bit is with
Code: [Select]
sudo -u mysql my_print_defaults --mariadbd
so see what configuration options are read. Also run Code: [Select]
journalctl -u mariadb.service -n 30
-- failing to read configuration files is normally a warning.
2
Installation / Re: Cron jobs from installation
« on: Today at 12:37:30 PM »
root crontab?
Code: [Select]
1 2 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh/cwp_certs" > /dev/null
2 0 0 * * * /usr/local/cwp/php71/bin/php /usr/local/cwpsrv/var/services/user_files/modules/backups/cron_autobackup.php
3 00 03 * * * /usr/local/cwp/php71/bin/php -d max_execution_time=18000 -q /usr/local/cwpsrv/htdocs/resources/admin/include/cron_autossl_all_domains.php
3
CentOS 8 Problems / Re: CWP + ALmalinux 8 + updated Mariadb 11.4.5
« on: Today at 12:35:40 PM »
MariaDB is deprecating the "mysql" binary references, preferring their own name/branding. So yes, symlink if you need the "drop-in" replacement names or due to web developer familiarity.
5
Migration from other control panels / Re: CWP to CWP migration error in transfer file
« on: March 29, 2025, 11:52:13 AM »
This is used as their bug report form:
https://control-webpanel.com/contact
I would open a support ticket with them. I will be doing a migration soon and see if I can replicate your issue or if it goes smoothly.
https://control-webpanel.com/contact
I would open a support ticket with them. I will be doing a migration soon and see if I can replicate your issue or if it goes smoothly.
6
Migration from other control panels / Re: CWP to CWP migration error in transfer file
« on: March 28, 2025, 03:56:56 PM »
Yes, you are probably uncovering a bug, or at least something that doesn't cover all conditionals.
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?
are you obfuscating the username='user_name' part of the log you posted?
and what is the contents of accounts.ini file?
7
Updates / Re: MariaDB error preventing other updates
« on: March 27, 2025, 05:30:05 PM »
Your MariaDB version is EOL and needs to be manually updated.
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
8
Nginx / Re: Restrict access to a cwp_service
« on: March 27, 2025, 05:28:46 PM »
As an aside, does anyone actually use an index file named "index.htm"? I have deleted that possibility from my servers ages ago and only support index.php and index.html as possibilities for the index directive.
9
Apache / Re: How to stop malicious scans
« on: March 27, 2025, 05:24:16 PM »
Also consider installing Wordfence on the affected WP installs. It will block bad actors like this.
But Netino's solution is a good general purpose block for bots without user agent strings.
But Netino's solution is a good general purpose block for bots without user agent strings.
10
Problems on other RedHat linux servers / Re: error_log: binary file matches
« on: March 26, 2025, 09:24:50 PM »
Built-in CWP terminal, or SSH session? Generally, you should not be hard-coding the TERM value. Linux tries very hard to set it to a sane value depending on things like which terminal you are actually using.
You can always remove the log file:
You can always remove the log file:
Code: [Select]
rm -f /usr/local/cwpsrv/logs/error_log
or truncate it to zero bytes:Code: [Select]
truncate -s0 /usr/local/cwpsrv/logs/error_log
11
Nginx / Re: Restrict access to a cwp_service
« on: March 26, 2025, 09:19:45 PM »
Would the CSF firewall work for you, or are you trying to be very selective about individual services?
12
Problems on other RedHat linux servers / Re: error_log: binary file matches
« on: March 25, 2025, 09:21:33 PM »
What is the context of your question? What were you doing?
13
CSF Firewall / Re: Firewall CFS not enable alma8 - al8 (fixed)
« on: March 24, 2025, 09:31:43 PM »
Sometimes the CWP web GUI gets out of sync if you do things behind its back in the CLI. Either reboot the whole server and start CSF from the web GUI, or try stopping in the CLI and then starting it up in the web GUI.
14
MySQL / Re: Alma 8.1 VM with latest CWP and MariaDB update problems
« on: March 22, 2025, 12:18:12 AM »
Upgrade MariaDB to 10.11 LTS version (post-install):
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
15
CentOS 8 Problems / Re: Problems installing packages and updates with Almalinux8
« on: March 20, 2025, 06:44:41 PM »But maybe some plugin need the older PHP.Yes, that's the root of the problem! Some legacy customer sites are running older versions of plugins and WP themes, all interdependent, so I have seen this on a shared server. 8.1 wasn't possible for full compatibility, so I had to run with php 7.4.
php 7.4 on AlmaLinux 9:
https://orcacore.com/install-php-7-4-almalinux-9/