Everything posted by Sandeep B.
-
Clamav fails to install
send the output of the following commands : ls -la /lib64/ | grep libcurl and ls -la /usr/lib64/ | grep libcurl and ldconfig -p | grep libcurl
-
Clamav fails to install
If upper solution doesn't solve this try to install/reinstall libcul and libcurl-devel package yum install libcurl libcurl-devel yum reinstall libcurl libcurl-devel
-
Install PHP 8.1 from source in CWP?
It can be incompatibility with 2 modules.
-
Clamav fails to install
You can try executing these commands: ldd -r /usr/lib64/libcurl.so.4 rm /usr/local/lib/libssh2.so.1
-
Logrotate for CWP own logs
You can use this tutorial to clear the logs via cron job : or you can use below configs for logrotate : yum install logrotate -y create the cwp logrotate config file : nano /etc/logrotate.d/cwplog add this lines to it and save : /usr/local/cwp/php71/var/log/*.log /var/log/cwp/*.log { daily rotate 3 size 15M compress dateext dateformat -%d-%m-%Y delaycompress } you can debug/dry-run the log rotate config via this command : logrotate -d /etc/logrotate.d/cwplog disable system protect for logrotate : sed -i '/ProtectSystem=full/s/^/#/g' /usr/lib/systemd/system/logrotate.service systemctl daemon-reload and restart logrotate.timer and logrotate via systemctl : systemctl restart logrotate.timer logrotate check logrotate.timer and logrotate are running via this command : ** logrotate will show inactive other than that ensure the service doesn't have any error systemctl status logrotate.timer logrotate
-
CWP – Control Web Panel Install Latest Apache 2.4.62 version
you meant site is showing default page ? or there is any other error when you open the sites ? screenshots will be helpful
-
CWP – Control Web Panel Install Latest Apache 2.4.62 version
hi can you check the vhost is created or not after you rebuilt the webserver config ? as the latest apache version doesn't interfere with it.
-
Can't add ssl certificate on domain with internal ip
Free ssl needs public IP for verify and to issue the certs, if you're using private ip then you need to buy a paid ssl
-
Install PHP 8.1 from source in CWP?
Here is the steps to enable ioncube https://www.alphagnu.com/topic/9-install-php-82-from-source-latest-version-in-cwp-control-web-panel/?do=findComment&comment=215
-
What do you think with Hetzner
Alphagnu.com is hosted on hetzner vps cloud server and i didn't see any downtime in last 3-4 months and they provide genuine servers also there servers are not overselled. Regarding billing related they don't fraud it you'll get the bill what they mention in there plans
-
CWP Dashboard behind a Cloudflare proxy. How to
How you're accessing user panel any link demo ? it is recommended to access via hostname : https://hostname:2083
-
Install PHP 8.1 from source in CWP?
for php switcher you can build it form source : follow Step 1 from here Step 2 : mkdir -p /usr/local/php-81 cd /usr/local/php-81 wget http://php.net/distributions/php-8.1.25.tar.gz tar zxvf php-8.1.25.tar.gz cd php-8.1.25 ./configure --with-config-file-path=/usr/local/php --enable-cgi --with-config-file-scan-dir=/usr/local/php/php.d --with-zlib=/usr --enable-mbstring --with-zip --enable-bcmath --enable-pcntl --enable-ftp --enable-exif --enable-calendar --enable-sysvmsg --enable-sysvsem --enable-sysvshm --with-tidy --with-curl --with-iconv --with-gmp --with-pspell --enable-gd --with-avif --with-jpeg --with-freetype --enable-gd-jis-conv --with-webp --with-zlib-dir=/usr --with-xpm --with-openssl --with-pdo-mysql=mysqlnd --with-gettext=/usr --with-bz2=/usr --with-mysqli --enable-soap --enable-phar --with-xsl --with-kerberos --enable-posix --enable-sockets --with-external-pcre --with-libdir=lib64 --with-mysql-sock=/var/lib/mysql/mysql.sock --enable-intl --with-password-argon2 --enable-litespeed --with-ldap=/usr --with-ldap-sasl=/usr make make install
-
CWP Dashboard behind a Cloudflare proxy. How to
you can't access 2031 when using cloudflare for hostname it is recommended to remove cloudflare proxy for the hostname.
-
Https for shoutcast
you need to create reverse proxy with apache or nginx in cwp you can achieve this in webserver domain config >> select the domain name >>create config >> select nginx + apache + port option add 1500 port there and save and rebuild vhost
-
Openssl and CVE-2022-2068
i always preferer stream OS and alma is better than rocky
-
Openssl and CVE-2022-2068
centos/el uses backporting for security fixes the version will show old but the security vulnerability is already fixed via yum update also centos 7 is ending in few months consider upgrading to almalinux8/centos 8 stream and it is not recommended to update the openssl in centos/el OS because this will break many dependencies. to upgrade apache webserver openssl you can use this tutorial
-
CWP – Control Web Panel Install Latest Apache 2.4.62 version
updated the script, thanks for the info
-
Update CWP RoundCube Mail Version 1.5.8 – Control Web Panel
ensure that dovecot service is running systemctl status dovecot
-
Enable public key authentication and login with SSH keys without Password with PUTTY-PuttyGEN
i've tested the upper steps and its still working fine for me. You can DM me with server details for the checks
-
Enable public key authentication and login with SSH keys without Password with PUTTY-PuttyGEN
did you tried with pam yes ? you need to change the private key to pem format and try
-
Mod QOS against slow loris attacks
Hi will check it and make a installation tutorial soon
-
Install PHP 8.2 from source Latest version in CWP- control web panel
for cwp php-fpm selector : cd /usr/local wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip unzip -o ioncube_loaders_lin_x86-64.zip && rm -rf ioncube_loaders_lin_x86-64.zip touch /opt/alt/php-fpm82/usr/php/php.d/ioncube.ini echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.2.so' >/opt/alt/php-fpm82/usr/php/php.d/ioncube.ini for php 8.1 follow all the steps and use below commands in place of last 2 commands lines: touch /opt/alt/php-fpm81/usr/php/php.d/ioncube.ini echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.1.so' >/opt/alt/php-fpm81/usr/php/php.d/ioncube.ini then restart php-fpm services systemctl restart php-fpm82.service php-fpm81.service php cgi selector 2 : cd /usr/local wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip unzip -o ioncube_loaders_lin_x86-64.zip && rm -rf ioncube_loaders_lin_x86-64.zip touch /opt/alt/php82/usr/php/php.d/ioncube.ini echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.2.so' >/opt/alt/php82/usr/php/php.d/ioncube.ini for php 8.1 follow all the steps and use below commands in place of last 2 commands lines: touch /opt/alt/php81/usr/php/php.d/ioncube.ini echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.1.so' >/opt/alt/php81/usr/php/php.d/ioncube.ini
-
Install PHP 8.2 from source Latest version in CWP- control web panel
you can do this steps for cwp php switcher : cd /usr/local wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip unzip -o ioncube_loaders_lin_x86-64.zip && rm -rf ioncube_loaders_lin_x86-64.zip touch /usr/local/php/php.d/ioncube.ini echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.2.so' >/usr/local/php/php.d/ioncube.ini for php 8.1 follow all the steps and below command in place of last command line: echo 'zend_extension = /usr/local/ioncube/ioncube_loader_lin_8.1.so' >/usr/local/php/php.d/ioncube.ini
-
Update CWP RoundCube Mail Version 1.5.8 – Control Web Panel
cwp uses 7.2 and yes 7.4 will be released soon for cwp service its under test with el9 roundcube 1.5 is still supported by the developers as it is LTS version and security patches will be maintained by the devs.
-
Update CWP RoundCube Mail Version 1.5.8 – Control Web Panel
it requires php 7.3 and not fully supported with CWP as it uses php 7.2 as core php version