Search results

  1. M

    Swap Folder Cleanup

    that's correct, not need to bring down LSWS.
  2. M

    IonCube error

    You can copy ixed.5.2.lin from /usr/local/lib/php/extensions/.... It is another loader like ioncube, I believe.
  3. M

    Configuring ulimit

    per user limit can be set in /etc/security/limits.conf, LiteSpeed cannot set unlimited, it has to be a number, or system default.
  4. M

    lshttpd using constant CPU even when not in use

    It will be served via a special URL when required, like mod_status in Apache.
  5. M

    Configuring ulimit

    there is a memory limit being set in php.ini as well.
  6. M

    Yearly free software update, how to buy

    Please contact sales on this, yearly software update is a product add-on for owned license, maybe product type of your license need to be updated if it was set as "Yearly software update for LSWS 4-CPU owned".
  7. M

    IonCube error

    put ionCube load modules in /usr/local/lib/php/extensions/no-debug-non-zts-..../ directory.
  8. M

    DDoS Question

    Looks like a MySQL performance issue, as it using 99% CPU, it is not something related to LSWS at all. A few tips to trouble shot this is to check mysqladmin processlist mysqladmin extend-status find out the SQL takes long time, add proper table index if need. Our advanced anti-DDoS setup...
  9. M

    Limit connection in Apache or litespeed config

    It wont work well, as LSWS does not know which vhost a connection goes to without accepting the connection and receiving the request headers, there is no way to tell which connection is valid user, which one is from attacker, if close connections after accepting connections, valid user will be...
  10. M

    Templates missing?

    You can ignore those, it does not matter. you can remove those templates, or create a listener with name "Default".
  11. M

    503 Errors

    most likely the request crashed PHP, LSWS tried three times, always crash PHP. To trouble shoot this, the easiest way is to switch back to apache, put LSWS on a port offset, so only you can access litespeed. change "max idle" of lsphp5 external app to a longer value like 300 seconds, then send...
  12. M

    [Resolved] Chunked HTTP/1.1 POST request support

    Thanks for the detail test case, we successfully identify the bug and fixed it. It was the length of request body not being passed to PHP properly. Fix is in our 4.0.16 build, just change the version number in the download link to get it.
  13. M

    Issues with starting litespeed on fresh OpenVZ virtual machine

    Maybe that IP used trial key before, so it is not allow to use trial key again, please send the IP to sales@... to clear it.
  14. M

    [Resolved] Chunked HTTP/1.1 POST request support

    Chunked POST request should be supported. Can you provide a simple example request including request header and chunked body, please send it to bug@litepseed... We will fix it if it is a bug or a situation not handled properly.
  15. M

    ispCP index.php displays a blanc page

    change php.ini to allow PHP dump errors to screen or log file, so, you will get an idea what happened with PHP. Try changing index.php, only display phpinfo() to test PHP installation works or not.
  16. M

    ispCP index.php displays a blanc page

    ispCP may require a PHP module that does not exist in LiteSpeed PHP, You should rebuild PHP with exact the same configuration option like Apache's PHP. Just display phpinfo() page from both, and compare if all configuration options, runtime configuration, and modules are the same.
  17. M

    Entries in server logs

    That's from PHP internal, have no clue what it is.
  18. M

    [Resolved] Yet another problem with Litespeed.

    activating debugging is to find out the offending rule. LiteSpeed will log the rule to error.log, reproduce the problem, then grep error.log with your IP. it will list the test string and pattern of the rule, then you can comment it out, try again, until the page works.
  19. M

    [Resolved] Yet another problem with Litespeed.

    The 99% cpu is caused by PCRE pattern matching, when processing mod_security rules, rebuild LSWS with reduced PCRE looping limit, the 99% cpu problem is gone. Then there are a few mod_security rules block the POST request, enable debug logging with "SecDebugLogLevel 9" in...
  20. M

    [Resolved] Yet another problem with Litespeed.

    I will check it later today.
Top