Search results

  1. M

    Expires header not updated when status 304

    That's because no index file is available, and autoindex is off, before, it returns 404 not found, but another user said, Apache return 403, so we change it to match Apache behavior.
  2. M

    random 404 on mod_rewrite

    Are there rewrite rules in .htaccess of the root folder? Random error is hard to debug, and we need at least some debug log for request results in 404, with rewrite log enabled, in order to look it further. It might have something to do with htaccess cache updating. Is that possible to...
  3. M

    Expires header not updated when status 304

    Do you have any request filter rule configured? Maybe turning on "Debug logging" by set "Debug Level" to "High" will help.
  4. M

    Expires header not updated when status 304

    Yes, just run the install.sh, then select "upgrade", your current configuration will not be touched.
  5. M

    Log Rotation

    Yes, you can give it try. It might work if the permission of production log and log directory has been set properly.
  6. M

    Random 503 errors with LS admin

    It requires "socket" module, you can check the configuration line with "./admin_php -i".
  7. M

    Random 503 errors with LS admin

    Maybe the prebuilt PHP does work well on your server? You can try to replace lsws/admin/fcgi-bin/admin_php with a PHP binary built from source. Or, it is related to the new PHP 4.4.7 release. We have not heard this problem from other users yet.
  8. M

    APC trouble

    Yeah, that's the right way to let all PHP process share the same opcode cache.
  9. M

    Query string and ruby lsapi

    Lazy. ;) The bug was fixed shortly after the initial release, so I guess not many users have downloaded it. Unfortunately, forgot to update the tgz package. My bad.
  10. M

    Query string and ruby lsapi

    It turns out that we only updated the gem package, but not the tgz package on our web site. Just updated it, please download and reinstall.
  11. M

    Accept-Encoding not checking q value

    That's true that LSWS does not check the q value. Is it possible to remove "gzip" completely from the header? It will save some effort on both side. ;)
  12. M

    Query string and ruby lsapi

    I think you probably is not actually using the latest ruby lsapi 2.5. Manual installation will have higher priority than GEM installation, make sure to remove all lsapi.so under your ruby library directory and reinstall again. "?image" is caused by a bug in earlier 2.5 release package, should...
  13. M

    Caching(reverse proxy) function?

    We are in the process of updating the web site.
  14. M

    Manual Php Compile with cPanel

    Those articles looks great, I will creat links in our wiki.
  15. M

    Manual Php Compile with cPanel

    Checkout one tutorial posted by a litespeed user http://creativeflux.co.uk/entry/replacing-apache-with-litespeed/ We probably will provide a script to build lsphp more easily in the future. LiteSpeed PHP installation is completely independant to cPanel's php installation, if you do not mix it...
  16. M

    Auto Start + Django

    That's great! Thanks! :D
  17. M

    Auto Start + Django

    Thanks! It will be a better reward if you can help us spreading the words in the django community. :D Also, if you do not mind, please help us updating the dyango wiki entry http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:django_fcgi_python Have fun! :)
  18. M

    Auto Start + Django

    UDS socket is created by the server. Is the python process running, maybe it dies immediately. One way to trace it down is to use "strace" to trace the djyango process, command is like strace -o strace.log <orignal FCGI command> You probably cannot use this command directly in the App...
Top