04.06.2014, 18:42
Hallo,
ich bin mit meiner Wordpress Seite umgezogen. Beim Login bekomme ich folgende Fehlermeldung:
ich bin mit meiner Wordpress Seite umgezogen. Beim Login bekomme ich folgende Fehlermeldung:
Code:
Warning: Cannot modify header information - headers already sent by (output started at [...]/wp-includes/functions.php:1) in [...]/wp-login.php on line 414
Warning: Cannot modify header information - headers already sent by (output started at [...]/wp-includes/functions.php:1) in [...]/wp-login.php on line 426
wp-login.php
Code:
// validate action so as to default to the login screen
if ( !in_array( $action, array( 'postpass', 'logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login' ), true ) && false === has_filter( 'login_form_' . $action ) )
$action = 'login';
nocache_headers();
header('Content-Type: '.get_bloginfo('html_type').';charset='.get_bloginfo('charset'));
if ( defined( 'RELOCATE' ) && RELOCATE ) { // Move flag is set
if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
$_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
$url = dirname( set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ) );
if ( $url != get_option( 'siteurl' ) )
update_option( 'siteurl', $url );
}
//Set a cookie now to see if they are supported by the browser.
setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN);
if ( SITECOOKIEPATH != COOKIEPATH )
setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN);
Auf meinen alten Webspace lief alles ohne Probleme.
414:
Code:
header('Content-Type: '.get_bloginfo('html_type').';charset='.get_bloginfo('charset'));
426:
Code:
setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN);
Mit den Internet Explorer bekomme ich schon beim Besuch der Seite folgende Fehlermeldung:
Code:
Warning: Cannot modify header information - headers already sent by (output started at [...]/wp-includes/functions.php:1) in [...]/wp-includes/pluggable.php on line 1121
1121:
Code:
header("Location: $location", true, $status);