--- wp-cache-phase1.php 2007-09-12 12:56:54.000000000 -0500 +++ wp-cache-phase1-new.php 2007-09-12 12:56:32.000000000 -0500 @@ -45,9 +45,11 @@ $content_size += strlen($log); header("Content-Length: $content_size"); */ - if(!@readfile ($cache_file)) + if ( ! ($contents = file_get_contents($cache_file)) ) return; + echo $contents; } + echo ''; echo $log; die; }