Update….I was reading the code on the wp-login.php page and noticed that the code is set that if cookies are disabled to not login even with a valid user and password. I went into IE and set my machine to allow third party cookies…and Voila! I was able to login. Does anyone know of a workaround for this? I know I can enable cookies in the security settings in IE however, I cannot control everyone elses browser. I would like to modify the code if possible so that it works on everyones IE browser. The code is below….
// If cookies are disabled we can’t log in even with a valid user+pass
if ( isset($_POST) && empty($_COOKIE[TEST_COOKIE]) )
$errors->add(‘test_cookie’, __(“ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.”));