Search results

  1. M

    Include configuration files in litespeed

    We are going to have a major change in our configuration file, which will use JSON format instead of XML. by that time, include configuration files will be supported. Maybe in a month or two.
  2. M

    A list of tested mod_security rulesets

    <LocatioonMatch> must be in the main configuration file. does not work in .htaccess, same with Apache as designed.
  3. M

    [Resolved] an error was encountered (500)

    It has nothing to do with the 500 error, you need to set "Debug level" to "HIGH", then try the URL produce 500 error. grep error log with the IP that the request originated.
  4. M

    Expires, Gzip & PHP

    Fix is in 4.2.8 release.
  5. M

    SSLHonorCipherOrder

    no. litespeed static linked with official openSSL lib.
  6. M

    404's Not Working In PhotoPost Pro Gallery

    what exactly is your problem?
  7. M

    SSLHonorCipherOrder

    If the patch get into the official OpenSSL release, we will use it.
  8. M

    MySQL upgrade to 5.6 and outdated mysqlnd

    upgraded our cPanel test server to MySQL 5.6, then build matching PHP, the default lsphp5 binary has been updated to using MySQL 5.6.15 Client API. CloudLinux also has alt-php RPM for MySQL 5.6. The PHP binary compiled with cPanel easyApache does not use mysqlnd, The matching lsphp5 does not...
  9. M

    MySQL upgrade to 5.6 and outdated mysqlnd

    Build Matching PHP will update default lsphp5 binary after you run easyApache. If you use PHP selector, the binary is from RPM provided by CloudLinux. you need to contact CloudLinux about that.
  10. M

    SSLHonorCipherOrder

    LiteSpeed SSL always follow server's preference.
  11. M

    [Resolved] an error was encountered (500)

    You may need to turn on debug logging, then reproduce the problem. then locate log entries related to this request with your IP.
  12. M

    [Resolved] an error was encountered (500)

    Please check /usr/local/apache/logs/error_log if you are using cPanel, otherwise, check /usr/local/lsws/logs/error.log .
  13. M

    lsws-5.0RC1 where to post bug reports?

    same as with 4.x release, install gdb, set server Administrator's email. the crash report will be sent to that email. forward crash report to bug@litespeed....
  14. M

    Issue with X-LiteSpeed-Location after upgrade from 4.2.3 to 5.1RC

    We will check and have it fixed in RC2 release.
  15. M

    LiteSpeed is changing the configuration

    LS wont change configuration by itself. you should check file time stamp and admin console access log. Resouce limit is part of LVE, not CageFS, I guess you need to look into what and why resource limit has been reached.
  16. M

    Litespeed htaccess issue

    There could be rewrite rule compatibility issue. What you can is to turn on rewrite log for that vhost, just add RewriteLogLevel 9 to in <VirtualHost ...> </VirtualHost> temporarily, restart server, then check rewrite related log entries in the error.log. Post your rewrite rule may help...
  17. M

    Litespeed htaccess issue

    Please turn on debug logging, restart LSWS, access the site, check /usr/local/apache/logs/error_log if using cPanel, if not, check /usr/local/lsws/logs/error.log, it should have something about loading .htaccess, and process each directive in the log.
  18. M

    How to disable core dumps ?

    just remove the ENV LSAPI_ALLOW_CORE_DUMP=0 completely. The crash will be logged, but "core dump: 0" indicates there is no core dump file generated. the log message cannot be turned off.
  19. M

    mod_rewrite server_name/http_host

    %{SERVER_NAME} is an internal variable using vhost ServerName. In your case, if you expect "Host" header, you should use "%{HTTP_HOST}"
  20. M

    PHP HTTP_USER_AGENT seems incomplete or shortened for litespeed

    Maybe HTTP_USER_AGENT env was modified by a rewrite rule or something, LiteSpeed itself does not do post-processing of "User-Agent" header.
Top