[修正]admin_hacks_list/kb_constants/pafiledb_constants

phpBB Plus Support
本區是討論關於 phpBB 2 plus 使用上的問題討論!
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
頭像
godbless
竹貓忠實會員
竹貓忠實會員
文章: 647
註冊時間: 2002-05-17 06:02
來自: 台北市南京東路4段
聯繫:

[修正]admin_hacks_list/kb_constants/pafiledb_constants

文章 godbless »

如果你是在2006/6/1以後才到這邊下載的,那就不要理會這三個修正了

如果不放心的話,請到這邊下載
http://www.gffclan.com/dload.php?action=file&file_id=8




打開

代碼: 選擇全部

pafiledb/includes/pafiledb_constants.php

找到

代碼: 選擇全部

/*************************************************************************** 
 * 
 *   This program is free software; you can redistribute it and/or modify 
 *   it under the terms of the GNU General Public License as published by 
 *   the Free Software Foundation; either version 2 of the License, or 
 *   (at your option) any later version. 
 * 
 ***************************************************************************/ 
在這段後面加入

代碼: 選擇全部

if ( !defined('IN_PHPBB') ) 
{ 
  die ("Hacking attempt!"); 
}

打開

代碼: 選擇全部

includes/kb_constants.php

找到

代碼: 選擇全部

// ---------------------------------------------------------------------START 
// This file defines specific constants for the module
在後面加上

代碼: 選擇全部

if ( !defined('IN_PHPBB') ) 
{ 
   die("Hacking attempt"); 
}
打開

代碼: 選擇全部

admin/admin_hacks_list.php


找到

代碼: 選擇全部

$phpbb_root_path = '../'; 
if( !empty($setmodules) ) 
{ 
   include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin_hacks_list.' . $phpEx); 
   $filename = basename(__FILE__); 
   $module['General']['Hacks_List'] = $filename; 
    
   return; 
} 

include($phpbb_root_path . 'extension.inc'); 
(file_exists('pagestart.' . $phpEx)) ? include('pagestart.' . $phpEx) : include('pagestart.inc');
用以下這段取代

代碼: 選擇全部

if( !empty($setmodules) ) 
{ 
   $filename = basename(__FILE__); 
   $module['General']['Hacks_List'] = $filename; 
    
   return; 
} 

$phpbb_root_path = './../'; 
require($phpbb_root_path . 'extension.inc'); 
require('./pagestart.' . $phpEx);
外掛問題區發問格式就在這裡,請務必一定照著格式來~!
你不照著規則來,就算是也搞不清楚你的問題在哪裡!
新手問問題不是罪惡
罪惡的是自己沒有先做好本分和功課,說話的口氣也不好,再加上態度有好像我們這群人欠你多少似的~~!!
竹貓星球發問規則:
http://phpbb-tw.net/phpbb/viewtopic.php?t=16149
發問比率最高的句子翻譯:
Please ensure both the install/ and contrib/ directories are deleted
請確認install和contrib資料夾已被刪除(奇怪,翻一下英漢字典有這麼困難嗎)
主題已鎖定

回到「phpBB 2 plus 綜合討論」