Yes you can do it through PHP.ini. First of all check if your display error is on:
Then you can use the following to get the errors to display:
Code:
Ini_set ('display_errors', 1);
But even if your display errors is on the errors during your start up sequence will not display. In order to get the start up errors you can use the following:
Code:
Ini_set ('display_startup_errors', 1);
Then use :
To make sure all the errors will get reported to you.