in the same folder I have:
php.ini
display_errors = "stdout" ; Also tryed: "STDOUT" 0 and 1
this info from phpinfo()
PHP Version 5.3.2-1ubuntu4.9
display_errors Off Off ;never changes no matter what I put in php.ini
error_reporting 22527 22527
and this test.php script
<?php
error_reporting(E_ALL);
echo "start test<br>";
typoErr();
echo "never here<br>";
?>
I have tested alternatives and I cant find the way to see errors on the browser.
php.ini?