When there is an error in the script, I am getting the correct PHP error reporting but no content.
Example:
<?php
echo "Start";
echo $nonexistent;
echo "End";
?>
This throws the expected E_NOTICE for the undefined $nonexistent, but shows none of the text.
The script doesn't appear to be crashing. Adding
file_put_contents('\path\to\file', date('r'));
at the end works fine. It's just that I have no content displayed.
Has anyone come across this before?
Recent install of PHP5.3 on IIS7.
TIA