Welcome Guest, Not a member yet? Register   Sign In
Help with displaying error messages
#3

[eluser]nydeveloper[/eluser]
I should have mentioned that I had already done this, and it did not change anything. Below is an excerpt from my php.ini file.

Code:
; Common Values:
;   E_ALL & ~E_NOTICE  (Show all errors, except for notices and coding standards warnings.)
;   E_ALL & ~E_NOTICE | E_STRICT  (Show all errors, except for notices)
;   E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR  (Show only errors)
;   E_ALL | E_STRICT  (Show all errors, warnings and notices including coding standards.)
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
; http://php.net/error-reporting
error_reporting = E_ALL | E_STRICT

; This directive controls whether or not and where PHP will output errors,
; notices and warnings too. Error output is very useful during development, but
; it could be very dangerous in production environments. Depending on the code
; which is triggering the error, sensitive information could potentially leak
; out of your application such as database usernames and passwords or worse.
; It's recommended that errors be logged on production servers rather than
; having the errors sent to STDOUT.
; Possible Values:
;   Off = Do not display any errors
;   stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
;   On or stdout = Display errors to STDOUT
; Default Value: On
; Development Value: On
; Production Value: Off
; http://php.net/display-errors
display_errors = On

; The display of errors which occur during PHP's startup sequence are handled
; separately from display_errors. PHP's default behavior is to suppress those
; errors from clients. Turning the display of startup errors on can be useful in
; debugging configuration problems. But, it's strongly recommended that you
; leave this setting off on production servers.
; Default Value: Off
; Development Value: On
; Production Value: Off
; http://php.net/display-startup-errors
display_startup_errors = On


Messages In This Thread
Help with displaying error messages - by El Forum - 07-19-2012, 08:46 PM
Help with displaying error messages - by El Forum - 07-19-2012, 11:12 PM
Help with displaying error messages - by El Forum - 07-20-2012, 08:01 AM
Help with displaying error messages - by El Forum - 07-23-2012, 10:06 AM
Help with displaying error messages - by El Forum - 07-23-2012, 10:17 AM
Help with displaying error messages - by El Forum - 07-23-2012, 10:20 AM
Help with displaying error messages - by El Forum - 07-23-2012, 10:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB