PHP Warning: ob_start() : output handler 'ob_gzhandler conflicts with 'zlib output compression'

安装phpcms过程中,会遇到Warning:  ob_start() : output handler 'ob_gzhandler conflicts with 'zlib output compression'  in 。。。。57 行,解决办法是在第五十七行ob_start('ob_gzhandler');前面加上一句ob_end_clean();这样安装就能成功了。

或:

install_package\caches\configs  到这个目录找到system.php ,打开后找到gzip选项,后面的1,改为0.上传覆盖。
原文地址:https://www.cnblogs.com/meetrice/p/3018400.html