首先我們先來查看 update.php 文件中處理附件部分代碼

  1. elseif($_GET['op'] == 'forumattach') {
  2.                 $nextop = 'moderate';
  3.                 $limit = 10000;
  4.                 $start = !empty($_GET['start']) ? $_GET['start'] : 0;
  5.                $needupgrade = DB::query("SELECT COUNT(*) FROM ".DB::table('forum_attachmentfield'), 'SILENT');
  6.                 $count = DB::result_first("SELECT COUNT(*) FROM ".DB::table('forum_attachment'));
  7.                 if($needupgrade && $count) {
  8.                         if(!$start) {
  9.                                 for($i = 0;$i < 10;$i++) {
  10.                                         DB::query("TRUNCATE ".DB::table('forum_attachment_'.$i));
  11.                                 }
  12.                         }
  13.                         $query = DB::query("SELECT a.*,af.description FROM ".DB::table('forum_attachment')." a
  14.                                 LEFT JOIN ".DB::table('forum_attachmentfield')." af USING(aid)
  15.                                 ORDER BY aid LIMIT $start, $limit");
  16.                         if(DB::num_rows($query)) {
  17.            省略。。。。。。。

$needupgrade = DB::query("SELECT COUNT(*) FROM ".DB::table('forum_attachmentfield'), 'SILENT');
代碼紅色部分,有對 forum_attachmentfield 進行處理,因為這個升級程序是兼容 Discuz! X 系列的升級。如果你升級到 X2 的時候此表還存在,升級到 Discuz! X2.5 就會將附件表 forum_attachment_0 到 9 這些表給處理掉。正常情況 Discuz! X2 升級到 Discuz!   X2.5 是不用處理附件表。 所以,升級到 X2.5 附件為 問號的用户,可以直接導入 X2 備份的數據將附件表 forum_attachment 和  forum_attachment_0 到 9 表 、 forum_attachment_unused 表的數據直接導入

X2.5 的附件表 有對 forum_attachment_type 更改 、添加 了 forum_attachment_exifi 表,導入 X2 的數據之後 請確保這些表都存在