Search results

  1. M

    Translating this test using Mocha

    try http://www.ruby-forum.com/ It is bridged with the mailing list.
  2. M

    php fcgi

    It might be PHP script or MySQL performance issue, all PHP processes has been blocked for some reason, so the waitQ goes up. Do you have any abnormal error message in your error.log, stderr.log? Should give LSAPI PHP a try ASAP.
  3. M

    odd error.log messages, lots of lsapi spawning

    Pleae try getting rid of <extMaxIdleTime>600</extMaxIdleTime> see if it help or not.
  4. M

    problem with part of my site when using LiteSpeed

    I think it is a PHP problem, compare the configuration of PHP for LiteSpeed and Apache in phpinfo() page and use the same configuration for LiteSpeed.
  5. M

    Forwarding SSI/SHTML To Apache

    If possible, please send me temp login to your server? for admin console. a sudo user or root login may needed as well for investigation.
  6. M

    problem with part of my site when using LiteSpeed

    We do not have much clue, we run the same version of vB, the admincp works fine. Check the html source code, see if it is a partial page? Check for PHP errors in lsws/logs/error.log and lsws/logs/stderr.log.
  7. M

    I really really need to disable these core dumps

    check the core file against the php binary with GDB as the other user posted, it should give a good idea what is the problem.
  8. M

    Litespeed doesn't import apache conf correctly

    If you want to configure RoR vhost via the web console, you can add listener for individual IP on port 80 and 443. That listener will be used by vhosts configured in Apache httpd.conf as well.
  9. M

    ruby-lsapi doesn't compile on mac osx leopard

    The correct fix should be http://www.litespeedtech.com/support/forum/showthread.php?t=1552 maybe forgot to apply the fix in the new release.
  10. M

    Translating this test using Mocha

    Hi, You are welcome to post ruby/rails programming questions here. However, unless we got a few true RoR experts hanging around here, you are more likely get your answer quicker by posting to corresponding mailing list. :)
  11. M

    Symbolic links in httpd_config.xml

    I did not find any where in the web console to replace a symbolic link with the real path. Can you change it back to the link? Will it change back to the real path? How can you reproduce it?
  12. M

    specify an alternate conf directory

    Did a little google search for "linux nfs aio", the result does not indicate that aio for nfs has been supported.
  13. M

    I really really need to disable these core dumps

    If your core dump looks exactly like above, it is a ioncube loader problem, there is nothing we can do other than file a bug report to the source.
  14. M

    litespeed 3.2.3 vulnerabilities

    we are at 3.3.3 now.
  15. M

    About the license and CPUs

    You can choose between 2-CPU or 4-CPU license, if you I/O wait is higher than 10%, go with the 4-CPU license. You can upgrade to 4-CPU license later if need. The trial license is a full 2-CPU license for 15 days.
  16. M

    About the license and CPUs

    You are free to use 1-CPU, 2-CPU or 4-CPU license on your server.
  17. M

    any how to secure server

    http://www.litespeedtech.com/how-tos.html#qa_dos
  18. M

    mod_security is not running ?

    If you use LSWS with httpd.conf, just configure security rule from httpd.conf, request filter only have effect on vhosts configured natively. And LSWS only block requests that does not result in "404 Not found".
  19. M

    mod_security is not running ?

    You have a security rule SecFilterSelective THE_REQUEST "/g00d/" denyIf you request http://your.domain/g00d/...., if the corresponding file does not exist, Apache will return 403 access denied, while LSWS will return 404 not found. it is as designed, as 404 will not result in any security...
  20. M

    mod_security is not running ?

    LSWS will not try to test a request against security rules if the request results in 404 Not found. So, if you /g00d/ directory does not exist, it just return 404. That's intentional behavior of LSWS.
Top