Re: display_errors stdout not working in a .htaccess file [message #170609 is a reply to message #170608] |
Tue, 09 November 2010 21:41 |
Jerry Stuckle
Messages: 2598 Registered: September 2010
Karma:
|
Senior Member |
|
|
On 11/9/2010 4:27 PM, Thomas Mlynarczyk wrote:
> Jerry Stuckle schrieb:
>
> [Using php_flag instead of php_value in .htaccess]
>> It will not set it to the correct value. Flag takes true/false on/off
>> only. Looks like it sets it to false (0)
>
> Then it seems that this is the cause of the OP's problem. I suppose
> php_flag exists only so Apache will "translate" true/false/on/off to
> their respective integer values instead of treating them as literal
> strings. So "php_flag <directive> on" is basically a kind of syntactic
> sugar for "php_value <directive> 1"? And thus we could theoretically do
> without php_flag and use php_value for everything and make life simpler?
>
> Greetings,
> Thomas
>
No, it is a true/false directive, not a value directive. php_flag and
php_value are used for different options.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
|
|
|