To test, if your php error reporting is displaying errors, try to make some php file with error and run it on your server.
e.g.:
php-error.php
and add this content there:
Code: Select all
<?php
echo "test";
echo $varibale;
echo $var
echo "test";
?>
Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in D:\www\ZK\error.php on line 8
Jan