ruready
This might be the code that is creating your error.
Test and let me know.
Find file /includes/modules/pages/fetch/header_php.php and about line 60 you will see.
PHP Code:
// Is Apache trying to compress the output:
@apache_setenv('no-gzip', 1);
@ini_set('zlib.output_compression', 0);
Change to look like this.
PHP Code:
// Is Apache trying to compress the output:
// @apache_setenv('no-gzip', 1);
// @ini_set('zlib.output_compression', 0);
That commented out the code so it will not run.
Skip
Bookmarks