Search results

  1. M

    https connection errors/chained certificates issue

    Please try 2.1RC3, CA certificate configuration has been added, see if it help with the certificate expiring problem. Occiationally, I can get connection problem from another laptop behind a NAT, a refresh usually fix it, but it takes pretty long time for the SSL handshake, and the...
  2. M

    https connection errors/chained certificates issue

    Looks like the problem is definitely on the server side. Does that machine have its own dedicate public IP address or behind NAT? Can you access the web site via firefox on that machine? Maybe the server for some reason don't like that IP address and drop the connection. Is there any...
  3. M

    https connection errors/chained certificates issue

    Please check the SSL setting of that IE, make sure at least one SSL check box has been checked under Tools->Internet options->"Advanced" Tab->Security. I can access the web site unless all SSL check boxes have been unchecked.
  4. M

    strange error.. & 503 service Unavailable

    Yes, it is. You can use a cron job to monitor the server, if you got 503 errors, just kill all php processes. Really!? That's a big problem, did you know which process has memory leak? lshttpd? or php? Thanks.
  5. M

    public server?

    If the server is behind a broadband gateway, you need to setup "Port forword" for HTTP service, please consult manual of your gateway. Also, make sure your ISP does not block HTTP port 80, otherwise, you have to use a non-standard port.
  6. M

    https connection errors/chained certificates issue

    That's strange, I am using the same version, no problem at all, not even the expiration problem. I do have untrusted certificate problem with firefox, will add a CA path configuration which matches Apache's, see if that help.
  7. M

    strange error.. & 503 service Unavailable

    Which OS is used? Please follow http://www.litespeedtech.com/bugs.html try to generate a core file and send us the core file. When 503 happens, what do you see in the real time report from web admin interface. I think it is a problem between PHP and MySQL, all PHP processes were hanging on...
  8. M

    https connection errors/chained certificates issue

    Got it. We will investigate the problem. Can you tell me more information about browsers that cannot connect? version and platform. I think ssl negotiation failed between the browser and server about encryption cipher to be used. please try change the ssl cihers setting for the ssl...
  9. M

    https connection errors/chained certificates issue

    We will investigate those issues, the problem should be inside openssl toolkit, maybe need some tweaks. If you don't mind, please tell us the url of your web site. We'd like to give it a try. :-)
  10. M

    vhosts, keep-alive and some other questions

    Yes, global keep-alive settings should be inherited by vhosts if they are not explicitly overriden by a vhost. As to connection limit, it is not possible for name based vhost, but possible for IP based vhost, so an listener level connection limit is possible. George
  11. M

    PHP5 + eAccelerator?

    You need to do "make clean" after changing php configuration, order of configuration option does not matter. :-)
  12. M

    Chained SSL Certificates ?

    We use SSL_CTX_use_certificate_chain_file() function in openssl to load the chained certificate. below is the descript of this function from openssl document. So, I think you need to merge your server certificate with the CA certificates to one file if you had not done so yet.
  13. M

    .htaccess in 2.1RC2

    Thank you for the bug report. This issue should have been fixed in our code base, please avoid using any "php_*" directive in a .htaccess file for now.
  14. M

    PHP5 + eAccelerator?

    For PHP with fcgi SAPI, you can just overwrite the PHP binary. If you want the best PHP performance, try lsws 2.1RC2 + PHP with litespeed API, instruction at: http://www.litespeedtech.com/lsapi/
  15. M

    PHP5 + eAccelerator?

    Yes, PHP5 + eAccelerator with either FCGI SAPI or our LiteSpeed SAPI works very well with lshttpd.
  16. M

    Rewrite Size limitation

    You are welcome. You'd better add a default value for the map, there is bug will crash the server when no match found. it will be fixed in next release. RewriteRule ^statetest\+(.*).html$ list-hospitals.phtml?State=${abbr:$1|unknown} [QSA]
  17. M

    Rewrite Size limitation

    have you tried RewriteRule ^statetest\+(.*).html$ list-hospitals.phtml?State=${abbr:$1} [QSA]
  18. M

    Rewrite Size limitation

    Yes, you can use RewriteMap together with rewrite rules defined in a .htacess file, at least with LSWS. The RewriteMap must be defined at vhost level under the "Rewrite" tab for that vhost using the web admin interface, then that rewrite map can be referenced by any rewrite rule.
  19. M

    Rewrite Size limitation

    We will increase the limit to 512KB in future release, is that large enough? That is the size limit of signle XML entry, it is fine as long as the total size of one group of rewrite rules is not over the limit. Rewrite rules in .htaccess does not have this limit. Apache's rewrite engine...
  20. M

    LiteSpeed Web Server 2.1 When will it be available?

    Thank you for your interests in our product. :-) RC2 is pretty stable for features it has now and has been used by couple large websites in production. As we are actively adding new features, there will be a RC3 release before the final 2.1 release The target release date for 2.1 is by...
Top