Search results

  1. M

    HTTP Pipeline Issue with iOS

    Yes, server will send back response in the order they are received. It must be a bug on iOS side. You can turn off pipe-lining by turning off keep-alive. http://www.litespeedtech.com/docs/webserver/config/tuning#maxKeepAliveReq
  2. M

    [Resolved] LSWS 5.0RC3 updateagent missing?

    updateagent binary is no longer required. We will fix the installation script.
  3. M

    SuexecUserGroup Not completely apache compatible?

    Yes, it will be in next release.
  4. M

    Cgi error

    It is the first line of the script permission problem.
  5. M

    [Resolved] SSL Ciphers and apache style configuration

    You can change it via Apache mod_ssl "SSLProtocol" directive.
  6. M

    htaccess hostnames not working

    LiteSpeed does not perform DNS lookup during runtime due to the event-driven architecture, so you need to use a cron job to update the .htaccess with actual IP used. It wont be changed in the near future.
  7. M

    Locomotive CMS ruby and Litespeed detect loop /dispatch.lsapi

    Looks like the status code does not change to 302, try instead. That's right, you need to change your code to set status code to 30x.
  8. M

    Locomotive CMS ruby and Litespeed detect loop /dispatch.lsapi

    You want a "Location" header in the response, but LiteSpeed wont allow it. I got it. You should not use X-LiteSpeed-Location header, only use "Location" header. The most important, you need to set status code to "30x", otherwise, server will treat it as internal redirect. Maybe there is...
  9. M

    Locomotive CMS ruby and Litespeed detect loop /dispatch.lsapi

    What are doing is like input url->/dispatch.lsapi->target url->/dispatch.lsapi litespeed stops it. You may have to use rewrite rule to rewrite the input URL directly to the target URL. then process by Rails. avoid internal redirect in rails that need to be handled by rails again.
  10. M

    how to switch litespeed to apache

    The easiest one is to uninstall the "Apache to LSWS wrapper script".
  11. M

    [Resolved] Litespeed slower than Apache

    LiteSpeed should be faster than Apache. Any finding? Is it fixed?
  12. M

    "please increase LSAPI_CHILDREN" error

    Is there really 1240 PHP processes running by that time? If yes, I guess the full backup created a lot of PHP processes running in background. If the server can run more PHP processes, you can increase "LSAPI_EXTRA_CHILDREN", it is 1000 now, it will allow more background PHP processes...
  13. M

    [Resolved] cant switch to litespeed

    Are you using cPanel? completely uninstall LSWS, and install it through our plugin.
  14. M

    Problem after Upgrade LSWS

    If it is a new server, you need to check if PHP suEXEC is turned on. run /usr/local/lsws/admin/misc/lsup.sh -f -v 4.2.21 upload a new file see if the permission is correct or not. The file uploaded with wrong permission need to be fixed manually.
  15. M

    Error establishing a database connection error while switching to Litespeed

    Maybe you can try our lsphp rpms with matching mysql API. we support MySQL 5.1 5.5 5.6 . http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:php:rpm
  16. M

    [Resolved] How to get php core dump

    you need to change /proc/sys/kernel/core_pattern to /tmp/core-%e.%p PHP suEXEC processes cannot write to /tmp/lshttpd directory.
  17. M

    Problem after Upgrade LSWS

    Which control panel you use? This issue should have been fixed with the latest 4.2.21 build a while ago, please try force reinstall 4.2.21 .
  18. M

    [Resolved] How do I increase External Application Max CONN?

    It is controled by http://www.litespeedtech.com/docs/webserver/config/general#phpSuExecMaxConn
  19. M

    [Resolved] ssl/certificate auth

    The SSL error is at Layer4, no possible to add a layer7 403 error page for that. Neither server, nor client can sen or receive anything from each other.
Top