[EMAIL PROTECTED] wrote:
***********************************************
This Email Has Been Virus Swept
***********************************************

Is there anything special one has to do in order to enable the use of the "php_value" 
directive in the context of an apache .htaccess file?

I notice that on some hosts I can drop in something like:

        php_value auto_prepend_file groove.php

with impunity. Other hosts, it causes Apache to generate an internal
server error.


-Weston


Although this may not be your problem it's always a good idea to test for the existence of the module before attempting to change any of it's values:


    <IfModule mod_php5.c>
        php_value auto_prepend_file "groove.php"
    </IfModule>

Neil


This communication is confidential to the intended recipient(s). If you are not that person you are not permitted to make use of the information and you are requested to notify the sender immediately of its receipt then destroy the copy in your possession. Any views or opinions expressed are those of the originator and may not represent those of Advanced System Architectures Ltd.

*** This Email Has Been Virus Checked ***

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to