Search results

  1. M

    feature request: chunk size for gzip compression

    We will work something out to have the partial page delivered as early as possible.
  2. M

    Userdir just "stopped" working

    That's pretty strange, as we had verified that vhosts with this kind of userdir configuration works. We will double check.
  3. M

    How to get workingwith plesk?

    We do not need the SSL related files, those are confidential.
  4. M

    How to get workingwith plesk?

    That will be great if you can. Please include all configuration file included by the main httpd.conf, please send it to bug @ litespeedtech ... , we will keep those file confidential. Thanks!
  5. M

    How to get workingwith plesk?

    We are working on this. Maybe some configuration in the httpd.conf generated by plesk is causing trouble.
  6. M

    gzip compression wildcards *STILL* not working

    Please try adding "text/css" explicitly to the list see if help, we have done some experiments with our live site, sometime it interfere with the expires configuration, we will continue investigation.
  7. M

    gzip compression wildcards *STILL* not working

    The MIME type of .js is not text/*, so you need to add that explicitly. If the file is cache, then the response header will not include the gzip header. Clear your browser cache and try again.
  8. M

    Horible performance

    If the uploaded images are world readable, then you don't have to change the ownership. Anti-DoS feature will help defending attacks, traffic from valid users still need to to be served as usual. So, you will definitely see different load when serving 1000 users than serving 500 users...
  9. M

    Horible performance

    First, you need to verify that eAccelerator works properly. Then, you can increase the "Max Connections" and "PHP_LSAPI_CHILDREN" to 40, to keep the Wait Q at zero for the most of the time. We recommend PHP suEXEC, it assigns dedicate PHP processes for each account, so you can easily identify a...
  10. M

    deliberations on logging performance with litespeed

    slpit logs should have better performance since it is only direct file operations.
  11. M

    gzip compression wildcards *STILL* not working

    The problem should be addressed in the latest 3.2.1 build. A dedicate gzip cache directory will be used for static content, so LSWS will not require rewrite permission to user's document root directory in order to serve compressed version of static files.
  12. M

    restart from shell

    Is that a LiteSpeed 408 error, it is pretty strange. Unless the request takes more time than the "Connection timeout" to process, you should not get it.
  13. M

    General performance tuning

    "Best" is the best available, should use "epoll" under the hood. If most sites are PHP driven, the opcode cache is a huge factor, and you can try both APC and eAccelerator and see which work best for you. If you were using eAccelerator with Apache, use eAccelerator for the load comparison. We...
  14. M

    General performance tuning

    If you do not use suEXEC, 20-40 should be a good value for PHP_LSAPI_CHILDREN and "Max Conns". If you use suEXEC, set "PHP suEXEC Max Conn" between 5-10 is a good start point. We usually set static RPS to 20, and set dynamic RPS to 1. you can also set connection limits and bandwidth throttling...
  15. M

    REDIRECT_URL doesn't work in PHP

    REDIRECT_URL was not set by LSWS. Are you using it to generate a custom error page? We may add it in next release.
  16. M

    Same cookie returns different results in PHP

    I think it depends on how the cookie was set in the main page and the IFrame, it is not a web server issue.
  17. M

    lspai and RESTful routes

    Please wait for our official release.
  18. M

    lspai and RESTful routes

    OK, I figured out the problem with the test application you sent me. RESTful route is more picky on URL, request with URI "/mugshots" works, but request with URI "/mugshots/" does not, the old fashion route has no problem with it. When LSWS receive a request with URI "/mugshots", it will check...
Top