Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Thread Starter JDanswers

    (@jdanswers)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Timestamp error but not in Source Code?’ is closed to new replies.