I have a wamp going on and just recently I had to switch from MySQL to PostgreSQL because of a new client.
Here is how my errs was setup in my php.ini
:
display_errors
Default Value: On
Development Value: On
Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
The pg
dll was loading up and working great.
Pg was showing up in my phpinfo()
; the world was beautiful.
Then i need to turn errs on because I need it for debugging.
Of course I did this:
display_errors
Default Value: On
Development Value: On
Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
Default Value: E_ALL & ~E_NOTICE
Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
... but now the pg
module wont load and the pg
extension doesnt show up in my phpinfo()
.
WTH?
Any ideas? What's this is about?
UPDATE
So I've corrected my php.ini
to look like this:
display_errors= On
; Default Value: On
; Development Value: On
; Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
error_reporting = E_ALL & ~E_NOTICE
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
pgsql loading but still no love on error reporting.