Recent Posts

Pages: 1 ... 7 8 [9] 10
81
Installation / Re: Problems installing CWP 8 with MariaDB
« Last post by Wonder on October 24, 2025, 04:59:16 PM »
Hello,

Yes, it is indeed a genuine EL8 distribution, AlmaLinux8 in question.

I've installed a server, installed AlmaLinux 8 from scratch, and installed CWP from the official CWP repo (I'll do it later from the one mentioned by Startburst, but I wanted to note that we're using the official CWP repo and instructions).

After installing CWP and running a yum update, we have this:
Code: [Select]
[root@server ~]# yum update
CentOS Web Panel repo for Linux 8 - x86_64                                                                                                                    3.0 MB/s | 330 kB     00:00   
AlmaLinux 8 - BaseOS                                                                                                                                           16 MB/s |  44 MB     00:02   
AlmaLinux 8 - AppStream                                                                                                                                       3.1 MB/s |  21 MB     00:06   
AlmaLinux 8 - Extras                                                                                                                                           34 kB/s |  14 kB     00:00   
AlmaLinux 8 - PowerTools                                                                                                                                      7.1 MB/s | 5.0 MB     00:00   
AlmaLinux 8 - PowerTools Source                                                                                                                               357 kB/s | 142 kB     00:00   
AlmaLinux 8 - PowerTools debuginfo                                                                                                                            1.6 MB/s | 854 kB     00:00   
Extra Packages for Enterprise Linux 8 - x86_64                                                                                                                7.1 MB/s |  14 MB     00:01   
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)
[root@server ~]#
I followed the instructions at this URL step by step as shown below.
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25

Code: [Select]
[root@server ~]# cp /etc/my.cnf /etc/my.cnf.bak
[root@server ~]# systemctl stop mariadb mysql mysqld
[root@server ~]# 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@server ~]# rpm -e --nodeps $(rpm -qa | grep -i mariadb)
[root@server ~]# rpm -e --nodeps mysql-common mysql-libs mysql-devel
error: package mysql-common is not installed
error: package mysql-libs is not installed
error: package mysql-devel is not installed
[root@server ~]# rpm --nodeps -ev MariaDB-server
error: package MariaDB-server is not installed
[root@server ~]# dnf module disable mariadb -y
Last metadata expiration check: 0:04:12 ago on Fri 24 Oct 2025 06:27:29 PM CEST.
Dependencies resolved.
==============================================================================================================================================================================================
 Package                                       Architecture                                 Version                                       Repository                                     Size
==============================================================================================================================================================================================
Disabling modules:
 mariadb                                                                                                                                                                                     

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

Complete!
[root@server ~]# rpm -e --nodeps mariadb-server
error: package mariadb-server is not installed
[root@server ~]# nano /etc/yum.repos.d/mariadb.repo
[root@server ~]# yum clean all
62 files removed
[root@server ~]# yum install MariaDB-server MariaDB-client MariaDB-devel MariaDB-shared net-snmp perl-DBD-MySQL -y
CentOS Web Panel repo for Linux 8 - x86_64                                                                                                                    3.1 MB/s | 330 kB     00:00   
AlmaLinux 8 - BaseOS                                                                                                                                           15 MB/s |  44 MB     00:02   
AlmaLinux 8 - AppStream                                                                                                                                        15 MB/s |  21 MB     00:01   
AlmaLinux 8 - Extras                                                                                                                                           34 kB/s |  14 kB     00:00   
AlmaLinux 8 - PowerTools                                                                                                                                      7.6 MB/s | 5.0 MB     00:00   
AlmaLinux 8 - PowerTools Source                                                                                                                               334 kB/s | 142 kB     00:00   
AlmaLinux 8 - PowerTools debuginfo                                                                                                                            1.8 MB/s | 854 kB     00:00   
Extra Packages for Enterprise Linux 8 - x86_64                                                                                                                7.9 MB/s |  14 MB     00:01   
MariaDB                                                                                                                                                       1.6 MB/s | 634 kB     00:00   
Package perl-DBD-MySQL-4.046-3.module_el8.6.0+2827+49d66dc3.x86_64 is already installed.
Error:
 Problem: package MariaDB-server-10.11.14-1.el8.x86_64 from mariadb requires MariaDB-client >= 10.6.1, but none of the providers can be installed
  - cannot install both MariaDB-client-10.11.11-1.el8.x86_64 from mariadb and MariaDB-client-10.5.29-1.el8.x86_64 from cwp
  - cannot install both MariaDB-client-10.11.13-1.el8.x86_64 from mariadb and MariaDB-client-10.5.29-1.el8.x86_64 from cwp
  - cannot install both MariaDB-client-10.11.14-1.el8.x86_64 from mariadb and MariaDB-client-10.5.29-1.el8.x86_64 from cwp
  - cannot install the best candidate for the job
(try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
[root@server ~]#
The only way I can find to solve it is by disabling the CWP repo at that point, then it updates without any problem, but it installs some more package, which I really don't know if it's necessary:

disabling cwp repo:
Code: [Select]
Installing:
 MariaDB-client                                       x86_64                                10.11.14-1.el8                                     mariadb                                   16 M
 MariaDB-devel                                        x86_64                                10.11.14-1.el8                                     mariadb                                  8.5 M
 MariaDB-server                                       x86_64                                10.11.14-1.el8                                     mariadb                                   28 M
 MariaDB-shared                                       x86_64                                10.11.14-1.el8                                     mariadb                                  128 k
 net-snmp                                             x86_64                                1:5.8-31.el8_10                                    appstream                                355 k
Installing dependencies:
 MariaDB-common                                       x86_64                                10.11.14-1.el8                                     mariadb                                   88 k
 boost-program-options                                x86_64                                1.66.0-13.el8                                      appstream                                140 k
 galera-4                                             x86_64                                26.4.23-1.el8                                      mariadb                                  1.5 M
 net-snmp-agent-libs                                  x86_64                                1:5.8-31.el8_10                                    appstream                                749 k
 net-snmp-libs                                        x86_64                                1:5.8-31.el8_10                                    baseos                                   827 k
Installing weak dependencies:
 lsof                                                 x86_64                                4.93.2-1.el8                                       baseos                                   252 k
 pv                                                   x86_64                                1.6.6-7.el8                                        epel                                      64 k
 socat                                                x86_64                                1.7.4.1-2.el8_10                                   appstream                                322 k

Transaction Summary

And the rest of the steps are perfect.

By the way, I've used both the one indicated in the URL and the one @starburst mentioned as repos with the same result; the problem isn't the mariadb repository.

Then, in a few hours, I'll run the same tests using the CWP installer created by @starburst and post them here.
82
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by Starburst on October 24, 2025, 04:09:22 PM »

You are the one asking me to answer my own question... And again, not answering.... Dude....

cpanel envangelist I'm asking you to answer cHAp's original question they posted "When will PHP 8.4 be released in CWP?" with a solution.

But you can't , since you don't even use CWP.

You just post troll comments that are useless and everyone can see.

So again, FOCUS...
83
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by djprmf on October 24, 2025, 03:57:28 PM »
So go ahead and answer the question cpanel envangelist with a solution...

ALL you do is post BS troll posts...

So FOCUS...

You are the one asking me to answer my own question... And again, not answering.... Dude....
84
Installation / Re: Problems installing CWP 8 with MariaDB
« Last post by Starburst on October 24, 2025, 03:42:06 PM »
What @overseer said.

Also when you create the new MariaDB.repo for 10.11, make sure to use the Red Hat Enterprise Linux 8 for Distribution at:
https://mariadb.org/download/?t=repo-config&d=Red+Hat+Enterprise+Linux+8&v=10.11
85
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by Starburst on October 24, 2025, 03:35:34 PM »
So go ahead and answer the question cpanel envangelist with a solution...

ALL you do is post BS troll posts...

So FOCUS...
86
Installation / Re: Problems installing CWP 8 with MariaDB
« Last post by overseer on October 24, 2025, 01:35:50 PM »
I too have seen this. (Hopefully you are on an true EL8 distribution such as AlmaLinux 8 -- not a beta OS like CentOS Stream.) CWP should default to MariaDB 10.11 LTS version in its installation script. 10.5 is woefully EOL. Starburst does have a patched EL8 install script that includes 10.6 as the starting point, after which you upgrade to 10.11:
https://starburst.help/control-web-panel-cwp/control-web-panel-cwp-install-tutorials/updated-cwp-installer-script-for-almalinux-8-with-mariadb-10-6/
87
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by djprmf on October 24, 2025, 08:38:52 AM »
Ok, and now... anyone can answer the topic?

Using insults and nonsense doesn't answer a single question point made here. If you cannot answer anything just don't reply. Im here answering the questions of the TOPIC - both of you are coming here to insult and talk BS... and i am the "bad guy"? :)

is simple: prove me wrong. Talk to the topic, answer. And don't hide under a "cpanel envagelist" - really, is a little cringe that the only thing to answer to things is that.... that is called deflect the point, not answering.

And @Starburst, you specific, continue to attack as "cpanel envangelist"... and now i ask you: you have a hosting company, and a datacenter with multiple servers/clients. But you only provide CWP to them. Lets say that CWP cease development tomorrow.
What do you do?
You company probalby will enter in panic mode. So... why provide multiple control panels is a "bad thing"? I provide cPanel, as i provide CWP, Hestia, and many more. That is not a bad thing, is called diversification. If anything happens to one panel, i can adjust to other. That is not called "cpanel eenvagelist", is called think about the needs of the clients and the future.
yes, because i have clients asking specificly for cPanel, as i have to Plesk, CWP and others... Is that dumb to provide a panel that the clients want? If you don't, that is on you, but is not how i do business.

And cPanel does A LOT of things bad. Do you think that i consider cPanel perfect? From a company that only think about money and increase the licences every year?

And @6Sense, what that have to do with anything? Are we here to talk about how i do business or discuss about CWP?
What i do and how I do it doesn't matter at all... im not comparing companies or websites, and that have nothing to do with the point. So... what is your point then?

So, is just silly to continue to deflect the questions and topics made.... kindle stop being a kid and think!

So: when will PHP 8.4 be released in CWP?
88
Installation / Problems installing CWP 8 with MariaDB
« Last post by Wonder on October 24, 2025, 08:00:16 AM »
This week I installed CWP 8 from scratch, and I had to do it several times on the same server.
My mistake for not noting and saving the error.

The error appears once installed. It installs MariaDB 10.5, and when you run a yum update, it gives a result similar to this (because I searched for it and it appeared):

Copied from other post but equal than my problem:
yum update
Last metadata expiration date check: 0:05:32 ago on Sat 17 May 2025 14:34:10 UTC. Mistake:
Problem 1: package MariaDB-shared-10.5.29-1.el8.x86_64 from mariadb 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.27-1.el8.x86_64 from mariadb is filtered out by modular filtering
- package MariaDB-common-10.5.28-1.el8.x86_64 from mariadb is filtered out by modular filtering
- package MariaDB-common-10.5.29-1.el8.x86_64 from mariadb is filtered out by modular filtering
Problem 2: package MariaDB-shared-10.5.29-1.el8.x86_64 from mariadb 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.27-1.el8.x86_64 from mariadb is filtered out by modular filtering
- package MariaDB-common-10.5.28-1.el8.x86_64 from mariadb is filtered out by modular filtering
- package MariaDB-common-10.5.29-1.el8.x86_64 from mariadb is filtered out by modular filtering
(try adding '--skip-broken' to skip uninstallable packages or '--nobest' to use not only the best candidate packages)

I read the link mentioned and it takes us Here:
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25

But it doesn't fix it. In my case, it never fixed it; I always had the same problem.

Finally, I was able to fix it (I don't remember exactly how; I was stressed because the production server had crashed).

Now, cwp detects two pending updates. I log in and none appear. Yum update indicates that neither does it. But I see that the latest kernel, although apparently installed, isn't activated even in GRUB. I'm not worried; it will be updated with the next kernel released.

The problem is mariadb in a clean install. I think the installation script should be changed. It's not easy to fix the problem of having version 10.5 and then having yum update not work.
89
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by 6Sense on October 24, 2025, 12:34:08 AM »
@djprmf We can see your website sweet cheeks. Stock WP install with a downloaded theme, out of the box plugins and lack of responsive design for a mobile device.

No offence but just saying I think we've all got a pretty good idea how prolific your business enterprise is. Your tech knowledge is appreciated but you may choose to drop the big man attitude. I'm sure we'll all get along better then.
90
PHP / Re: When will PHP 8.4 be released in CWP?
« Last post by Starburst on October 24, 2025, 12:27:52 AM »
sure, I'll get right on that cpanel envagelist...

BTW How much are they paying you to troll other panels...
Pages: 1 ... 7 8 [9] 10