Search results

  1. M

    Installing ACPu via PECL cPanel/EAV4 not working

    killall running PHP processes for that user, detached mode PHP was not restarted?
  2. M

    Installing ACPu via PECL cPanel/EAV4 not working

    Is apcu loaded through its own ini file? file permission for that ini file? tried running "lsphp -i" as regular user? checked stderr.log?
  3. M

    Litespeed Cache error on Wordpress

    which control panel you use? we may need to reproduce this issue.
  4. M

    Litespeed Cache error on Wordpress

    Maybe 5.3 and 5.4 use different version of PHP, for some reason? Later version make "AddHandler ..." works, it may change PHP version. Are you using 5.3.6?
  5. M

    litespeed public cache no plugin with ESI

    Your rewrite rule wont work as ESI happen at server side, the ORG_REQ_URI wont be /time.php In your /time.php code, add header x-litespeed-cache-control: no-cache
  6. M

    Litespeed 5.4 recaptcha protection question

    It is the percentage of your server capacity used based on number of active connections. "in use connection * 100 / max connections" > (100 - sensitivity), it will be turned on.
  7. M

    Pages Wont Load Until Restart The Browser

    Thanks for the bug report. Please open a ticket with us, we probably need temp root access and the way to reproduce this problem.
  8. M

    Strange Errors in /usr/local/apache/logs/error_log

    http://php.net/manual/en/errorfunc.configuration.php#ini.display-errors http://php.net/manual/en/errorfunc.configuration.php#ini.log-errors http://php.net/manual/en/errorfunc.configuration.php#ini.error-log PHP configuration regarding error logging is complicate. :-)
  9. M

    Strange Errors in /usr/local/apache/logs/error_log

    It is a PHP code problem. please google it.
  10. M

    Too many lsphp5 instances

    There could be some thing blocking all PHP processes from serving request. When it happens, you can strace the PHP process see what it is doing. strace -tt -T -s200 -v -p <pid_of_lsphp_process> If it is waiting on a file handle, use "lsof -p<pid_of_lsphp_process>" to find out what is the file...
  11. M

    Virtualmin with LSWS on centOS 7

    Is there a /usr/sbin/httpd_ls_bak ?
  12. M

    Virtualmin with LSWS on centOS 7

    How virtualmin switch PHP version at directory level? For litespeed you can use in .htaccess, replace "XX" with the version you want to use.
  13. M

    Virtualmin with LSWS on centOS 7

    make sure you have php-litespeed rpm installed from remi repo. then add lsphp72 handler using the lsphp binary from remi repo. if PHP script is not served by PHP72, then add to .htaccess.
  14. M

    Litespeed 5.3.x breaks .htaccess

    the issue is due to bad RewriteBase "/" used in sub-directory, solved by changing last rewrite rule to RewriteRule ^(.*) /index.php [L] which ignores the RewriteBase.
  15. M

    smProcessReq() last state: HSPS_HKPT_HTTP_AUTH ?

    I think it is normal, just handler processing was interrupted due to graceful shutdown of old worker with pending requests.
  16. M

    Disable litespeed autostart

    try command /usr/local/lsws/admin/misc/cp_switch_ws.sh apache Maybe there is something wrong with the configuration file, Apache cannot handle, if it is for litespeed, you should enclose it with <IfModule LiteSpeed>...</IfModule>
  17. M

    CORS headers missing after update to LSWS 5.3.1

    Please run lsup.sh again to upgrade to 5.3.1 build 3, see if the CORS headers is OK.
  18. M

    Litespeed 5.3.1 TLS 1.3 Firefox Problem

    first two errors is because those two browsers uses TLSv13 draft23 and draft28, ssllabs.com does not like it. cloudflare.com shows the same result. IE8 on XP requires TLS_RSA_WITH_3DES_EDE_CBC_SHA, which is not safe, disabled by default.
Top