错误:Firefox - 内容编码错误/ Google Chrome - 错误330(net :: ERR_CONTENT_DECODING_FAILED):未知错误。
当您在Firefox中打开PHP页面时,会收到以下错误信息:
Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
* Please contact the website owners to inform them of this problem.
在Google Chrome中,您会收到以下错误信息:
Error 330 (net::ERR_CONTENT_DECODING_FAILED): Unknown error.
解
解决方案是在您的php.ini
中打开zlib.output_compression
。
打开你的php.ini
在Debian / Ubuntu上,它是/etc/php5/apache2/php.ini
:
vi /etc/php5/apache2/php.ini
在Fedora / CentOS / RedHat上,它是/etc/php.ini
:
vi /etc/php.ini
找到zlib.output_compression
行,并转换zlib.output_compression
:
zlib.output_compression = On
之后重新启动Apache:
在Debian / Ubuntu上,运行:
/etc/init.d/apache2 restart
在Fedora / CentOS的/红帽,你运行:
/etc/init.d/httpd restart