Search results

  1. M

    How do i know whether i am using litespeed or not?

    You can apply a free trial of the Enterprise edition. It will work a lot better than the standard edition with cPanel.
  2. M

    [uds://tmp/lshttpd/lsphp5.sock] Request in process stage, fail with 503

    It is hard to say which version is the most reliable one, as different user may trigger different bug. My suggestion is to try 5.2.9 and 5.2.10 on your server see which one is the best for you.
  3. M

    [uds://tmp/lshttpd/lsphp5.sock] Request in process stage, fail with 503

    That's due to PHP crash in middle of a request. If you use 5.2.10, you should fall back to 5.2.9, there are stability issue with 5.2.10.
  4. M

    Disable gzip for certain files (globally)?

    4.0.5 should have addressed that. I might be wrong, from the bug report I got, it relates to "Content-Encoding: UTF-8" header set by PHP. LSWS wont double compress response body.
  5. M

    shared hosting setup

    If you using PHP suEXEC, have no effect. Instead, should set "Max Idle Time" to "10" seconds. Initial Request Timeout can be set longer if user has difficulty to process a script takes long time to finish. Connection Keepalive Timeout should be -1 to keep the connection alive as long as PHP...
  6. M

    Unable to change Web Admin Pass

    You can try reset from command line /path/to/lsws/admin/misc/admpass.sh
  7. M

    v3.3.24 -> v4.0.5 update, lsws doesn't work anymore

    You need to stop LSWS first. Then you can move the lsws directory to some where else. "grep" you configuration files for "/etc/lsws", if found any, change it to the new location. Then try to start LSWS from the new location.
  8. M

    High traffic website / high server load

    I think you need to work on the MySQL DB side, the bad performance is usually caused by bad SQL query or missing table index in the DB. When the site is slow, in addition to slow query log, you can check "mysqladmin processlist" output, it will show which query blocks all other requests. Then...
  9. M

    v3.3.24 -> v4.0.5 update, lsws doesn't work anymore

    It is bad idea to install lsws under /etc directory, you can edit the configuration file lsws/conf/httpd_config.xml to remove /etc from access denied directory list. recommended location is /usr/local/lsws or /opt/lsws .
  10. M

    what do these mean?

    You can safely ignore those. Maybe some corrupt rewrite rules in htaccess file.
  11. M

    Major Problems

    It was caused by hanging lsphp5 processes. will look into the root cause if it happen again.
  12. M

    PHP6: Working, but no SuExec

    We will check what we can do about it.
  13. M

    Disable gzip for certain files (globally)?

    Maybe those has been cached, try cleaning up the cache. Install FireBug and check the response header for those requests.
  14. M

    lots of error_log and stderr.log

    Sorry for the late reply. Yes, you can safely remove any log file produced by LSWS. LSWS has built-in log file clean up feature, to remove log file older than certain days, looks like it does not work that well, will investigate.
  15. M

    detect loop redirection

    Should be loop redirection caused by rewrite rule or RedirectXXXX directives in .htaccess for that domain.
  16. M

    Userdir support

    Yes, inside virtual host section. if used inside the main httpd.conf, it will be default apply to all vhosts.
  17. M

    4.0.5 very unstable - restarted automatically 503 error

    checked the server and the conclusion is that PHP 5.2.10 is not stable, give random crash causes 503 errors. LSWS 4.0.5 + PHP 5.2.9 is super reliable and no 503 error at all. So, be cautious upgrading to PHP 5.2.10.
  18. M

    NoMemoryError when uploading large file

    set "Max Connection" to "1", see if it help or not. Maybe the 256M VPS limit has been hit due to multiple "ruby" process running, each process use a lot of memory.
  19. M

    LSWS 4.1RC1 release

    Can you provide a section of debug log for a request result in 500 error?
  20. M

    Proxying lsws 4.0.3 -> lsws 4.0.5: wrong gzip header

    How about access server A directly with client, does it gzip and give the correct gzip header? What the request headers send by Client? If you use tcpdump to get the whole request and response at server A, and B, it will be helpful.
Top