Search results

  1. N

    [solved] vBulletin + LiteSpeed Cache

    lsws don't cache static content since it's not needed at all or in most scenarios. lsws serve static content quickly and consume little system resource. when a static content i.e., an image is requested repeatedly, linux may cache the image in memory, so lsws serve the image more quickly...
  2. N

    LiteSpeed + cPanel + Mongrel

    you can create vhosts under admin console, it's called "native virtual host". litespeed support the 2 types of virtual host at the same time -- native vhost and vhosts from apache's httpd.conf. In fact, native vhost has higher priority than non-native vhosts. this is a trick but maybe very...
  3. N

    [solved] vBulletin + LiteSpeed Cache

    current algorithm, Cache Hit Rate = Total Cache Hits / Total Req = 1,288/17,574 = 7.33% but since lsws don't cache static content, like .css/.js/.jpg etc, but these static content also counts as Req, so the cache hit rate looks low.
  4. N

    How to Prevent DDoS with LiteSpeed

    this is the default setting. here's my recommendation: Static Requests/second: 10-20 Dynamic Requests/second:1-5 Connection Soft Limit:25 Connection Hard Limit:30 Block Bad Request:Yes for inbound/outbound bandwidth, I've not much experience, you can experiment on it. if above settings...
  5. N

    How to Prevent DDoS with LiteSpeed

    please try yourself first: lsws admin console->Server->Security->Per Client Throttling give a screenshot of the settings you select, then I can advice how to adjust them based on my experience.
  6. N

    [solved] vBulletin + LiteSpeed Cache

    yes, should add /modcp as well and other URLs should not be cached.
  7. N

    [solved] vBulletin + LiteSpeed Cache

    yes. otherwise will have the issue you reported in the #19 post of this thread.
  8. N

    [solved] vBulletin + LiteSpeed Cache

    from the screenshot, it's correct result. please look at the cookie from the screenshot: if_usrid=1 if_password=... when these strings exist in cookie, indicate that this is a logged in user, so NOT return the cache. cache is for guest only. so you just logout and visit your forum again as a...
  9. N

    [solved] vBulletin + LiteSpeed Cache

    yes. looks working now. another change I did is Virtual Hosts-> ...org->Cache->Enable Cache:"Not Set"->"No" and restarted lsws
  10. N

    [solved] vBulletin + LiteSpeed Cache

    there is an extra space in line: before \.php$. please remove it and please remove the 3 lines: sine your cookie is start from if_
  11. N

    [solved] vBulletin + LiteSpeed Cache

    vBulletin settings looks ok. it looks that cache rewriterule not enabled. please enable it, I'm testing it.
  12. N

    [solved] vBulletin + LiteSpeed Cache

    please PM the vBulletin's admin access, I'll do the final check.
  13. N

    [solved] vBulletin + LiteSpeed Cache

    please follow http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:litespeed:cache:vbulletin steps 1 and 2, install litespeed_cache.xml
  14. N

    [solved] vBulletin + LiteSpeed Cache

    1. since you don't use virtual host level rewrite now, you can change back Enable Rewrite:Yes->No 2. what's the ?^?^ in this line? RewriteRule /(.*\.php)?$ ?^?^ [E=Cache-Control:max-age=120] please change it to RewriteRule (.*) - [E=Cache-Control:max-age=120]
  15. N

    [solved] vBulletin + LiteSpeed Cache

    cached page in firebug, should have response header: X-LiteSpeed-Cache:hit the rewrite rules better put in DocumentRoot/.htaccess, mixed with vBulletin's current rewrite rules. now you put those rules in virtual host's rewrite section.
  16. N

    [solved] vBulletin + LiteSpeed Cache

    Total Cache Hits: 6 then how do you know if a page is cached or not ?
  17. N

    [solved] vBulletin + LiteSpeed Cache

    not yet. I need you confirm if cache for /test.php works fisrt.
  18. N

    [solved] vBulletin + LiteSpeed Cache

    the cache works now, please test: www.yourdomain.com/test.php what I changed: virtual hosts->yourdomain->Rewrite->Enable Rewrite:No ==> Yes and added one line in Rewrite Rules: RewriteRule /test.php - [L,E=Cache-Control:max-age=120] in response header, can see X-LiteSpeed-Cache:hit
  19. N

    [solved] vBulletin + LiteSpeed Cache

    to play with cache, you can try to cache one page, e.g., phpinfo.php if you fail to cache this page, PM me your server's access info, I can take a quick look.
  20. N

    [solved] vBulletin + LiteSpeed Cache

    >I already have X CACHE, is there any issues with it? xcache is php opcode cache, not relate with litespeed page cache at all. >Btw, that works only for guest caching? What about members after they logged-in? Are they cached as well? you can try to cache all pages including logged-in...
Top