From the manual:
5) In httpd.conf (or the approriate .htaccess file), search for a line like this (in the appropriate VirtualHost section):
php_value auto_prepend_file /path/to/your/website/prepend.php3
and replace it with a line like this:
php_value auto_prepend_file /path/to/your/website/prepend.php4
If you cannot modify httpd.conf but you can make the settings in a .htaccess file, make the setting in the .htaccess file!
So basically it is saying to add this line to the .htaccess file correct?
php_value auto_prepend_file /path/to/your/website/prepend.php4
This failes ang gives a server config error, of course I changed the path to my real existing file as well.
Is there a directive in apache or the php.ini that must be set to allow this or what is the deal here?