Better error messages upon critical errors – HTTP Error 500
WordPress error handling is pretty good, but you do need to do a little work to shape this to your needs: I can tell you that the most simple set-up I know is to log errors to the wp-content/debug.log file – using the following set-up in wp-config.php: define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_LOG’, true ); … Read more