Re: wp-signup.php and login issues
Hi, excuse my english… for all those that have the error that says: bla bla bla on line 3 on header.php…. here is the solution:
edit the file wp-includes/pluggable.php
in line 863 replace:
if ( $is_IIS ) {
header(“Refresh: 0;url=$location”);
} else {
if ( php_sapi_name() != ‘cgi-fcgi’ )
status_header($status); // This causes problems on IIS and some FastCGI setups
header(“Location: $location”, true, $status);
}
with this:
if( !headers_sent() ).
{
if ( $is_IIS ) {
header(“Refresh: 0;url=$location”);
} else {
if ( php_sapi_name() != ‘cgi-fcgi’ )
tatus_header($status); // This causes problems on IIS and some FastCGI setups
header(“Location: $location”, true, $status);
}
That’s all folks… bye bye to the problem!
I hope this help to someone!