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);
[問題]虛擬貨幣實裝後台問題!!(已解決)
版主: 版主管理群
[問題]虛擬貨幣實裝後台問題!!(已解決)
最後由 czdance 於 2004-09-28 23:06 編輯,總共編輯了 1 次。
這個外掛應當不至於造成這樣的問題才對...
你的問題是 $dir 沒有指定正確 (34, 45 行都與這有關)
我也不知道該怎麼幫 ^^|| 只是給個參考方向吧! (或者移除這個外掛看看還有沒有同樣的問題?)
你的問題是 $dir 沒有指定正確 (34, 45 行都與這有關)
我也不知道該怎麼幫 ^^|| 只是給個參考方向吧! (或者移除這個外掛看看還有沒有同樣的問題?)
非官方外掛問題區公告: [必看]請配合發問格式及明確主題發問(2006 02/24更新)
七點要求:
1. 發問前先搜尋,確定沒有重複後再發表
2. 主題要明確
3. 依照發問格式
4. 禁連續推文
5. 請盡量減少使用地方性語言
6. 解決問題後請修改第一篇主題,並感謝曾經幫過你的前輩們 ^^
7. 請不要將檔案內容完整貼出喔! 只要提供問題行及上下各五行就可以了
七點要求:
1. 發問前先搜尋,確定沒有重複後再發表
2. 主題要明確
3. 依照發問格式
4. 禁連續推文
5. 請盡量減少使用地方性語言
6. 解決問題後請修改第一篇主題,並感謝曾經幫過你的前輩們 ^^
7. 請不要將檔案內容完整貼出喔! 只要提供問題行及上下各五行就可以了

