Search results

  1. M

    Connection reset by peer entries in log

    That's because PHP process exit after serving previous request. LSWS will try another PHP process. As long as there is no "oops, 503", it is fine.
  2. M

    404 Not Found

    If you use LiteSpeed with Apache httpd.conf, you just use the "ErrorDocument" directive to set your error page.
  3. M

    Can't access the web admin interface on a recent conversion from Apache to LSWS

    You need to open port 7080 with your firewall.
  4. M

    Symlink permission denied allthough same owner

    I think the vhost was configured not to allow symbolic link, since the owner matches, it should not be a problem if symbolic links are allowed. I can login to the server to take a look at this issue if you want.
  5. M

    503 error with Rails 2.3.2

    Your app works fine in our lab. So, it must be your local environment. Please double check the RailsRunner.rb against the one in our installation package 4.0.2 Check if there are multiple version of Ruby installed and the correct one has been used.
  6. M

    503 error with Rails 2.3.2

    I think an App generated by Rails 2.3.2 is likely to break with 2.2.2. I only care about the result with 2.3.2. If the app can be easily packed, please send it to bug@... , we can try it in our lab.
  7. M

    lsphp5 is using too much CPU

    It does not looks right. Better trace individual calls with strace -tt -T -p <pid> You can get a clue about what is going on as well.
  8. M

    LSWS stops rotating logs for no apparent reason

    The parent process of lshttpd running as root is responsible for log rotation, so, if it happen next time, please "strace" that lshttpd process, it should do "stat()" regularly on all log files, and try to do a "rename()" if file size is over the limit. Might be something wrong with that process.
  9. M

    Enable cURL

    If it complain about missing some libraries, just try installing the <libxxx>-devel rpm with yum.
  10. M

    Enable cURL

    try yum install curl-devel or install libcurl or libcurl4 for your linux distribution.
  11. M

    htaccess compatibility

    There is a solution with using suhosin http://www.webhostingtalk.com/showthread.php?t=600238
  12. M

    htaccess compatibility

    First of all "enable_functions" does not exist, http://us2.php.net/manual/en/ini.list.php Second of all, if it was available, it wont be able allowed in .htaccess, just like disable_functions If PHP can have that function with Apache, there is no function had ever been disabled with Apache.
  13. M

    Failed to generate the realtime reports!

    It is OK to have it at "4". Check the number of PHP processes running. You can try disabling ea cache temporarily see if the high CPU usage PHP process goes away.
  14. M

    Failed to generate the realtime reports!

    Maybe there are too many running PHP processes cause high memory usage. Set "Max Idle Time" to 10. http://www.litespeedtech.com/docs/webserver/config/extapps/#extMaxIdleTime better not using /home1 , it will cause high I/O load.
  15. M

    Failed to generate the realtime reports!

    You can strace the PHP processes that uses a lot of CPU, if it is from one user, maybe you should check the script from that user or just ban that user see if it helps. It might be a bug in eaccelerator, so, clean /dev/shm before it is full.
  16. M

    Failed to generate the realtime reports!

    You can find out how much memory reserved by those loaders from phpinfo() page and reduce it with php.ini .
  17. M

    503 error with Rails 2.3.2

    Does your app run properly under 2.3.2 with mongrel or webrick? We tried the default rails app generated with 2.3.2, works fine.
  18. M

    Litespeed Internal request filter audit.log

    Latest 4.0.3 build allow you to configure a audit log via Apache Style configuration at server level. Just change the version number in the download link to get it.
  19. M

    htaccess and DocumentRoot

    should have take care of the missing .htaccess under docroot scenario in the latest 4.0.3 build. You can give it a try.
  20. M

    failed to find flength, ffmpeg-php not compatible with LiteSpeed?

    We will have it ready sometime in May.
Top