In Index page change the following:
error_reporting(E_ALL | E_STRICT);
to
error_reporting(E_ALL);
Set $_SERVER['MAGE_IS_DEVELOPER_MODE'] = true
and uncomment this line (remove the #)
#ini_set('display_errors', 1);
You can also Set Dev Mode using SetEnv in your .htaccess file
To make th...