I am trying to install my PHP installation in IIS to display errors, but I have no luck at all. I tried
error_reporting(E_ALL);
in the script, and nothing is displayed, just a blank screen.
I tried changing the PHP.ini file and installing
error_reporting = E_ALL
display_errors = On
Also tried
error_reporting = E_ALL
display_errors = stdout
but nothing appears on the screen at all when my scripts cause errors.
Any tips?
Marty source
share