so sieht momentan meine .htacess aus
Code: Alles auswählen
DirectoryIndex index.html intro.php portal.php index.php index.htm
Code: Alles auswählen
DirectoryIndex index.html intro.php portal.php index.php index.htm
was stimmt nicht?Warning: Cannot modify header information - headers already sent by (output started at path\includes\template.php(127) : eval()'d code:1) in path\portal.php on line 1061
Code: Alles auswählen
// Run the compiled code.
eval($this->compiled_code[$handle]);
return true;
}
Code: Alles auswählen
// Handle marking posts
//
if( $mark_read == 'forums' )
{
if( $userdata['session_logged_in'] )
{
setcookie($board_config['cookie_name'] . '_f_all', time(), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
}
$template->assign_vars(array(
"META" => '<meta http-equiv="refresh" content="3;url=' .append_sid("index.$phpEx") . '">')
);
$message = $lang['Forums_marked_read'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("portal.$phpEx") . '">', '</a> ');
message_die(GENERAL_MESSAGE, $message);
}