I think we implemented a workaround in the latest version, but we haven't gotten a chance to upload it yet.
Try doing the following:
Open LocalSettings.php in your MediaWiki directory, and find these lines of code:
PHP Code:
} elseif ( empty( $wgNoOutputBuffer ) ) {
## Compress output if the browser supports it
if( !ini_get( 'zlib.output_compression' ) ) @ob_start( 'ob_gzhandler' );
}
And replace them for this:
Then vbWiki_Init.php, and find this line:
PHP Code:
require_once dirname(__FILE__) . "/vbWiki.php";
And add the following code right after it:
PHP Code:
if ( empty( $wgNoOutputBuffer ) ) {
## Compress output if the browser supports it
if( !ini_get( 'zlib.output_compression' ) ) @ob_start( 'ob_gzhandler' );
}
I haven't tested this, but it should work...
I'll give it a try in a few...