Recent Posts

Pages: 1 [2] 3 4 ... 10
11
PHP / Re: any problems with PHP 8.3 and later?
« Last post by Starburst on December 05, 2025, 08:51:05 AM »
Besides 0.9.8.1219 is now 3 versions behind the official again.
The current version of 8.3.28, and CWP is stuck at 8.3.25.

You could manually upgrade to the current 8.3, 8.4 and/or 8.5, there are guides on AlphaGNU.
12
PHP / any problems with PHP 8.3 and later?
« Last post by venty on December 05, 2025, 07:30:41 AM »
Hi,

with CWP, version 0.9.8.1219 and AlmaLinux release 9.7 (Moss Jungle Cat), what is the recommended version of PHP to use and are there any problems with PHP 8.3 and later?

Thanks in advance!

BR
Venty
13
Installation / Re: Fresh install mesxes up already
« Last post by overseer on December 04, 2025, 08:48:44 PM »
But did you follow AlphaGNU's guide (and have a MariaDB.repo in place)?
14
Installation / Re: Fresh install mesxes up already
« Last post by DragoCom on December 04, 2025, 07:48:36 PM »
You could follow Wonder as he was following the AlphaGNU MariaDB upgrade guide. The only difference is he was having to disable the CWP repo before continuing with the process:

cp /etc/my.cnf /etc/my.cnf.bak
systemctl stop mariadb mysql mysqld
systemctl disable mariadb
rpm -e --nodeps $(rpm -qa | grep -i mariadb)
rpm -e --nodeps mysql-common mysql-libs mysql-devel
rpm --nodeps -ev MariaDB-server
rpm -e --nodeps mariadb-server
dnf module disable mariadb -y
yum clean all
nano /etc/yum.repos.d/cwp.repo
   Set enabled=0
Save changes, and then:
yum install MariaDB-server MariaDB-client MariaDB-devel MariaDB-shared net-snmp perl-DBD-MySQL -y
Then, very important:
nano /etc/yum.repos.d/cwp.repo
   Set enabled=1
Save changes
dnf --refresh update

Didn't take long for that to go sideways:


[root@viking ~]# cp /etc/my.cnf /etc/my.cnf.bak
[root@viking ~]# systemctl stop mariadb mysql mysqld
[root@viking ~]# systemctl disable mariadb
Removed /etc/systemd/system/multi-user.target.wants/mariadb.service.
Removed /etc/systemd/system/mysql.service.
Removed /etc/systemd/system/mysqld.service.
[root@viking ~]# rpm -e --nodeps $(rpm -qa | grep -i mariadb)
[root@viking ~]# rpm -e --nodeps mysql-common mysql-libs mysql-devel
[root@viking ~]# rpm --nodeps -ev MariaDB-server
error: package MariaDB-server is not installed
[root@viking ~]# rpm -e --nodeps mariadb-server
error: package mariadb-server is not installed
[root@viking ~]# dnf module disable mariadb -y
Last metadata expiration check: 3:16:44 ago on Thu 04 Dec 2025 05:24:14 PM CET.
Dependencies resolved.
===========================================================================================================
 Package                  Architecture            Version                   Repository                Size
===========================================================================================================
Disabling modules:
 mariadb                                                                                                 

Transaction Summary
===========================================================================================================

Complete!
[root@viking ~]# yum clean all
67 files removed
[root@viking ~]# nano /etc/yum.repos.d/cwp.repo
[root@viking ~]# yum install MariaDB-server MariaDB-client MariaDB-devel MariaDB-shared net-snmp perl-DBD-MySQL -y
AlmaLinux 8 - BaseOS                                                        28 MB/s |  49 MB     00:01   
AlmaLinux 8 - AppStream                                                     16 MB/s |  22 MB     00:01   
AlmaLinux 8 - Extras                                                        36 kB/s |  14 kB     00:00   
AlmaLinux 8 - PowerTools                                                    10 MB/s | 5.1 MB     00:00   
AlmaLinux 8 - PowerTools Source                                            335 kB/s | 144 kB     00:00   
AlmaLinux 8 - PowerTools debuginfo                                         2.4 MB/s | 930 kB     00:00   
Extra Packages for Enterprise Linux 8 - x86_64                              11 MB/s |  14 MB     00:01   
nginx repo                                                                 1.3 MB/s |  89 kB     00:00   
No match for argument: MariaDB-server
No match for argument: MariaDB-client
No match for argument: MariaDB-devel
No match for argument: MariaDB-shared
Package perl-DBD-MySQL-4.046-3.module_el8.6.0+2827+49d66dc3.x86_64 is already installed.
Error: Unable to find a match: MariaDB-server MariaDB-client MariaDB-devel MariaDB-shared
[root@viking ~]#
15
Updates / Re: Error during dnf -y update
« Last post by Starburst on December 04, 2025, 05:13:00 PM »
MariaDB 10.5 is EOL. You need to upgrade MariaDB up to 10.6.x or 10.11.x.

Agreed, but according to CWP, those are not supported versions of MariaDB...
16
Updates / Re: Error during dnf -y update
« Last post by cyberspace on December 04, 2025, 04:17:23 PM »
MariaDB 10.5 is EOL. You need to upgrade MariaDB up to 10.6.x or 10.11.x.
17
Installation / Re: Fresh install mesxes up already
« Last post by overseer on December 04, 2025, 03:43:57 AM »
You could follow Wonder as he was following the AlphaGNU MariaDB upgrade guide. The only difference is he was having to disable the CWP repo before continuing with the process:

cp /etc/my.cnf /etc/my.cnf.bak
systemctl stop mariadb mysql mysqld
systemctl disable mariadb
rpm -e --nodeps $(rpm -qa | grep -i mariadb)
rpm -e --nodeps mysql-common mysql-libs mysql-devel
rpm --nodeps -ev MariaDB-server
rpm -e --nodeps mariadb-server
dnf module disable mariadb -y
yum clean all
nano /etc/yum.repos.d/cwp.repo
   Set enabled=0
Save changes, and then:
yum install MariaDB-server MariaDB-client MariaDB-devel MariaDB-shared net-snmp perl-DBD-MySQL -y
Then, very important:
nano /etc/yum.repos.d/cwp.repo
   Set enabled=1
Save changes
dnf --refresh update
18
Updates / Re: Error during dnf -y update
« Last post by Starburst on December 03, 2025, 11:47:40 PM »
And yet this is the MariaDB version CWP supports, but not 10.11.x...

I can' tell you what's going on with CWP on AL8, that's more @overseer area and version.

I can tell you after install on AL9, the first thing I do is upgrade MariaDB to 10.11 before running dnf --refresh update
19
Installation / Re: Fresh install mesxes up already
« Last post by DragoCom on December 03, 2025, 09:31:57 PM »
See if you can resolve it with the advice in this thread:
https://forum.centos-webpanel.com/installation/problemas-instalando-cwp-8-con-mariadb/

I tried reading that thread but it seems to be all over the place with suggestions. Has there been a step by step putogether to fi this issue as of yet that I can follow?
20
Installation / Re: Fresh install mesxes up already
« Last post by DragoCom on December 03, 2025, 09:24:23 PM »
They really need to fix their installer... is it erroring on a mysql/MariaDB package?

[root@viking ~]# dnf -y update
Last metadata expiration check: 0:56:43 ago on Wed 03 Dec 2025 09:22:30 PM CET.
Error:
 Problem 1: package MariaDB-shared-10.5.29-1.el8.x86_64 from cwp requires MariaDB-common, but none of the providers can be installed
  - cannot install the best update candidate for package mariadb-connector-c-3.1.11-2.el8_3.x86_64
  - package MariaDB-common-10.5.29-1.el8.x86_64 from cwp is filtered out by modular filtering
 Problem 2: package MariaDB-shared-10.5.29-1.el8.x86_64 from cwp requires MariaDB-common, but none of the providers can be installed
  - cannot install the best update candidate for package mariadb-connector-c-config-3.1.11-2.el8_3.noarch
  - package MariaDB-common-10.5.29-1.el8.x86_64 from cwp is filtered out by modular filtering
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
Pages: 1 [2] 3 4 ... 10