上傳附件時,附件名變成了 .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');

修改此陣列的內容即可。