1 頁 (共 1 頁)

[問題]虛擬貨幣實裝後台問題!!(已解決)

發表於 : 2004-09-28 14:36
czdance
Appserv+MySQL+Apache+
PHPBB2版本:2.0.10

安裝貨幣之前使用過的外掛
‧新增當日TOP5文章標示
‧發表文章中發表人名稱閃光化
‧加入快速回覆
‧回覆文章時的color bar(選顏色那條)
‧發表文章時可選擇主題類型

安裝虛擬貨幣:參考連結
抱歉我是新手並不確定這外掛是否官方!!

後台->會員管理->管理選項->輸入任何一個會員->
出現錯誤訊息\r
Warning: opendir(../../language): failed to open dir: Invalid argument in c:\appserv\www\phpbb2\includes\functions_selects.php on line 31

Warning: readdir(): supplied argument is not a valid Directory resource in c:\appserv\www\phpbb2\includes\functions_selects.php on line 34

Warning: closedir(): supplied argument is not a valid Directory resource in c:\appserv\www\phpbb2\includes\functions_selects.php on line 45

功能大致上都正常\r

以下是funtions_selects.php Line31~45


$dir = opendir($phpbb_root_path . $dirname);

$lang = array();
while ( $file = readdir($dir) )
{
if (preg_match('#^lang_#i', $file) && !is_file(@phpbb_realpath($phpbb_root_path . $dirname . '/' . $file)) && !is_link(@phpbb_realpath($phpbb_root_path . $dirname . '/' . $file)))
{
$filename = trim(str_replace("lang_", "", $file));
$displayname = preg_replace("/^(.*?)_(.*)$/", "\\\1 [ \\\2 ]", $filename);
$displayname = preg_replace("/\[(.*?)_(.*)\]/", "[ \\\1 - \\\2 ]", $displayname);
$lang[$displayname] = $filename;
}
}

closedir($dir);

發表於 : 2004-09-28 16:43
動機不明
這個外掛應當不至於造成這樣的問題才對...
你的問題是 $dir 沒有指定正確 (34, 45 行都與這有關)
我也不知道該怎麼幫 ^^|| 只是給個參考方向吧! (或者移除這個外掛看看還有沒有同樣的問題?)

發表於 : 2004-09-28 22:15
czdance
我重新安裝的時候發現是把admin_users.php覆蓋原本的admin\裡面之後就出現這個問題了..其他大致上沒問題..
這檔案沒裝上的話後台那邊無法設定個人資產..我看看有沒有外掛有相衝到\r



問題解決了..問題出在admin_users.php
如果有跟我一樣出現這問題的話..就自己手動改\r
虛擬錢幣OOHOO弄得那個MOB包..打開裡面的admin_users.php
搜尋Virtual_Money_MOD

照著有Virtual_Money_MOD的地方新增到原本的admin_users就可以了..

發表於 : 2005-12-26 19:28
fumin920
抱歉喔 我還是看不太懂你說的解決辦法耶....