Blank sign in page
is your site working? or problem it’s just with admin? try to review apache access & error logs for possible clues. Try also to review htaccess, bad rewrite could break your site
is your site working? or problem it’s just with admin? try to review apache access & error logs for possible clues. Try also to review htaccess, bad rewrite could break your site
WordPress white screen with “All Pages”
WSOD on 4.1.1 after migrating from Bluehost to Dreamhost
The answer is right there in your error. Your first if checks that $reg_errors is definitely an instance of WP_Error, but your elseif doesn’t. You need: elseif ( is_wp_error( $reg_errors ) && count( $reg_errors->get_error_messages() ) < 1 )
Can’t show debug even after modifying wp-config
WordPress displays 500 error on PHP errors
If none of this works I would suggest reinstalling WordPress. When you completed the site did you back it up? You could restore from a known good backup if you have one.
According to the error you are defining WP_CACHE as true somewhere (maybe in wp-config.php?). This way WordPress is looking for a file that doesn’t exist in default installation. Disable it and the error will be gone. You can also create an empty file advanced-cache.php in wp-content/ directory if you are unable to find WP_CACHE
Blank page and 301 redirect
This error means $response isn’t returning the array you expect but a wordpress error object. Try if( is_wp_error( $response ) ) { echo $response->get_error_message(); } and see what you get.