- 积分
- 19754
- 经验
- 1998 点
- 热情
- 1987 点
- 魅力
- 145 点
- 信誉
- 1406 度
- 金币
- 2571 枚
- 钻石
- 41 颗
- 蓝光币
- 10 ¥
Forum CEO
- 金币
- 2571 枚
- 体力
- 12349 点
|
1. Cannot modify header information- PHP Warning: Cannot modify header information – headers already sent by (output started at yourfiles)
复制代码 这是因为设置的头文件信息溢出造成的。解决方法:将output_buffering 设为 on 就可以了
2. output handler ‘ob_gzhandler’ conflicts with ‘zlib output compression’- PHP Warning: ob_start() [ref.outcontrol]: output handler ‘ob_gzhandler’ conflicts with ‘zlib output compression’ in yourfiles
复制代码 这是因为PHP中Zlib模块设置错误造成的,将zlib.output_compression这一行注释掉就可以了。这里需要指出的是PHP5自带GZIP模块的,不需要另外加载。 |
|