I have changed the config setting to enable debugging as follows;
define( 'WP_DEBUG', true );
When I refresh the page I still get he unhelpful message:
There has been a critical error on your website.
How can I get it to spilt its guts on the screen and show the actual error?
I have changed the config setting to enable debugging as follows;
define( 'WP_DEBUG', true );
When I refresh the page I still get he unhelpful message:
There has been a critical error on your website.
How can I get it to spilt its guts on the screen and show the actual error?
Share Improve this question asked Feb 1, 2020 at 9:18 spreadermanspreaderman 1139 bronze badges 2 |1 Answer
Reset to default 0Fatal error handling has been introduced in WordPress 5.1 and 5.2. also known as "Screen Of Death (WSOD) protection." To exclude this "protection" and restore the old way error catching you should add this to your wp-config.php file since WP_DEBUG true is not enough to disable the WSOD protection :
define( 'WP_DISABLE_FATAL_ERROR_HANDLER', true );
define( 'WP_DEBUG_DISPLAY', true );
and ordefine( 'WP_DEBUG_LOG', true );
and setWP_DEBUG_DISPLAY
tofalse
and then go check your error log which should be generated in/wp-content/debug.log
assuming it is not being set to output somewhere else by your server settings. Useful reading: wordpress/support/article/debugging-in-wordpress – Adam Commented Feb 1, 2020 at 9:34