Please help. I can provide all login credentials and will provide PayPal payment to anyone who can resolve without reinstalling WP.
+++++++++++++++
I cannot access the login page. I receive the warning below. I’ve tried every step recommended above: disabled plugins, attempted to removed invisible BOM characters at beginning/end of file and still cannot access.
Warning: Header may not contain more than a single header, new line detected. in /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php on line 662
Warning: Cannot modify header information - headers already sent by (output started at /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php:662) in /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php on line 663
Warning: Cannot modify header information - headers already sent by (output started at /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php:662) in /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php on line 664
Warning: Cannot modify header information - headers already sent by (output started at /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php:662) in /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php on line 666
Warning: Cannot modify header information - headers already sent by (output started at /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php:662) in /home/content/s/t/e/stepstomastery/html/programs/wp-includes/pluggable.php on line 865
PHP is pointing to a cookie issue, pasted lines below: (lines 654 – 678)
$auth_cookie = wp_generate_auth_cookie($user_id, $expiration, $scheme);
$logged_in_cookie = wp_generate_auth_cookie($user_id, $expiration, 'logged_in');
do_action('set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme);
do_action('set_logged_in_cookie', $logged_in_cookie, $expire, $expiration, $user_id, 'logged_in');
// Set httponly if the php version is >= 5.2.0
if ( version_compare(phpversion(), '5.2.0', 'ge') ) {
setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure, true);
setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, COOKIEPATH, COOKIE_DOMAIN, false, true);
if ( COOKIEPATH != SITECOOKIEPATH )
setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, SITECOOKIEPATH, COOKIE_DOMAIN, false, true);
} else {
$cookie_domain = COOKIE_DOMAIN;
if ( !empty($cookie_domain) )
$cookie_domain .= '; HttpOnly';
setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, $cookie_domain, $secure);
setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, $cookie_domain, $secure);
setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, COOKIEPATH, $cookie_domain);
if ( COOKIEPATH != SITECOOKIEPATH )
setcookie(LOGGED_IN_COOKIE, $logged_in_cookie, $expire, SITECOOKIEPATH, $cookie_domain);
}
}
endif;