I’m trying to get the warnings to show in my php error log.
My ISP has some warnings showing and I need to be able to see them on my test server.
error_reporting = E_ALL & ~E_NOTICE
display_errors = off
display_startup_errors = Off
log_errors = On
error_log = "C:\php-errors.txt"
I’ve upgraded my php version too 5.2.17
I also have
register_globals = Off
Like my ISP, but I can’t get any warnings to show.
Set
display_errorstoOnto display the warnings in the page (instead of in the logfile) and seterror_reportingtoE_ALL | E_STRICTto display all warnings and errors in yourphp.ini.