PHP error reporting: Difference between revisions

From D3xt3r01.tk
Jump to navigationJump to search
(New page: So after wondering my ass off on how and where to change confs to make php spit out all the errors in one location only .. here's what I found ... <source lang="php"> php_flag display_err...)
(No difference)

Revision as of 23:23, 25 June 2009

So after wondering my ass off on how and where to change confs to make php spit out all the errors in one location only .. here's what I found ...

php_flag display_errors on
php_value error_reporting 7

in a .htaccess file in that directory ... And the great news is that it actually works !

Original source here .