Search results

  1. N

    [solved] LSLB Rewrite doesn't work

    RewriteRule ^test.rss http://www.google.com/ [L,R=301] --> RewriteRule ^/test.rss http://www.google.com/ [L,R=301] this is the difference between per-server and per-dir rewriterule. for further reference: http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html
  2. N

    Mobile Site Redirection

    if you use cookie, for RewriteCond %{QUERY_STRING} (^|&)mobile=1(&|$) should use HTTP_COOKIE instead of QUERY_STRING
  3. N

    Mobile Site Redirection

    how about this simple one: RewriteEngine On RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] RewriteRule (.*) http://m.domain.com/$1 [R,L]
  4. N

    [ASK] Use URL Rewrite in LiteSpeed

    lsws rewriterule is compatible with apache. but lsws can disable .htaccess at server and virtual host level. please check your http://www.litespeedtech.com/docs/webserver/config/general/#allowOverride settings.
  5. N

    error 503 concrete 5 CMS cache

    get 4.1.8 download url, then just change 4.1.8 to 4.1.9 in the url
  6. N

    error 503 concrete 5 CMS cache

    please try manually install 4.1.9 first, to see if 503 still exist.
  7. N

    vB seo + litespeed cache

    the rules looks fine. RewriteCond %{HTTP_COOKIE} !bb_userid= RewriteCond %{HTTP_COOKIE} !bb_password= since bb_userid and bb_password is customizable by vB, to be sure you're using the same cookie name - if you're using vb_userid and vb_passwords etc, please change above rules as well.
  8. N

    vB seo + litespeed cache

    I think the "issue" is because guest cache not set up correctly somewhere. We've enabled vb seo cache for quite a few users and not experienced this issue so far.
  9. N

    CXS or Litespeed ??

    sorry, just read http://configserver.com/cp/cxs.html it does mention litespeed: "Mod_security v2+, to enable upload script scanning (no supported for litespeed, nginx, etc. - only Apache v2+)" it looks just need a application hook in mod_security, CXS does the actual scanning. I'll...
  10. N

    CXS or Litespeed ??

    how about disable mod_security CXS, and run clamav to scan uploaded files ?
  11. N

    vB seo + litespeed cache

    I can take a look at your server if you give the access
  12. N

    vB seo + litespeed cache

    you can try cache 1 page first -- for example phpinfo() page, to get it working. you can do it in rewriterule.
  13. N

    High server load, should i upgrade ??

    in such case, please check: #sysctl net.ipv4.netfilter.ip_conntrack_max #sysctl net.ipv4.netfilter.ip_conntrack_count
  14. N

    [solved] Litespeed Rotating Logs Way To MUCH!

    should change the settings in cPanel --- how often to rotate the log files.
  15. N

    High server load, should i upgrade ??

    current load only 1~2, your customer should not feel slow at all. capturing output of "top -c" and lsws real-time stats on the busiest time, should be most helpful.
  16. N

    High server load, should i upgrade ??

    the load is not high --- i5 750 has 4 cores and your load is around 4. please paste the output of "top -c" for more info.
  17. N

    lsphp: suPHP-like paranoid mode

    please check if the new feature from 4.1.5 just what you want: Server -> Security -> Script Restricted Permission Mask: default is 000, set it to 022 and Server -> Security -> Script Restricted Directory Permission Mask
  18. N

    ERROR [ADMIN] authentication failed!

    if user/password not match, you can run /usr/local/lsws/admin/misc/admpass.sh to set new user/password.
  19. N

    Mahara and Litespeed

    it should be ok over 90%.
  20. N

    Refuses to load page

    it redirects to http://www.blackhatservers.net/dj/login.php and looks no problem at the moment ?
Top