So this isn't a recommended fix, but it works.
- Navigate to /wp-content/plugins/quick-cache/includes/templates/handler.tpl.php
- Insert this at line 80:
- Code:
else if ($_SERVER["REQUEST_URI"] == "/")
{
return; }
- Save that.
- Delete /wp-content/advanced-cache.php (for good measure)
- Go to the settings for the Quick Cache.
- Don't make any changes, just re-save the settings. This will recreate the advanced-cache.php file with your new changes.
Suggestion to developers:
I wish there was some filtering abilities on the cache. Such as, in the advanced-cache.php if statement, there should be an else if statement that runs a filter and returned result of the filter decides whether or not to continue. Here is an example of what I am talking about:
- Code:
else if (apply_filters ("ws_plugin__qcache_handler_validate", false))
{
return;
}
(same area as what I said above this section)
So then I would be able to attach a filter to the if statement in the advanced-cache.php. This would be useful for using my own criteria to decide what should be cached. Now I know this is probably a whole solution, as per the cron, etc., but it definitely be an improvement.Statistics: Posted by julian1828 — May 20th, 2011, 3:26 pm
]]>