[教學]Solution Of lycos

phpBB Installation & Usage Support
phpBB 2 安裝於各類型作業平台之問題討論;外掛問題,請到相關版面依發問格式發表!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

版面規則
本區是討論關於 phpBB 2.0.X 架設安裝上的問題,只要有安裝任何外掛,請到外掛討論相關版面按照公告格式發表。
(發表文章請按照公告格式發表,違者砍文)
主題已鎖定
2006
星球普通子民
星球普通子民
文章: 4
註冊時間: 2002-06-01 20:48
聯繫:

[教學]Solution Of lycos

文章 2006 »

Could not query forums information
以上錯誤訊息是在加設區域後,不能讀取列表,解決方法是打開index.php,將
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM (( " . FORUMS_TABLE . " f
LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
ORDER BY f.cat_id, f.forum_order";
break;

[CHANGE INTO]
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM (( " . FORUMS_TABLE . " f
LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )";
break
此方法可使論壇正常顯示,並未解決論壇權限問題.權限設置可在phpMyAdmin中進行.
主題已鎖定

回到「phpBB 2 安裝與使用」