tags:

views:

69

answers:

1

On my windows laptop I have Apache and PHP so I can develop websites locally. Then recently PHP files stopped reporting errors. In the php.ini file I have set

error_reporting  =  E_ALL & E_STRICT;

display_errors = On

But it still does not report any errors. If I echo error_reporting() i get 0.

What could be causing this problem?

+1  A: 

Ok, that was stupid. I obviously meant E_ALL | E_STRICT, which fixed the problem.

Marius
Happens to the best of us.
Joey Robert