网上看到许多伴侣碰着利用织梦措施一段时间后,发明上传图集时候总是失败,提示提示FILEID:X错误,缩略图显示为赤色Error下面截图错误:
(此图片来历于网络,如有侵权,请接洽删除! )
这问题本日也让我头疼了半天,好好的怎么就呈现这问题了,我最近仿佛没修悔改啥文件了,最后找资料整理出了办理步伐,分享给碰着该问题的伴侣:分两步:
第一步:查察一下你的include/common.inc.php 的文件名目UTF-8编码的伴侣,留意将名目调解为UTF-8 无BOM名目,GBK编码的伴侣,留意将名目调解为ANSI(利用NotePad++,菜单栏有一名目菜单,打开即可调解文件名目,虽然也可以选择DW,Editeplus 云云)
第二步:给各人提供一个缩略图修复文件,生存为a.php,放在网站根目次会见下就可以了。
代码(赤色部门)如下:
<?php
//remove the utf-8 boms
//by magicbug at gmail dot com
if (isset($_GET['dir'])){ //config the basedir
$basedir=$_GET['dir'];
}else{
$basedir = '.';
}
$auto = 1;
checkdir($basedir);
function checkdir($basedir){
if ($dh = opendir($basedir)) {
while (($file = readdir($dh)) !== false) {
if ($file != '.' && $file != '..'){
if (!is_dir($basedir."/".$file)) {
echo "filename: $basedir/$file ";
echo checkBOM("$basedir/$file")." <br>";
}else{
$dirname = $basedir."/".$file;
checkdir($dirname);
}
}
}
closedir($dh);
}
}
function checkBOM ($filename) {
global $auto;
$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) {
if ($auto == 1) {
$rest = substr($contents, 3);
rewrite ($filename, $rest);
return ("<font color=red>BOM found, automatically removed.</font>");
} else {
return ("<font color=red>BOM found.</font>");
}
}
else return ("BOM Not Found.");
}
function rewrite ($filename, $data) {
$filenum = fopen($filename, "w");
flock($filenum, LOCK_EX);
fwrite($filenum, $data);
fclose($filenum);
}
?>
将代码另存为.php,放在网站根目次下运行该文件就可以了。
运行完毕后刷新靠山,上传图片,就乐成了!
运行跋文得更新下缓存: