Here’s a tip on solving the dreaded White Screen of Death that some Wordpress bloggers get when we mess around with the templates file or after we upgraded our Wordpress version.

I was inspired to do this video after seeing problogger LiewCF.com encountering the same white screen of death problem too. Since I am an ex-PHP programmer, this is right up my alley :)


The code for tester.php :-


<?
ini_set(’display_errors’,'1′);
ini_set(’display_startup_errors’,'1′);
error_reporting (E_ALL);include(’index.php’);

?>


Popularity: 61% [?]