On the same hosting server, some accounts support ob_gzhandler
and send the page with compression for the browser:
/* Sending gz-encoded data to web browsers
* that support compressed web pages
*/
ob_start("ob_gzhandler");
But other accounts with the code above fail and trigger the following error:
Content Encoding Error
The page you are trying to open may not be displayed because it uses an unsupported or invalid form of compaction. Contact the site managers to let them know about this issue.
Question
How to discern the cause of the invalid encoding error?
Note: The PHP configuration for both domains is strictly the same as Apache directives.