user2827317
user2827317

Reputation: 37

Why are my PHP errors not displaying?

Here is my php.ini and I have restarted the httpd process several times while messing around with this, however no errors are being displayed, only a blank page.

error_reporting  =  E_ALL & E_STRICT
display_errors = On

Upvotes: 0

Views: 51

Answers (1)

Toto
Toto

Reputation: 2420

In dev, we use this:

error_reporting = E_ALL | E_STRICT

Upvotes: 1

Related Questions