Search results

  1. M

    openssl 0.9.7h or 9.8a?

    LSWS has not been tested on FreeBSD 6.0 yet, it may not work at all. Can you use FreeBSD 5.x instead?
  2. M

    Perl Preload - need help urgently

    I don't know what exactly cause this problem. Did you set the "setuid" bit on the CGI script or lsperld.fpl? I can take a look if you don't mind PM me the login information for your server.
  3. M

    Perl Preload - need help urgently

    You must have FCGI.pm installed, use command perl -MCPAN -e 'install FCGI' to install it.
  4. M

    Perl Preload - need help urgently

    Here you go. Name perld Address uds://tmp/lshttpd/perld.sock Max Connections 20 Environment FCGI_PERL_MAX_REQ=1000 Initial Request Timeout (secs) 60 Retry Timeout (secs) 0 Persistent Connection Yes Connection Keepalive Timeout N/A Response Bufferring No Auto Start Yes...
  5. M

    Perl Preload - need help urgently

    Please try to follow this to setup a FCGI app, :-) http://www.litespeedtech.com/docs/HowTo_QA.html#qa_extapp The configuration should looks pretty much like the lsphp LSAPI app. After that, just add a script handler for "perl" using the fcgi app as the handler.
  6. M

    Rewrite before reverse proxy?

    Thank you for your praise. Unfortunately, our current reverse proxy interface just pass the original request though, the rewritten URL cannot be applied to it yet. Instead of using lighttpd with SCGI, maybe you can try Rails on LSWS via FCGI interface on the backend, just make sure to turn...
  7. M

    503 is back on 2.1.9 / lsapi version 1.7/ PHP 5.0.4

    The "Auto Fix 503 errors" feature will restart LSWS automatically when there are certain amount of 503 errors within certain time period, it can be fix some PHP reliabilities issues, but can not do much to PHP coding errors, as the new PHP instances will have this kind of problem soon after the...
  8. M

    Perl Preload - need help urgently

    Please try this. http://www.litespeedtech.com/docs/HowTo_QA.html#qa_perld
  9. M

    Upgrade replaced some content in DEFAULT directory

    Yes, we will change the installation script, not to update the DEFAULT vhost while upgrading. Some people always change the default vhost for their own web site instead of creating their own vhost, customers are always right. ;-)
  10. M

    No UTF-16 Support?

    If I change the encoding from UTF16 to UTF8, then I can view the page properly. I guess then page content is not really in UTF16 encoding.
  11. M

    No UTF-16 Support?

    I don't know it really is a problem of the web server or not. The page has been successsfully delivered as I can view the page source. I am not an expert on HTML encodings, I wonder if you change the meta tag in page header from <meta http-equiv="Content-Type" content="UTF-16" /> to...
  12. M

    Content - RewriteCond case sensitive for %{REQUEST_FILENAME}

    Thank you for trying our product. It is not a bug in LSWS, that's exactly how the rewrite rule should work on a case sensitive file system. Same thing will happen to Apache as well. It is a good idea to stick to lower case for all of your directories. No, it is not possible within write...
  13. M

    ColdFusion Support

    I think you can use LSWS's reverse proxy interface to talk to backend cold fusion app server now. It is not likely for us to develop a dedicate interface for Coldfusion bases on current demands. :-)
  14. M

    qmailadmin + lsws 2.1.9

    You need to define a CGI context with URI: /cgi-bin/ or /cgi-bin/qmailadmin, location should be the path to cgi-bin directory or the CGI script.
  15. M

    PHP - Blank Pages

    I think you'd better reinstall LSWS, make the the PHP test page works, then add your own vhost configuration, please don't change the example vhost, create your own. You can turn on debug logging by changing "Debug Level" to "High". If your web application use any special PHP module, you...
  16. M

    Does adding a virtual host *require* a service restart?

    All requests currently being processed will be finished as normal. Yes, service restart will need to start a new server instance and process configuration file, but the load introduced by it is minimum, should not be a big impact to the service speed. I am afraid not, at least it is not...
  17. M

    login problem

    How about clear the cookie for the admin interface.
  18. M

    stderr.log

    Are you using a Fast CGI called "collect2", "composite" or "convert"? when you build those binaries, you have to copy the lt-xxxxx under the .libs/ directory, the binary you are using is just a shell script wrapper.
  19. M

    login problem

    Please check the permission and available space of the temp directory that used to store PHP sessions, remove all old session data. Close all your browser windows and open a new one.
  20. M

    Does adding a virtual host *require* a service restart?

    Hi Joe, Restarting litespeed server will not cause any service interuption. If you want to avoid restart, you can configure only one vhost and use mod_rewrite if configuration for all of your sub domains are similar, like only document root is different. Using dedicated vhost...
Top