I’m getting a problem with my php scripts. No error reporting is being made in spite that in my php.ini that i’ve set display error everywhere
; display_errors
; Default Value: On
; Development Value: On
; Production Value: On
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
; Default Value: E_ALL
; Development Value: E_ALL
; Production Value: E_ALL
You have to use these:
With no
;at the start of the line. That is a comment and just disables the directive.Edit: To use runtime configuration, just add these two lines at the beginning of your php script: