Any time I get a PHP error, all I see is a blank screen. Errors/notices will not display to the screen or save to a log file.
I'm running XAMPP with PHP 5.3.1. I used to run PHP on IIS and had no problems displaying errors. Now that I'm on Apache (still running on a Windows machine), I can't get any error or notice to display on the screen or saved to a log file. Here's what I've checked...
1) Checked my php.ini file location...pointing to the correct file.
2) In php.ini, display_error, display_startup_errrors are on
3) error_reporting set to E_ALL
I can't figure out why errors won't display? I've tried the following code, purposely leaving off the "; on the echo to create an error. All I get is a blank screen, no indication of an error.
<?php
echo "testing
?>
What am I missing??? Any help would be greatly appreciated!