Search results

  1. N

    [Resolved] Litespeed Wordpress Cache Issue

    it looks nothing special. login the lsws web admin, following https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:lscwp:installation to set cache policy correctly, the test site works as expected -- either home page or article page are seen cached.
  2. N

    Anyone tested LSCWP on Wordpress MU?

    yes, I know it's tested on a wordpress MU production server and working fine. not sure if there are other MU setups.
  3. N

    [Resolved] Litespeed Wordpress Cache Issue

    what's its ownership ? can you set it to 777 and see if it works ?
  4. N

    [Resolved] Litespeed Wordpress Cache Issue

    here's the latest lscwp wiki: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:lscwp:installation you can ignore "Cache Storage Settings" since you already set it in alternative way(under cPanel) please check your "Cache Policy Settings" if matching with the wiki.
  5. N

    Check if Litespeed Wordpress Cache is working

    yes, that means no request hit cache. maybe you can try a simple phpinfo.php, see if cache hit. I don't know the exact meaning(need developer's input). probably mean that LSCWP try to cache this page but failed due to some reason. any special plugins for this wp site ? maybe conflict with LSCWP ?
  6. N

    508 Insufficient Resource

    litespeed admin run admin_php5 as user "lsadm", check lsadm's LVE limit
  7. N

    Issues Getting LSCache Working

    for wordpress, now "lscache plugin for wordpress" is recommended. the document: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:cache:lscwp
  8. N

    Need help configuring LSCache for wordpress website

    if checked, will try to cache every page, include /wp-admin/,wp-login.php --- this is not correct. if the website just a few .php files, and all or most pages can be cached, then "Enable LiteSpeed Cache" and use RewriteRule abc.php - [E=Cache-Cotrol:no-cache] to exclude abc.php from cache. if...
  9. N

    [Resolved] Problem with GeoIP & .htaccess

    http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritelog RewriteLog Directive Context: server config, virtual host RewriteLogLevel Directive Syntax: RewriteLogLevel Level Default: RewriteLogLevel 0 Context: server config, virtual host please note above "Context", not...
  10. N

    [Resolved] Problem with GeoIP & .htaccess

    probably bug in 5.1.x, but to fix it, we need reproduce the issue. can you enabled rewrite debug log, and access the problem URL, send the log here ?
  11. N

    [Resolved] Problem with GeoIP & .htaccess

    yes, should be an issue with 5.1.2 5.1.3 may be out within next 24 hours. please test if it's gone with the new release. also you can enable rewrite debug log ( http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritelog RewriteLog RewriteLogLevel ) to know which steps has been wrong. (by...
  12. N

    [Resolved] Problem with GeoIP & .htaccess

    it looks more clear. it may relate to other rewrite rules ... in my simple unit test, only a few lines of rules, no redirect loop.
  13. N

    Differences Between 5.0 and 5.1?

    yes, 5.1 has running on some ISP's production servers and we have fixed some bugs base on their report. since it's easy to switch between different version, it's almost 0 risk to install 5.1. you can closely monitor for 1~2 hours, and switch to 5.0 when you leave. by switch to 5.1 early, you...
  14. N

    [Resolved] Problem with GeoIP & .htaccess

    My test didn't include RewriteCond %{HTTP:CF-IPCOUNTRY} !^(AU)$ can you test if FilesMatch works on your server ? it works on my test server. suggested steps: 1.add following in .htaccess: <FilesMatch "abc.php"> RewriteEngine on RewriteRule ^ - [F,L] </FilesMatch> 2. access it by #curl -I...
  15. N

    [Resolved] Problem with GeoIP & .htaccess

    I did similar test, looks it's working with latest 5.1.2 build 5. #cat /usr/local/lsws/autoupdate/build 5 if above file "build" not exist, or less than 5, please force-reinstall 5.1.2 to latest build, see if the issue gone.
  16. N

    Need detailed step to enable Imagemagick + PHP

    please ensure you've done following: #yum search lsphp56 #yum install lsphp56-devel
  17. N

    Litespeed Cache in /dev/shm

    no need this is enough.
  18. N

    Litespeed Cache in /dev/shm

    that's enough after boot. need create a cron job to delete expired cache under /dev/shm/lscache /dev/shm is memory, if memory is full or near full, the whole server's performance will reduce greatly.
  19. N

    Litespeed Cache in /dev/shm

    you can put the script in /etc/rc.local mkdir /dev/shm/lscache chown nobody:nobody /dev/shm/lscache
Top