Error Reporting Problems

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
Johnm
Forum Contributor
Posts: 344
Joined: Mon May 13, 2002 12:05 pm
Location: Michigan, USA
Contact:

Error Reporting Problems

Post by Johnm »

Hi all,
I am having problems whit error reporting on PHP4.2.3. I checked the php.ini file and all looks good, but I am not getting any errors or warnings through the browser. Here is that section of thephp.ini file... Am I space-cadeting it and not seeing something that is right under my nose?

Code: Select all

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;                                                                          
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; error_reporting is a bit-field.  Or each number up to get desired error reporting level               
; E_ALL                         - All errors and warnings
; E_ERROR                       - fatal run-time errors                                                 
; E_WARNING                     - run-time warnings (non fatal errors)
; E_PARSE                       - compile-time parse errors                                             
; E_NOTICE                      - run-time notices (these are warnings which often result from a bug in
;                                         your code, but it's possible that it was intentional (e.g., using an
;                                         uninitialized variable and relying on the fact it's automatically
;                                         initialized to an empty string)
; E_CORE_ERROR          - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING        - warnings (non fatal errors) that occur during PHP's initial startup
; E_COMPILE_ERROR       - fatal compile-time errors
; E_COMPILE_WARNING     - compile-time warnings (non fatal errors)
; E_USER_ERROR          - user-generated error message
; E_USER_WARNING        - user-generated warning message
; E_USER_NOTICE         - user-generated notice message
; Examples:
; error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR        ; show only errors
error_reporting = E_ALL & ~E_NOTICE & E_WARNING                                         ; show all errors, except for notices
display_errors  =       On      ; Print out errors (as a part of the output)
                                                ; For production web sites, you're strongly encouraged
                                                ; to turn this feature off, and use error logging instead (see below).
                                                ; Keeping display_errors enabled on a production web site may reveal
                                                ; security information to end users, such as file paths on your Web server,
                                                ; your database schema or other information.
display_startup_errors = Off            ; Even when display_errors is on, errors that occur during
                                                                        ; PHP's startup sequence are not displayed.  It's strongly
                                                                        ; recommended to keep display_startup_errors off, except for
                                                                        ; when debugging.
log_errors              =       off     ; Log errors into a log file (server-specific log, stderr, or error_log (below))
error_log=/custom/logs/test_serv_php_log
                                                ; As stated above, you're strongly advised to use error logging in place of
                                                ; error displaying on production web sites.
track_errors    =       Off     ; Store the last error/warning message in $php_errormsg (boolean)
;error_prepend_string = "<font color=ff0000>"   ; string to output before an error message
;error_append_string = "</font>"                ; string to output after an error message
;error_log      =       filename        ; log errors to specified file
;error_log      =       syslog          ; log errors to syslog (Event Log on NT, not valid in Windows 95)
warn_plus_overloading   =       Off             ; warn if the + operator is used with strings
Sorry for the messed-up format
Anyone have any Ideas?


John m
Post Reply