Now Running Lite Cache 1.1.3

Just for test, since this blog has not enough traffic to require a cache, I’m running the plugin Lite Cache to see if it works smoothly.

Lite Cache is a small caching plugin without configuration I wrote to alleviate the server load of an high traffic blog. Is it different from other plugins?

Yes, it is different.

Lite Cache serves cached pages even when the surfer is a visitor who commented in the past still filling the comment for with his data. Usually, cache plugins do not serve cache page for visitors who left a comment in the past.

That was the problem of the blog I tried to save with Lite Cache. May be it is useful to you too!

 

My excuses for my bad english but it's the only way I have to communicate with you. Would you suggest a correction? Leave a comment, thank you!

3 Responses to “Now Running Lite Cache 1.1.3”

  1. Hi & congrats for this plugin. I’m testing it to use instead HyperCache. :)
    I noticed a [severe] BUG, the plugin-in does not work in mode 2. It caches the files but it serves the uncached files.

    That’s because you forgot to add “/lite-cache” in advanced-cache.php.

    In advanced-cache.php replace
    $lc_file = ABSPATH . ‘wp-content/cache’ . $_SERVER['REQUEST_URI'] . ‘/index.html’;

    with

    $lc_file = ABSPATH . ‘wp-content/cache/lite-cache’ . $_SERVER['REQUEST_URI'] . ‘/index.html’;

    Another thing, I noticed it adds some javascript code at the end of files, but AFTER the closing tag, thus making the page fail HTML validation.

Leave a Reply