Search results

  1. N

    How to use LS cache for my site

    I can try to set up an example cache for you(e.g., just cache a few pages) and you finish the rest.
  2. N

    [solved] Website loading become slow when at busy time

    yes, please note WaitQ=71 of liz. that's why the site is slow. what's your current "PHP suEXEC Max Conn"?
  3. N

    How to use LS cache for my site

    please give more detail about how you setup the cache. you can start to try cache 1 php page. what cache guide did you follow?
  4. N

    Streaming media server or LiteSpeed

    litespeed support pseudo-http streaming for mp3/mp4 file, so may not need an extra streaming media server at all. related wiki pages: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed:wiki:feature:flv_streaming...
  5. N

    [solved] Website loading become slow when at busy time

    can't view the image.
  6. N

    [solved] Website loading become slow when at busy time

    if PHP suEXEC is "yes", increase "PHP suEXEC Max Conn" may help. please give a screenshot of real-stat when slow-responding. and what's the problem when run apache ?
  7. N

    [solved] Website loading become slow when at busy time

    may be no difference. but you can have a try, so that you can switch to apache easily to compare with litespeed.
  8. N

    [solved] Website loading become slow when at busy time

    please refer: http://www.litespeedtech.com/support/forum/showthread.php?t=5271&page=4 see if your VPS has reached bandwidth limit.
  9. N

    [solved] Website loading become slow when at busy time

    got it -- so php not in suExec mode, but in Self Managed Mode. please increase max connections of lsphp5(default is 35), especially when you have a lot of memory. see if any improvement. Server->External App->lsphp5 Max Connections: 35 --> 100 (for example) Environment...
  10. N

    [solved] Website loading become slow when at busy time

    ok. then check what user litespeed and lsphp processes as: #ps -ef|grep litespeed #ps -ef|grep lsphp
  11. N

    [solved] Website loading become slow when at busy time

    php suExec enabled or not ?
  12. N

    '503 Service Unavailable'

    any message in error.log or stderr.log when access the URL ?
  13. N

    4.1.2 file uploads give 503 error

    are you using lsws 4.1.2 ? the issue was resolved in later 4.1.2 build. please upgrade to latest 4.1.4, see if still problem.
  14. N

    vB seo + litespeed cache

    moving the rules to top is recommended. if not working, you can post your rules here to see if any change to improve them.
  15. N

    htaccess redirect help

    yes, according to http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritemap its context not include .htaccess so looks no simple solution in .htaccess
  16. N

    htaccess redirect help

    then try RewriteMap
  17. N

    htaccess redirect help

    try: RewriteRule Gulls/Laughing_gull gulls/laughing_gull [R=301,L] RewriteRule Gulls gulls [R=301,L]
  18. N

    htaccess redirect help

    should remove a "/". try: RewriteCond %{HTTP_HOST} !^www\.wildart\.in$ RewriteRule ^(.*)$ http://www.wildart.in/$1 [R=301,L]
  19. N

    htaccess redirect help

    yes. the order of rules is important.
  20. N

    htaccess redirect help

    got it -- move the 2 lines to the very beginning, should work fine.
Top