阅读:2693回复:0
为什么附件文件名后缀变成了.attach
上传附件时,附件名变成了 .attach 类型的附件,这是由于论坛新增了安全附件机制,只有程序里面设定好的扩展名才不会被更名为 .attach 扩展名后缀。
解决方法: 可以打开 include/post.func.php 文件 找到 static $safeext = array('jpg', 'jpeg', 'gif', 'png', 'swf', 'bmp', 'txt', 'zip', 'rar', 'doc', 'mp3');
[*]static $safeext = array('jpg', 'jpeg', 'gif', 'png', 'swf', 'bmp', 'txt', 'zip', 'rar', 'doc', 'mp3'); 修改此数组的内容即可。 |
|