All Activity
- Yesterday
-
Upgrade MariaDB 10.11 In CWP Centos 7 Centos 8 stream AlmaLinux 7/8 RockyLinux 7/8
While following the step rpm --nodeps -ev MariaDB-server got error: package MariaDB-server is not installed But I continued and everything seems to be working. Hope its okay to ignore this error
-
Starburst started following CSF replacements needs
-
CSF replacements needs
Check out: https://starburst.help/control-web-panel-cwp/control-web-panel-cwp-admin-tutorials/csf-firewall-error-oops-unable-to-download-no-host-option-provided/
- Last week
-
Manual update of PHP in CWP
I did an experiment with Remi based multi PHP. Here is the install script: #!/usr/bin/env bash set -euo pipefail # --- 0. Repos dnf install -y epel-release dnf install -y https://rpms.remirepo.net/enterprise/remi-release-9.rpm # --- 1. Which PHP SCL version do you want to install VERSIONS=("php83" "php84") # If only 8.4 needs, let: ("php84") # Base PHP exts (for both PHP versions) BASE_PKGS=( php-fpm php-cli php-common php-opcache php-mysqlnd php-mbstring php-zip php-bcmath php-process php-exif php-calendar php-tidy php-curl php-iconv php-gmp php-pspell php-gd php-xml php-xsl php-soap php-intl php-imap php-sockets php-sodium php-gettext php-bz2 ) # PECL add-ons (Usually used with CWP Pro ) PECL_PKGS=( php-pecl-imagick-im7 php-pecl-memcache php-pecl-redis php-pecl-apcu php-pecl-mcrypt # you may remove it, if no need ) # System libs for GD (webp/avif/jpeg/freetype) and imagick running dnf install -y libavif libwebp libjpeg-turbo freetype ImageMagick aspell aspell-en # --- 2. Install the selected SCL PHP for V in "${VERSIONS[@]}"; do SAFE_PREFIX="${V/83/83}" # for example: V e.g. "php84" echo "===> Installing: ${V} (Remi SCL)" dnf --enablerepo=remi-safe install -y \ $(printf '%s ' "${BASE_PKGS[@]/#/$(echo $V)-}") \ $(printf '%s ' "${PECL_PKGS[@]/#/$(echo $V)-}") done # --- 3. Service start (itt most a 8.4-et engedélyezzük) systemctl daemon-reload systemctl enable php84-php-fpm systemctl restart php84-php-fpm systemctl enable php83-php-fpm systemctl restart php83-php-fpm echo "=== Ready: Remi SCL PHP 8.3, 8.4 installed."The place of php-fpm pool is: `nano /etc/opt/remi/php84/php-fpm.d/%username%.conf` where the %username% is the account name as usually in CWP Pro. php-fpm pool template with manual setup: [%username%] listen = /var/opt/remi/php84/run/php-fpm/%backend%.sock listen.owner = "%username%" listen.group = nobody listen.mode = 0660 user = "%username%" group = "%username%" pm = ondemand pm.max_children = 4 pm.max_requests = 4000 pm.process_idle_timeout = 15s rlimit_files = 131072 rlimit_core = unlimited catch_workers_output = yes env[HOSTNAME] = $HOSTNAME env[TMP] = %home%/%username%/tmp env[TMPDIR] = %home%/%username%/tmp env[TEMP] = %home%/%username%/tmp env[PATH] = /opt/remi/php84/root/usr/bin:/usr/local/bin:/usr/bin:/binIf you use PHP 8.3 change version and set path accordingly. Change in generated Vhost template manually: <FilesMatch \.php$> SetHandler "proxy:unix:/var/opt/remi/php84/run/php-fpm/%username%.sock|fcgi://localhost" </FilesMatch>The only drawback is that we cannot use the excellent GUI features of CWP Pro this way, but everything runs flawlessly, and this PHP (both 8.3 and 8.4) integrates the correct version of OpenSSL 3.x. @Starburst You can try it. @Sandeep B. How we can integrate it into GUI ?
-
Manual update of PHP in CWP
We could also use the PHP packages described in https://blog.remirepo.net/ . Remi's PHP versions are automatically updated, its have everything wee need for AlmaLinux 9.x, we just need to configure the PHP-FPM service and coordinate it with the CWP Apache and NGINX vhost templates. And this can be done even without the GUI. I use a similar setup on my development system under Ubuntu with the multi-php repo there.
-
CSF replacements needs
🔍 Issue Summary (CSF v15.00):csf and lfd are both properly installed and running: systemctl status csf → active (exited) systemctl status lfd → active (running) Manual commands such as csf -e, csf -r work as expected lfd.log confirms proper startup, log watching, and IP tracking However, the CSF firewall still shows as "Disabled" on the CWP Admin interface. ✅ What Works Correctly (on another server):On a similar environment (CWP Pro + AlmaLinux 9.x), the CSF firewall is correctly shown as active in the CWP interface when using csf v14.24 (CentOS Web Panel) All functionality and UI detection works fine with that version
- Earlier
-
about jailkit
Hello. I wonder if the jailkit can be used instead of cagefs?
-
CSF replacements needs
The CSF project is abandoned, and newly installed CWP Pro already has several issues during installation. Here is the topic: https://www.jaspreet.net/2025/09/06/3180/how-to-fix-csf-firewall-error-oops-unable-to-download-no-host-option-provided/ @Sandeep B. Do you have any idea how to replace CSF in CWP Pro servers?
-
SubZero5 joined the community
-
DaveF joined the community
-
Reseller customer disk space problem.
Hello?
-
Manual update of PHP in CWP
will create the tutorial soon
-
Manual update of PHP in CWP
Hi @Sandeep B. Updated PHP and PHP 8.4 would be very desirable. Is there anything we can do to help make this happen? For example, I manage more than 15 CWP Pro licenses on different servers, and most of them - the owners - are urging me to upgrade.
-
Reseller customer disk space problem.
hello?
-
Manual update of PHP in CWP
🍿
-
Reseller customer disk space problem.
Yes, I uploaded it. I'm adding the images. For example, here they are. image1 image 2 image3
-
Reseller customer disk space problem.
Hi did you activated the disk quota for the cwp?
-
saviorhost started following Reseller customer disk space problem.
-
Reseller customer disk space problem.
I can't see the total disk size of my reseller customer and all its customers. Is there a solution for this?
-
Manual update of PHP in CWP
CWP is now 4 versions behind with 8.3 Last version in CWP is 8.3.21, php.net just released 8.3.25 today which fixes additional bugs & CVE's. CWP has release several version, but hasn't updated the PHP versions 8.1, 8.2 or 8.3. Even though they contain critical bug & CVE's fixes. @Sandeep B. Why is CWP failing so behind??
-
Kanobis started following How to add DNSSEC Records in Bind/Named DNS server
-
How to add DNSSEC Records in Bind/Named DNS server
Could someone explain to me what next, where are the codes to add to the domain provider. Kind Regards Kanobis.
-
Kanobis joined the community
-
Jamshed Datori joined the community
-
smartpresshub joined the community
-
VPS21 joined the community
-
Manual update of PHP in CWP
It would make life allot easier if PHP was updated in CWP. :/
-
Manual update of PHP in CWP
Either PHP 8.3 or 8.4 Another 8.3 (8.3.24) release just came out on 2025-07-31, along with 8.4.11 So now CWP is 3 version behind on 8.3, 2 versions behind on 8.2 and 8.1, and it doesn't even have 8.4.x If you could post the build string here, or update the guide for 8.3 to include ionCube, LDAP, and mailparse that would be great, and I could go modify all the servers. Is it just as simple as adding --enable-ldap --enable-mailparse ? Thanks
-
Manual update of PHP in CWP
Are you talking about PHP 8.4?
-
-
httpd wont start after mod security install
Just saw your post, sorry, guess I need to come on here more also. Am usually hanging out in the CWP Forums. That seems to still be a bug in CWP with it installs ModSecurity. But it is simple to fix. nano /usr/local/apache/conf.d/mod_security.confAt the end of line 2 – Add – liblua-5.4.so Save & Exit systemctl restart httpd
-
Manual update of PHP in CWP
@Sandeep B. Since CWP is now 2 versions behind the current versions, was wondering if you could post how to manually update PHP and PHP-FPM? Along with the options for ionCube, LDAP, and mailparse. Thanks
-
Which OS IS GOOD FOR CWP
I would recommend installing CWP using AlmaLinux 9.6 (Current version of this post)
-
Install OpenVPN Open Source in Linux CentOS Ubuntu Debian Amazon Linux
Works on AlmaLinux 9 & 10.
-
Issue with CWP – File Permission Problems
This should be fixed via the update