• Everything seems to be running smooth except I always get a ‘<!– Dynamic Page Served (once) in 0.377 seconds –>’ message when testing it out. The Dashboard shows pages being cached, but how do I know for sure? I’ve deleted my cookies and browsing history, but I’m still seeing dynamic pages. Does it use IP address to determine who to serve dynamic pages to?

    In case I can’t figure this one out, could someone go to https://www.2pstart.com and tell me if they are getting a cached page or a dynamic page?

    Thanks!

Viewing 2 replies - 31 through 32 (of 32 total)
  • Hmmmm weird things are going on. I agree with both of you, if his shows that, does his work, but then again lostdeviant is still having issues. Does the .87 update fix the issue?

    I am seeing this exact problem with version .87. Every time I refresh my page, I see:

    <!– Dynamic Page Served (once) in 0.109 seconds –>
    <!– Cached page generated by WP-Super-Cache on 2009-01-14 11:47:34 –>

    The cached page timestamp does not change. But it always says it is serving the Dynamic page.

    I am also seeing a lot of these messages in my apache error log:
    Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.

    This leads me to believe that the rewrite rules are not working properly. Here is the contents of .htaccess:

    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
    
    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*=.*
    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
    </IfModule>
    
    # END WPSuperCache
    
    # BEGIN WordPress
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # END WordPress

    Any ideas? I would greatly appreciate any help!

    Thanks!
    Jeff

Viewing 2 replies - 31 through 32 (of 32 total)
  • The topic ‘[Plugin: WP Super Cache] How do I know it’s really caching?’ is closed to new replies.