I set my error report to 0 just like the ones at
http://www.php.net/manual/en/ref.errorfunc.php:
error_reporting (0);
... so that I can use the custom error handler function at
http://www.php.net/manual/en/ref.errorfunc.php.
I'm on a shared server, by the way.
Hello RPG,
Where did you add the error level flags? and have you enabled the
error log entry in the php.ini? It should look like this:
error_reporting = E_ALL|E_NOTICE|E_CORE_ERROR
log_errors = On
error_log = "D:/php4_error_log.txt" (or where-ever)
Stick display errors on for your dev machine too if you want:
display_errors = On
display_startup_errors = On
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php