Re: display_errors stdout not working in a .htaccess file [message #170580 is a reply to message #170577] |
Mon, 08 November 2010 23:46 |
Jim Wigginton
Messages: 2 Registered: November 2010
Karma:
|
Junior Member |
|
|
On Nov 8, 5:08 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> On 11/8/2010 4:35 PM, yawnmoth wrote:
>
>> I have a .htaccess file that contains only one line:
>
>> php_flag display_errors on
>
>> Only problem: Errors aren't being displayed as I'd expect. Any ideas
>> as to why? Is there some setting in httpd.conf that can be used to
>> prevent errors from displaying?
>
> What about error_reporting?
I've tried setting error_reporting with the following:
php_flag error_reporting 30719
php_flag error_reporting E_ALL
The former is the constant of E_ALL per <http://php.net/manual/en/
errorfunc.constants.php>. Neither work. phpinfo() says that the
local value of error_reporting is 0 whereas the master value is 30719
so I'm thinking that's the problem. I just don't know where
error_reporting is getting overwritten. The file I'm accessing is in
the exact same directory as the .htaccess file.
|
|
|