Hi,
I have stumbled on a problem I can't solve elegantly. I was wondering if someone had a good tip.
My question is simply how to unset the auto_prepend_file in a .htaccess file?
By unset I mean that in php.ini (or somewhere) a prepend file is set. But for a certain dir on the server I want to have NO prepend file.
The docs suggest that you can unset by using none as the vaulelike so:
php_value auto_prepend_file none
But php naturally looks for a file named none instead.
The way I have worked around it for now is that I have put an empty file on the server and pointed to that. Not very cool.
Anyone got a good syntax for this?