有沒有大大曾經成功裝上這個外掛?
該外掛提供出一個連結,給會員再推薦新的會員,連結到您的論壇,並可在個人檔案裡列入計算,共有幾個被推薦新會員,這點是非常吸引的,可以讓新建論壇作有效的宣傳,以人傳人的方法,可能會有更多忠實會員加入。
我也不例外馬上裝設這個外掛,但安裝完成後卻失敗了。
出現問題:
代碼: 選擇全部
Warning: Cannot modify header information - headers already sent by (output started at /ha/fayeng/public_html/phpBB/language/lang_chinese_traditional_taiwan/lang_referral.php:84) in/ha/fayeng/public_html/phpBB/includes/page_header.php on line 606
Warning: Cannot modify header information - headers already sent by (output started at /ha/fayeng/public_html/phpBB/language/lang_chinese_traditional_taiwan/lang_referral.php:84) in/ha/fayeng/public_html/phpBB/includes/page_header.php on line 608
Warning: Cannot modify header information - headers already sent by (output started at /ha/fayechai/public_html/phpBB/language/lang_chinese_traditional_taiwan/lang_referral.php:84) in/ha/fayeng/public_html/phpBB/includes/page_header.php on line 609
(本站預設語系你繁體中文)此外掛裡language file 內另外還有admin_referral.php和lang_referral_history.php, 都只有英文,那會不會有影響呢?(同樣放在lang_chinese_traditional_taiwan 內)
問題page_header.php 595-613 如下:
代碼: 選擇全部
// Add no-cache control for cookies if they are set
//$c_no_cache = (isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_data'])) ? 'no-cache="set-cookie", ' : '';
// Work around for "current" Apache 2 + PHP module which seems to not
// cope with private cache control setting
if (!empty($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache/2'))
{
header ('Cache-Control: no-cache, pre-check=0, post-check=0');
}
else
{
header ('Cache-Control: private, pre-check=0, post-check=0, max-age=0');
}
header ('Expires: 0');
header ('Pragma: no-cache');
$template->pparse('overall_header');
?>

