補充架站環境:
1.作業系統:WinXP-P,
2.架站系統:Aapche2.2.3 + PHP5.2.0
測試過軟體:
官方提供自行安裝的 CashMod 2.2.3a 或是 心靈捕手提供的完整安裝包 Cash223Attach245_phpBB2022 安裝完後皆有個人資料無法顯示問題
解決方案:
參考Brf 按照修改 profile.php 檔案測試後目前可以正常顯示了 :
http://www.phpbb.com/phpBB/viewtopic.ph ... tart=10665
At the very beginning of profile.php you should have this:
代碼:
define('IN_PHPBB', true);
if ( (isset($HTTP_GET_VARS['mode']) && ($HTTP_GET_VARS['mode'] == 'viewprofile')) || (isset($HTTP_POST_VARS['mode']) && ($HTTP_POST_VARS['mode'] == 'viewprofile')) )
{
define('IN_CASHMOD', true);
define('CM_VIEWPROFILE',true);
}
change it to this:
代碼:
define('IN_PHPBB', true);
if ( (isset($_GET['mode']) && ($_GET['mode'] == 'viewprofile')) || (isset($_POST['mode']) && ($_POST['mode'] == 'viewprofile')) )
{
define('IN_CASHMOD', true);
define('CM_VIEWPROFILE',true);
}