From: "Gfunk" <[EMAIL PROTECTED]>

>Hi, I'm trying to disable phplib, and I have a .htaccess file consisting of
the line
>
>php_value auto_prepend_file none
>
>And now I'm getting a 500 internal server error. Can anybody shed some
light
>on what I'm doing wrong?
>
>Cheers,
>Gfunk


It sounds like your Apache configuration does not allow the php_value
directive to appear in an .htaccess file. Check your error_log for a
description of the problem.

In httpd.conf (or access.conf) find an applicable <Directory> block and
check the setting of AllowOverride.

I'm not actually sure what the override setting you need is, but you could
try Options or just All.

http://httpd.apache.org/docs/mod/core.html#allowoverride

Example:

<Directory /www/htdocs>
    AllowOverride All
    ...
</Directory>

Of course, if you're able to edit httpd.conf then you could just put the
php_value directive directly in there. :)


Cheers

Simon Garner


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to