Search results

  1. M

    Installing with Cpanel

    Sorry, my misunderstanding. I wonder if it is a feature in PHP, not really related to Apache or Cpanel, maybe something has been done in Apache. But anyway, I think we can do the similar thing if we figured out how this being implemented with Apache/Cpanel. Would you like to help? :-)
  2. M

    Installing with Cpanel

    htacess support has not been properly turned, you need to turn it on at both server and vhost level.
  3. M

    Installing with Cpanel

    Yes, php configuration overriding is supported with LSPHP. :-)
  4. M

    cache-control header

    You should be able to do that with next release 2.1.13. :-)
  5. M

    awstats bug - i think

    Don't change the log file name, just let LSWS handle that for you. if you see accesslog.awstats, just remove it.
  6. M

    Support for rails' upload progress plugin?

    Unfortunate, LSWS waits for the whole request before forwarding it to backend scripting engine. we does that because backend don't need to wait for the slow I/O, it will become very expensive if you got a lot of client doing that at the same time.
  7. M

    awstats bug - i think

    Please check the permission of the working directory and the log file.
  8. M

    PHP Set UID Mode

    Just define a dedicate PHP FCGI or LSAPI application, php script handler, and set "CGI Chroot Mode" to "Doc Root UID". http://www.litespeedtech.com/docs/VirtualHosts_Help.html#vhCGISetUidMode For multiple similar vhost, you can use our vhost template feature.
  9. M

    awstats bug - i think

    What name is used for this vhost? have you changed it? Maybe you should remove the working directory and let LSWS configure awstats from scratch.
  10. M

    recommended production environment

    It is hard to tell the real performance under vmware. Our test shows that there is no big difference between linux kernel 2.4 & 2.6. But we do find the benchmark result is much worse when ab in apache 2.0.x is used. So always use an "ab" from apache 1.3.x. And we found linxu 2.6's poll...
  11. M

    awstats bug - i think

    What URL were you using to access awstats? You don't need to and should not specify "config" parameter with LSWS, just use a URL like http://your.domain/awstats/
  12. M

    HTTP_ACCEPT_LANGUAGE not working

    It is a bug in LSAPI code, if you build your own PHP binary, you can fix it by changing two line of code at beginning of "lsapilib.c". search for "HTTP_ACCEPT_LANG", change it to "HTTP_ACCEPT_LANGUAGE", then serch "11, 19, 20, 16,", change "16" to "20", then rebuild your lsphp binary. If you...
  13. M

    LiteSpeed 2.1.12 Standard with Rails...

    You are welcome. Glad that you are happy with our product.
  14. M

    mod_expire?

    Just define a context mapping to that directory and set expires there.
  15. M

    mod_expire?

    http://www.litespeedtech.com/docs/Context_Help.html#expiresByType Example: image/*=M300
  16. M

    new Apache coexistence option

    Sure, we can add the IP offset when we get a chance.
  17. M

    LiteSpeed 2.1.12 Standard with Rails...

    No need to configure a script handler, just defined a FCGI context with URI /dispatch.fcgi and pointing it to the dispatch.fcgi application.
  18. M

    LiteSpeed 2.1.12 Standard with Rails...

    Have you change the last line of rewrite rule to RewriteRule ^(.*)$ /dispatch.fcgi [QSA,L] Have you defined a FCGI context with URI /dispatch.fcgi and pointing it to the dispatch.fcgi application?
  19. M

    new Apache coexistence option

    Your purpose is slightly different from what we intend the Port option for. In our mind, it was just for testing purpose when people want to switch from Apache to LSWS, two servers can co-exist on different port during the test period and make sure everything work properly on LSWS, then turn off...
  20. M

    new Apache coexistence option

    For the same purpose of the Apache Port Offset, or for something else? I do not see any advantage of doing that if it is for the same purpose.
Top