JDanswers
Member
Posted 6 months ago #
Fetching first copy of http://acai-nofatnodiet.jdanswers.com/: FAILED
Fetching second copy of http://acai-nofatnodiet.jdanswers.com/: FAILED
One or more page requests failed:
The pages do not match! Timestamps differ or were not found!
But, when I check page source code, the timestamps match exactly. What's the fix for this? I did what the suggestions are in the control panel. Debug, by the way, shows only scrambled characters in the file that is created in my hosting account so I can't debug it to find out what's causing this to happen.
Thanks
http://wordpress.org/extend/plugins/wp-super-cache/
skonsult
Member
Posted 6 months ago #
Check your theme folder, functions.php and look for ob_start.
I had the same problem with this cache plugin before I removed this from my theme:
function wp_http_compression() {
if (stripos($uri, '/js/tinymce') !== false)
return false;
if (ini_get('output_handler') == 'ob_gzhandler')
return false;
if (extension_loaded('zlib'))
if(!ob_start("ob_gzhandler")) ob_start();
}
add_action('init', 'wp_http_compression');
It could also be a plugin that add some kind of compression to your site.
JDanswers
Member
Posted 6 months ago #
Thanks for the reply but I gave up in frustration and switched to Hypercache plugin which is waaaay simpler to set up and less buggy. It is doing the job nicely. I only had to do a small edit to wp-config because of entries made by W3 Cache.