howfar上传附件后显示“问号”图标,不仅影响美观,也会让会员产生犹豫心里,各版本修改方法大同小异,以7z压缩格式为例,解决如下: 1.DZ后台,全局-附件类型尺寸-扩展名(小写) :7z,最大尺寸(单位:KB) :2000 (此处按你的需要设置); 2.用PS处理7z.gif上传至FTP根目录:\static\image\filetype下 3.找到 \source\function\function_attachment.php 搜索: 13 => 'torrent.gif' 改为: 13 => 'torrent.gif', 14 => '7z.gif' 注:13 => 'torrent.gif', 后面不要忘记逗号,否则发帖页面空白。 搜索: if(preg_match("/bittorrent|^torrent\t/", $type)) { 改为: if(preg_match("/7z|^7z\t/", $type)) { $typeid = 14; } elseif(preg_match("/bittorrent|^torrent\t/", $type)) { 注:将本例所有7z替换为你需要的扩展名。 4.更新缓存。 |