John Reade

Results 4 comments of John Reade

Sorry I made a mistake in my initial report of this problem. I stated that the error did not happen on local IIS. However, that is not true. I'm getting...

Narrowed this down to line 1402 in wp-includes\pluggable.php `$path = dirname( parse_url( 'http://placeholder' . $_SERVER['REQUEST_URI'], PHP_URL_PATH ) . '?' );` dirname on windows returns \ which makes the redirect location...

This is my resolution for this issue: ``` add_filter( 'lostpassword_redirect', 'new_lostpassword_redirect' ); function new_lostpassword_redirect( $lostpassword_redirect ) { return '/wp-login.php?checkemail=confirm'; } ```