Search results

  1. N

    Litespeed for Windows?

    not available for windows. check the platform list in download page: http://www.litespeedtech.com/litespeed-web-server-downloads.html
  2. N

    PHP Versions in Litespeed

    you can manually edit /usr/local/lsws/admin/html/utility/build_php/buildconf.inc.php to include latest php version. sometimes when our new lsws package release, not update the latest php timely.
  3. N

    [solved] vBulletin + LiteSpeed Cache

    there are also 2 wiki entries for cache vBulletin: http://blog.litespeedtech.com/2011/01/28/speed-up-vbulletin-sites-through-litespeed-built-in-cache/ How to enable LSWS cache for vBulletin http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:litespeed:cache:vbulletin How...
  4. N

    [solved] Make Litespeed compatible with Cloudlinux's limits

    Thanks for reminding us multiple times. I believe development has known your request since your first post. I appreciate your detailed description about the issue.
  5. N

    [solved] How to configure Litespeed Reverse Proxy

    please refer http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:reverse_proxy_cache 1. Create Web Server External App
  6. N

    need more than 2000 connections

    I don't think so. 2000 connections means 2000 lsphp processes. how many processes on your whole server during busy time? #ps -ef|wc 1 connection between lsphp5 and lsws can handle many requests; although it only handle 1 request at a time. once 1 lsphp5 process completes a php request, it's...
  7. N

    need more than 2000 connections

    in your screenshot of "top", all are php process, no mysql process seen. if mysql is on the same machine, so likely mysql is not the bottle-neck. also, check mysql slow query log, if any query take long time. when WaitQ is high, check #mysqladmin processlist to see if many mysql query...
  8. N

    need more than 2000 connections

    1.check if mysql is the bottleneck when WaitQ much greater than 0 2.if mysql ok, then the problem is php can't keep up with the big number of incoming requests / second opcode cache will help try run lsphp5 in daemon mode 3.if still can't keep with, set up another physical machine...
  9. N

    Disable log rotation not work

    that's really weird ... I can take a quick look at your server if you PM the access.
  10. N

    Wordpress BackupBuddy and LiteSpeed

    that may not be the final solution, just an workaround. we're still working on it --- to identify the root cause and completely fix it. Can you provide a test case which can 100% reproduce the issue? I have tried to reproduce the issue on our lab but not succeeded yet. backup size is...
  11. N

    Disable log rotation not work

    when you set "Rolling size"=0, log rotating in what size ? 2G ?
  12. N

    migrate from apache

    please refer: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:apache:ezcpanel How to convert your cPanel server to LiteSpeed in 20 minutes the downtime can be 0.
  13. N

    how to add Add Cache-Control Headers on .htacess

    any problem when you add it in .htaccess ?
  14. N

    Disable log rotation not work

    after modify the xml, need restart litespeed.
  15. N

    Litespeed Web Server Crash - Error code 4

    when did you install 4.2.2 ? #ls -l /usr/local/lsws/bin/lshttpd.4.2.2 do a force-reinstall 4.2.2, the error message may be gone.
  16. N

    Disable cache for redirect to mobile version

    wow, the script is super complex :) looks difficult or impossible to 100% apply the cache function however, there is an idea for your reference: set cookie for desktop in php script, for example, desktop=1 then RewriteCond %{HTTP_COOKIE} desktop=1 RewriteRule .*\.php -...
  17. N

    balancer only 1 cpu

    balancer is light weight since it only forward packets between backend server and user. no need powerful hardware. the bottle neck should be NIC. one CPU should be far enough to handle a 1G NIC. for multiple NICs or 10G NIC, not sure 1 CPU is enough or not and I'm not sure how to measure it...
  18. N

    Disable cache for redirect to mobile version

    need more info about "an included mobile-detector script", better provide the source code (can be a conceptual modified version)
  19. N

    litespeed on High I/O amazon ec2

    auto minify html should not be done by a web server. the standard way is to gzip the html, which reduce the size and not change the original content.
  20. N

    litespeed on High I/O amazon ec2

    no need at all, it only adds extra load. only dynamic page need cache; static page should be served by litespeed directly. you can do benchmark testing, see if litespeed will outperform a cache server when serve static pages. when request a static file many times, linux will put the file in...
Top