is there a way to set *error_reporting(E_ALL);* for a specific directory rather than including it in each file?
I'd like to turn on error reporting for my beta.mysite.com
|
|
is there a way to set *error_reporting(E_ALL);* for a specific directory rather than including it in each file? I'd like to turn on error reporting for my beta.mysite.com
|
||
|
|
|
You can use a .htaccess file in Apache. Just add this line:
Or for old PHP versions:
Note that you can't use the contants (like E_ALL) From the manual:
|
|||
|
|
|
Use an .htaccess file to set the option.
Now, naturally this only works if you are using apache as a module. If you want to add the configuration option when using CGI, your options going to be limited. A couple of ideas:
|
|||
|
|
|
|
Just a quick note: putting PHP instructions into .htaccess works only if PHP is installed as an Apache module. With PHP installed as CGI all you get is a |
||||
|
|
|
for CGI mode you must use php.ini to accomplish that |
||
|
|