Prevent WP-Cache from Caching index

FREE THOUGHT · FREE SOFTWARE · FREE WORLD

Stop WP-Cache Plugin from caching index.phpDecember 7th, 2007

« Best Free Online Banking for Web ProfessionalsCSS Cross-Browser Compatibility Tip »

A WordPress index page shouldn’t be cached by wp-cache the same as posts or other pages not as frequently updated. This 30 second fix gives you control to not cache / or /index.php on your blog. You can use this hack to disable caching anything you want.


Disable caching specific URI’s

First clear the cache from the WP-Cache Options Page. Then modify the wp_cache_is_rejected function.

  1. [ PRESS ] Delete cache on the WP-Cache Options Page
  2. [ OPEN ] wp-content/plugins/wp-cache/wp-cache-phase2.php
  3. [ FIND ] if (strstr($uri, '/wp-admin/'))
  4. [ REPLACE WITH ] if(strstr($uri,'/wp-admin/') || $uri==='/' || strstr($uri,'/index.php'))

NOTE: If anyone comes up with an improvement to this technique or a different/better implementation, please let me know so we can help with the development of an updated WP-Cache plugin!

WP-Cache Links

Attached Files

  1. WP-Cache Version 2.1.1
  2. README.txt
  3. wp-cache.php
  4. wp-cache-config-sample.php
  5. wp-cache-phase1.php
  6. wp-cache-phase2.php

Modified wp_cache_is_rejected function

function wp_cache_is_rejected($uri) {
  global $cache_rejected_uri;
 
  if(strstr($uri,'/wp-admin/') || $uri==='/' || strstr($uri,'/index.php'))
    return true; //we don't allow cacheing wp-admin for security
  foreach ($cache_rejected_uri as $expr) {
    if (strlen($expr) > 0 && strstr($uri, $expr))
      return true;
  }
  return false;
}

About WP-Cache Caching Plugin

WP-Cache works by caching WordPress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and the building the page from the database…

Wp-Cache uses 2 phases

The first is called at the very begining wp-cache-phase1.php when just few code has been compiled. The second wp-cache-phase2.php after all plugins have been executed. The first phase checks if the requested URL is already cached, if so it serves from the static file and finishes. The second phase stores the generated page in a static file for further request.

« Best Free Online Banking for Web ProfessionalsCSS Cross-Browser Compatibility Tip »

Reader Comments

  1. askapache.com commenter Itai says:

    Nice. i looking for this solution.

  2. Thank you! It’s really funny because WP Super Cache (based on WP Cache) has an input field to accept rejected paths, but it’s impossible to input / or index.php into it!

  3. askapache.com commenter AskApache says:

    @ ivanhoe

    Yes, at least when using pretty-urls with mod_rewrite. mod_rewrite takes care of the redirection/rewriting of * to /index.php transparently, so the $uri seen by wp-cache is the same $uri seen in the browser.

  4. ivanhoe says:

    is this mod-rewrite safe? Since if using pretty urls are being used everything goes to index.php, will it really disable just a home page?

  5. Richard H says:

    Thanks. Looking forward to the updated WP-Cache plugin.

  6. askapache.com commenter AskApache says:

    @ Richard

    Yes this plugin takes care of it by refreshing the cache when a comment/edit/etc. happens to the post.

    If I was only allowed to have one plugin, this would be it.

  7. Richard H says:

    Hey AA… I’ve been reading your material for several months –you’ve helped a lot with my various projects along the way. Thank you!

    I haven’t tested this plugin yet, but I presume Wp-Cache would also affect the post comments?

    For example, 5 people have commented on post #39, but they’re seeing a cached page, so the latest comments would not be shown.

    Is this correct?

RSS feed for comments on this post.TrackBack URL

Add Your Opinion

Skip to Comments
146

It's very simple -
you read the protocol
and write the code.
-Bill Joy

HTML | DCMI | GRDDL | XOXO | XDMP | XFN | DOM | XML | XHTML 1.1 Strict | CSS 2.1 | W3C | WAI | DISA | ICSI | GIAC | SANS RR | GHOST

Authority: 110

↑ TOP

Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution 3.0 License, just credit with a link.
This site is not supported or endorsed by The Apache Software Foundation (ASF). All software and documentation produced by The ASF is licensed according to these terms. "Apache" is a trademark of The ASF.

Site Map | Contact Webmaster | Glossary | License and Disclaimer | Terms of Service