Recommend a guide to catching plugin errors, please?

A white screen of death is typically a fatal PHP error, most of the time due to a syntax error. This often sends no errors to the browser. Some things you can do: Turn on PHP error_log in your php.ini file and set the error_reporting levels. http://php.net/manual/en/errorfunc.configuration.php Error info: http://www.php.net/manual/en/errorfunc.constants.php Alternatively or in combination you … Read more