Jump to content

Sandeep B.

Administrators
  • Last visited

  • Posts

    298
  • Reputation

    10k

Everything posted by Sandeep B.

  1. send the output of the following commands : ls -la /lib64/ | grep libcurl and ls -la /usr/lib64/ | grep libcurl and ldconfig -p | grep libcurl
  2. 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
  3. It can be incompatibility with 2 modules.
  4. You can try executing these commands: ldd -r /usr/lib64/libcurl.so.4 rm /usr/local/lib/libssh2.so.1
  5. 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
  6. you meant site is showing default page ? or there is any other error when you open the sites ? screenshots will be helpful
  7. 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.
  8. 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
  9. 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
  10. 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
  11. How you're accessing user panel any link demo ? it is recommended to access via hostname : https://hostname:2083
  12. 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
  13. you can't access 2031 when using cloudflare for hostname it is recommended to remove cloudflare proxy for the hostname.
  14. 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
  15. i always preferer stream OS and alma is better than rocky
  16. 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
  17. updated the script, thanks for the info
  18. ensure that dovecot service is running systemctl status dovecot
  19. i've tested the upper steps and its still working fine for me. You can DM me with server details for the checks
  20. did you tried with pam yes ? you need to change the private key to pem format and try
  21. Hi will check it and make a installation tutorial soon
  22. 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
  23. 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
  24. 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.
  25. it requires php 7.3 and not fully supported with CWP as it uses php 7.2 as core php version