原文来自:https://www.zixuephp.com
dedecms上传文件提示Field:1错误解决办法
一个项目突然上传图片提示错误,昨天还是好好的,我第一想法就是空间满了,查看空间大小还有很多,google一下才发现,是BOM头的问题,可能是用记事本修改了common.inc.php文件直接传上去的,产生了BOM,用编辑器清除一下BOM头或者把下面的代码保存成1.php上传到网站的根目录执行即可!
代码如下:
- $filename='./data/common.inc.php';
- $contents=file_get_contents($filename);
- $charset[1]=substr($contents,0,1);
- $charset[2]=substr($contents,1,1);
- $charset[3]=substr($contents,2,1);
- if(ord($charset[1])==239&&ord($charset[2])==187&&ord($charset[3])==191){
- $data=substr($contents,3);
- $filenum=fopen($filename,"w");
- flock($filenum,LOCK_EX);
- fwrite($filenum,$data);
- fclose($filenum);
- }