When I encounter an error in a PHP site running on my local IIS7 error, I just get a blank page. I have tried disabling the "Show friendly HTTP errors" option in IE.
In my PHP.ini, the display_errors = On is enabled. In my script, I have the following set:
error_reporting(E_ALL); ini_set('display_errors','On'); I'm not sure why IIS is still not showing the errors? Is there anything I'm missing?
Edit: To be clear, I DO know there is an error. IIS7 is just not displaying the error, and seems to be suppressing it. I even tried enabling "PassThrough" errors via the command line for this site, but that didn't help either.
