views:

42

answers:

3

I've installed developer's LAMP server and made changes on php.ini

display_errors On

display_startup_errors On

but it doesn't display any errors or even a little warning, what's the problem, what's wrong?

+1  A: 

Did you restart apache?

tisphie
For sure I restarted web server it doesn't affect anyway
sultan
A: 

Also set error_reporting to E_ALL

Levon Mirzoyan
Nothing happens
sultan
A: 

Keep in mind that most systems have two php.ini files, one for the webserver and one for the command line. Do a phpinfo() to see which one you need to edit.

Maerlyn
I changed them both
sultan
So you're saying you edited both to `display_errors=On` and `error_reporting=E_ALL`, restarted the httpd and still no errors get displayed?
Maerlyn