建議您:orichard 寫:傳錯了
上一個是root下的functions.php
這個才是includes的functions.php
http://www.dynashaklee.url.tw/phpBB2/in ... ctions.rar
補充說明, 為何要註解此 (420) 行?
代碼: 選擇全部
//include_attach_lang();
版主: 版主管理群
建議您:orichard 寫:傳錯了
上一個是root下的functions.php
這個才是includes的functions.php
http://www.dynashaklee.url.tw/phpBB2/in ... ctions.rar
代碼: 選擇全部
//include_attach_lang();
attach_mod/attachment_mod.phporichard 寫:那是自己在做測試點用
因為加上include_attach_lang()後
就一直出現include_attach_lang() 沒有定義的fatal error
所以就先將此function call 隔離
請問哪一支程式內有定義function include_attach_lang() ?
代碼: 選擇全部
/**
* Include attachment mod language entries
*/
function include_attach_lang()
{
global $phpbb_root_path, $phpEx, $lang, $board_config, $attach_config;
// Include Language
$language = attach_mod_get_lang('lang_main_attach');
include_once($phpbb_root_path . 'language/lang_' . $language . '/lang_main_attach.' . $phpEx);
if (defined('IN_ADMIN'))
{
$language = attach_mod_get_lang('lang_admin_attach');
include_once($phpbb_root_path . 'language/lang_' . $language . '/lang_admin_attach.' . $phpEx);
}
}
這樣我倒是覺得有點奇怪, install.txt 裡第一要修改的檔案就是問題點所在了orichard 寫: 因為install.txt都做了後台資料庫也有相關table
但就是不知哪裡沒有修改到
代碼: 選擇全部
common.php
代碼: 選擇全部
$board_config[$row['config_name']] = $row['config_value'];
}
真的都有改到的話, 理應不致於會漏掉第一個檔案吧?include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);
這是cash mod 外掛, 與attachment mod 不相關orichard 寫:找到 viewtopic.php on line 402為
$cm_viewtopic->generate_columns($template,$forum_id,$sql);
遍詢其他問題文章找不到答案