Search results

  1. M

    LiteSpeed compatibility issue with cPanel > cPanel blocking LiteSpeed

    Have you download and update to the latest 3.3.7 release ?
  2. M

    When will support for mod_security V2 rulesets be released?

    We will make LiteSpeed take 2.0 rules in our 4.0 release, beta will be available this month. It won't be a full replication, just under stand commonly used 2.0 syntax.
  3. M

    massive lsws shutdown 12-2am

    A better solution is available now. http://www.litespeedtech.com/support/forum/showthread.php?p=9201#post9201
  4. M

    LiteSpeed compatibility issue with cPanel > cPanel blocking LiteSpeed

    Here is the cure for this problem. Now, you need to manually apply it, we are working on an automated solution. Use the following shell script to replace Apache httpd executable, backup Apache httpd executable to httpd_ls_bak #!/bin/sh ARGS="$@" ARG1="$1" LSWS_HOME=/opt/lsws...
  5. M

    massive lsws shutdown 12-2am

    A simple shell script to check lshttpd and start LSWS, create a cron job. #!/bin/sh ERR=1 if [ -f /tmp/lshttpd/lshttpd.pid ]; then kill -0 `cat /tmp/lshttpd/lshttpd.pid` ERR=$? fi if [ $ERR -ne 0 ]; then /opt/lsws/bin/lswsctrl start D=`date` echo "$D: LSWS stopped, start...
  6. M

    massive lsws shutdown 12-2am

    Why do you think exim was doing that?
  7. M

    Is it possible to host RoR on Plesk without letting users require an ssh account?

    It should work with vhosts defined in Apache configuration just fine.
  8. M

    own php.ini

    Not possible when used with Apache httpd.conf. Just override the configuration from .htaccess or httpd.conf instead.
  9. M

    im not getting any web stat logs any more

    $ ls -ld /var/log/httpd drwx------ 3 root root 4096 Mar 5 23:27 /var/log/httpd
  10. M

    massive lsws shutdown 12-2am

    does all servers get "SIGTERM received, stop server" in the log?
  11. M

    massive lsws shutdown 12-2am

    Are you using cPanel CURRENT release? just switch to STABLE
  12. M

    A different Error 503 problem

    Please keep us posted if you find a solution. :)
  13. M

    massive lsws shutdown 12-2am

    All related to this, http://www.litespeedtech.com/support/forum/showthread.php?t=1824 We are working on a solution.
  14. M

    A different Error 503 problem

    The difference between litespeed and others are the stripped environment variables and one ruby process fork children processes to handle all the requests. The children process will inherit all file handles from parent. I don't know exactly what is DRb, but looks like it need to connect to a...
  15. M

    A different Error 503 problem

    That's ruby on Rails errors. Your guys are RoR developer, should be able to fix them one by one. ;)
  16. M

    A different Error 503 problem

    Please check the production.log and lsws/logs/stderr.log. If the ruby process is running, do "strace -f -p <pid_of_ruby>"
  17. M

    A different Error 503 problem

    Please set the process soft/hard limit as well, maybe to ">200".
  18. M

    im not getting any web stat logs any more

    Please check the permission of the directory holding log files, it should be accessible by "apache" user.
Top