Search results

  1. M

    [Resolved] Content Encoding Error on .html but not .htm (same file, renamed)

    Can you check the response header with firebug, I need to know what exact header causes the problem. Have you tried different browser? How about rename the file to "index2.html"? Try that file under a different domain? I think it should be some thing special for that domain.
  2. M

    Issue with the latest litespeed + php5

    Maybe you are using a PHP not compatible with your wordpress code. If you use PHP 5.3.2, try 5.2.13 .
  3. M

    Status 400

    That's someone sending garbage data to the server, not valid HTTP request.
  4. M

    Server don't restart if new request comming

    LSWS is designed to keep serving requests during graceful restart until the new instance of LSWS is ready to serve requests, then old process will stop accept new connection, turn off keepalive, and quit after all pending requests are finished or request timeout. There might be some delay, but...
  5. M

    LSWS 4.0.14 and cpanel plugin broken?

    if /usr/local/apache/bin/httpd_ls_bak exists try /usr/local/apache/bin/httpd uninstall then try starting apache manually from command line, see if there is any error message. it maybe a problem with httpd.conf, Apache wont start.
  6. M

    Architecture of LiteSpeed

    single thread, event driven. can start multiple lshttpd process to take advantage of SMP.
  7. M

    [RESOLVED] LSWS 4.0.13 - Signal 9's gone... Signal 15's new

    We are still working on it. In the mean time, you can try our wswatch.sh script. Update /usr/local/lsws/bin/wswatch.sh with bellow shell script. #!/bin/sh BASE_DIR=`dirname "$0"` cd "$BASE_DIR" BASE_DIR=`pwd` while [ "1" -eq "1" ]; do ERR=1 if [ -f /tmp/lshttpd/lshttpd.pid ]; then kill...
  8. M

    .htaccess proxy pass through

    You need to create a web server external app with name "www.google.ca".
  9. M

    vbulletin mods not working

    I think /statuses/update.xml is on remote server that twitter.php talking to, it requires authentication.
  10. M

    Litespeed restarting

    1 minutes plus might be normal for server with high I/O wait serving that amount of vhosts. If you strace lshttpd, you will find that most time is spending in waiting for stat() call to return. When LSWS restarts, the previous instance of lshttpd will continue to serve requests until the new...
  11. M

    URL Rewrite + PHP LSAPI hate the $_SERVER array

    In order to exactly match Apache's behavior, those variables are set differently depends on how your rewrite rule was configured, at vhost level? or at context/directory/.htaccess level? I think you set the rewrite rule at vhost level, you can try configuring the rules another way.
  12. M

    how to use Scan Request Body

    How do you turned off CGI in cPanel? If you switch back to Apache, CGI does not work, we will look into the issue, otherwise, it is the configuration.
  13. M

    SecFilterSelective -- Help

    You should refer to mod_security document.
  14. M

    Litespeed restarting

    Many vhosts are hosted by this server? Is I/O wait extremely high? Sometimes busy/slow disk I/O may make litepseed take some time to finish configuring all vhosts, but 8 minutes is extremely long, something is wrong.
  15. M

    Can't edit cache settings

    Only 2-CPU+ license can use that feature.
  16. M

    [Resolved] Lightspeed and hosting provider - Fails

    Current LiteSpeed does not support Allow from env= You can change those logic to using a rewrite rule, it more efficient.
  17. M

    Litespeed restarting

    Are you using cPanel? Have you checked error log for the period of outage?
  18. M

    Custom PHP Script Handler

    If only used for that VHOST, just add it at vhost level. In command, use path to lsphp-5.3.2 binary. Socket address should be unique, could be anything you want.
  19. M

    Custom PHP Script Handler

    create a external app called lsphpcerb, using lsphp-5.3.2 binary, at vhost level add or change script handler for ".php" using the lsphpcerb application.
  20. M

    [RESOLVED] LSWS 4.0.13 - Signal 9's gone... Signal 15's new

    Go through the code, looks like that as long as we make _check_ap_restart() function happy, we are good. Looks like this script is only for restart/graceful-restart, maybe there is another piece of code for forced stop, start sequence?
Top