3
If you still want to see the errors displayed, you could try adding at the beginning of the include-file:
error_reporting(E_ALL);
You might also need to add:
ini_set('display_errors', '1');
But those settings are not recommended for a public site, since they could reveal information useful to hackers.