網(wǎng)上看到很多朋友遇到使用織夢(mèng)程序一段時(shí)間后,發(fā)現(xiàn)上傳圖集時(shí)候老是失敗,提示
FILEID:X錯(cuò)誤,縮略圖顯示為紅色Error下面截圖錯(cuò)誤:
這問(wèn)題今天也讓我頭疼了半天,好好的怎么就出現(xiàn)這問(wèn)題了,我最近好像沒(méi)修改過(guò)啥文件了,最后找資料整理出了解決辦法,分享給遇到該問(wèn)題的朋友:分兩步:
第一步:查看一下你的include/common.inc.php 的文件格式UTF-8編碼的朋友,注意將格式調(diào)整為UTF-8 無(wú)BOM格式,GBK編碼的朋友,注意將格式調(diào)整為ANSI(使用NotePad++,菜單欄有一格式菜單,打開即可調(diào)整文件格式,當(dāng)然也可以選擇DW,Editeplus 云云)
第二步:給大家提供一個(gè)縮略圖修復(fù)文件,保存為a.php,放在網(wǎng)站根目錄訪問(wèn)下就可以了。
代碼如下:
-
<?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,放在網(wǎng)站根目錄下運(yùn)行該文件就可以了。
運(yùn)行完畢后刷新后臺(tái),上傳圖片,就成功了!
運(yùn)行后記得更新下緩存: