Search results

  1. N

    How to fix Netbeans jdkhome error?

    how does it relate to litespeed web server or related php etc ?
  2. N

    [solved] User Activates WooCommerce Theme in Wordpress - 503 Error

    is it ok on apache ? to trouble-shooting the issue, need more info. for example, lsphp5 version #/usr/local/lsws/fcgi-bin/lsphp5 -i |head and lsws version, lsphp5 ext app settings.
  3. N

    Private cache max-age ?

    I think so, 4.2.2 has new cache feature and we've done many internal tests, most likely it has fixed some cache bugs in older release. yes, I've adjusted cache settings exactly with yours, and result is as expected: X-LiteSpeed-Cache: hit,private
  4. N

    Private cache max-age ?

    yes, 4.2.2 has been out for a while http://www.litespeedtech.com/litespeed-web-server-release-log.html and has run on some production server and I think it's stable enough now. you can switch between 4.2.1 and 4.2.2 anytime later without change the configuration file. to manually...
  5. N

    Private cache max-age ?

    my test result always: X-LiteSpeed-Cache: hit,private here's one of result: ~>curl -i 127.0.0.1/r.php HTTP/1.1 200 OK Date: Tue, 12 Feb 2013 10:55:17 GMT Server: LiteSpeed/4.2.2 Enterprise Connection: Keep-Alive Keep-Alive: timeout=5, max=100 X-LiteSpeed-Cache: hit,private...
  6. N

    Private cache max-age ?

    hmm ... I'd like to reproduce your result, to find out possible bugs. what's the cache policy you set ? and any other rewrite rules ? I did tests only for this simple php: /usr/local/lsws/DEFAULT/html>cat r.php <?php echo date("c"); echo "\n"; ?>
  7. N

    [solved] User Activates WooCommerce Theme in Wordpress - 503 Error

    not sure if ZendGuardLoader extension is loaded? if so, refer http://www.litespeedtech.com/support/forum/showthread.php?t=5765
  8. N

    [solved] cPanel - Magento - Multistore Setup

    RewriteCond %{HTTP_HOST} ^www\.beckenbodentrainer\.info$ RewriteRule ^/?$ "http\:\/\/beckenbodentrainer\.info\/" [R=301,L] should be better to change to RewriteCond %{HTTP_HOST} ^www\.beckenbodentrainer\.info$ RewriteRule ^(.*)$ http://beckenbodentrainer.info/$1 [R=301,L] maybe there are...
  9. N

    Private cache max-age ?

    for example, in .htaccess, RewriteRule \.php - [E=Cache-Control:private,E=Cache-Control:max-age=300] or RewriteRule \.php - [E=Cache-Control:private] RewriteRule \.php - [E=Cache-Control:max-age=300]
  10. N

    multiple 503 errors

    can you create a simple php script which contain curl functions, see if can reproduce the 503 error easily ?
  11. N

    Private cache max-age ?

    yes. just tested and confirm it works.
  12. N

    htaccess Cache-Control ignored

    not true. you can test it easily. just to confirm, what's the lsws version?
  13. N

    [solved] getting caching right with enhanced page cache

    Sorry, your question is too general and I'm not able to reply :) however the start of the thread is specific and an good question. mark as [solved]
  14. N

    [solved] getting caching right with enhanced page cache

    please try add following to .htaccess AddDefaultCharset utf-8 it's not likely an issue of
  15. N

    HTAccess rewrite error.

    is your rewriterule ? probably typo, above $record_start should be &record_start
  16. N

    [solved] getting caching right with enhanced page cache

    I tested the 2 websites you provided in 1st post, they're ok but server is cloudflare-nginx. not sure if litespeed is ok now. since the 2 sites under development, best to serve directly by litespeed, not behind cloudflare for easier to test.
  17. N

    [solved] getting caching right with enhanced page cache

    please try to change to <IfModule litespeed> RewriteRule \.html_gzip$ - [E=no-gzip:1,NC] RewriteRule \.xml_gzip$ - [E=no-gzip:1,NC] </IfModule> see if it works.
  18. N

    loading take very slow

    I can take a quick look at your server if you PM the server's root access.
  19. N

    loading take very slow

    if you have installed mod_security add-on, try to disable it, see if any difference. this help to narrow down the issue.
Top