Search results

  1. M

    Child process limits

    It is cause by a bug in our lscgid, when php started in suEXEC mode. the fix will be in 3.3.5 release.
  2. M

    LiteSpeed logs eating my hard disk

    delete it in a cron job, and you can set log level to ERROR. check the error log, if those are PHP errors, you should fix your php code.
  3. M

    LiteSpeed logs eating my hard disk

    You can remove those log files.
  4. M

    Rails staging environment

    There is one more place need to be changed, so the default rails configuration does not take staging, will be fixed, just override the environment in the specific rails context configuration.
  5. M

    gd jpeg

    try rpm -ql libjpeg-devel Then specify the path for libjpeg PHP configuration parameter accordingly.
  6. M

    [Sun Jan 27 10:39:48 2008] [apc-error] apc_mmap: mmap failed: Cannot allocate memory

    try "ulimit -a", raise the memory then start LSWS. see if it helps.
  7. M

    Apache to Litespeed in Cpanel

    You can ignore that warning message. has no harm when you use LSWS with Apache httpd.conf
  8. M

    lsapi compile problem - xslt-sablot

    It must be some mismatch libaries, not related to LSAPI. You can try build a CLI version, without lsapi.
  9. M

    Child process limits

    I will check suEXEC.
  10. M

    Apache to Litespeed in Cpanel

    No, VPS license only works in a VPS, not in a physical server.
  11. M

    Child process limits

    Yeah, you can verify the limit by run "ulimit" from the PHP process. Try it from command line first. I think it may related to how it was handled by linux kernel. Try a strace lshttpd when it spawn a new PHP process, see if ulimit has been called. Are you using suEXEC?
  12. M

    Controllers with the same name in different namespaces

    I think it maybe related to ruby internal bugs, as I remember, there are bug related to popen() or other functions use fork() then exec(), if exec() failed, the forked children process does not shutdown properly.
  13. M

    [req] asp.net

    Mono has FCGI support now, so it should work with LiteSpeed, just not when Apache httpd.conf was used.
  14. M

    LiteSpeed Startong time ?

    If you stop Lshttpd then start it, it may take up to 30 seconds as the old lshttpd process need to finish all the lingering requests. You can either force lshttpd to stop by killing them with "-9", or always use "./lswsctrl restart" instead of "stop" then "start".
  15. M

    LiteSpeed and Apache

    It is not possible to transfer httpd port from LiteSpeed to Apache, LiteSpeed does that during a graceful restart. Apache does not know how to take it. ;) LiteSpeed's watch dog process should never die and new instances should be started if a child process crash, the impact should be minimum...
  16. M

    Child process limits

    Which OS are you using? The pcntl_fork() should fail when process limit has been reached. the code may still looping and waste CPU time, but it should not bring down the whole server. We will check.
  17. M

    Upgrade Issue with Xcache

    If you upgrade PHP, you must rebuild Xcache, double check the directory for the extension if correct.
  18. M

    [Sun Jan 27 10:39:48 2008] [apc-error] apc_mmap: mmap failed: Cannot allocate memory

    Which OS are you using? You may need to install LSWS with root user in order to lift the memory limit imposed by the OS by default.
Top