Warning: in_array(): Wrong datatype for second argument in D:\ACG3\phpBB2\common.php on line 79
Warning: Cannot modify header information - headers already sent by (output started at D:\ACG3\phpBB2\common.php:79) in D:\ACG3\phpBB2\includes\sessions.php on line 255
Warning: Cannot modify header information - headers already sent by (output started at D:\ACG3\phpBB2\common.php:79) in D:\ACG3\phpBB2\includes\sessions.php on line 256
Warning: Cannot modify header information - headers already sent by (output started at D:\ACG3\phpBB2\common.php:79) in D:\ACG3\phpBB2\includes\sessions.php on line 255
Warning: Cannot modify header information - headers already sent by (output started at D:\ACG3\phpBB2\common.php:79) in D:\ACG3\phpBB2\includes\sessions.php on line 256
Warning: Cannot modify header information - headers already sent by (output started at D:\ACG3\phpBB2\common.php:79) in D:\ACG3\phpBB2\includes\functions.php on line 831
紅色部分出現很多次..其他部分有參考此篇
http://phpbb-tw.net/phpbb/viewtopic.php?t=39729
檢查後沒有多餘的空白...純手動更新...目前還在找原因中...
代碼: 選擇全部
if (@ini_get('register_globals') == '1' || strtolower(@ini_get('register_globals')) == 'on')
{
if (!isset($HTTP_SESSION_VARS) || !is_array($HTTP_SESSION_VARS))
{
$HTTP_SESSION_VARS = array();
}
// Merge all into one extremely huge array; unset
// this later
$input = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $HTTP_SERVER_VARS, $HTTP_SESSION_VARS, $HTTP_ENV_VARS, $HTTP_POST_FILES);
unset($input['input']);
unset($input['not_unset']);
while (list($var,) = @each($input))
{
[color=red]line 79 if(!in_array($var,$not_unset))[/color]
{
unset($$var);
}
}
unset($input);
}
