Thursday, July 17, 2008

make php scream!

most live environments have been muted purposely. but you are stuck with blank or half parsed pages! here is the workaround.

ini_set('display_errors', true);
ini_set('error_reporting', E_ALL);
//error_reporting(E_ALL); no need, second line do the same

make sure you remove those lines once you are done.

0 comments: