欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Warning: Cannot modify header information

程序员文章站 2022-06-07 13:57:47
...
metinfo5.2安装成功提示:

Warning: Cannot modify header information - headers already sent by (output started at f:\ffff\index.php:1) in f:\ffff\l\include\common.inc.php on line 4


回复讨论(解决方案)

显然 f:\ffff\index.php 被你编辑过了,留下了 BOM 头
并且你的 php 版本页比较低

你的index.php文件中用到了ob_start之类的?

header前不能有输出
可以在header前加上 ob_clean();