i've never done this myself, but a suggestion would
be to check out: 'auto_append_file' and 'auto_prepend_file'

they're php.ini directives.
for example, try adding "auto_prepend_file 'stuff.php'" 
to your php.ini

when PHP goes to load a page, it'll first check to see if
'stuff.php' can be found, then it'll include('stuff.php')
and proceed with your script...

in 'stuff.php', you can then turn on any "per-directory"
options you want....


> -----Original Message-----
> From: Mark Maggelet [mailto:[EMAIL PROTECTED]]
> Subject: [PHP] setting output_buffering for certain hosts or directories
> 
> 
> Is there any way to set output_buffering per directory or host?
> I tried putting:
> php_value output_buffering On
> 
> in my virtual host, also in <directory>, <location>, and .htaccess
> the only place it seems to get noticed is in php.ini
> 
> php4.7devel/apache1.3.20/linux
> 
> thanks,
> - Mark
> 
> 
> -- 
> 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]
> 

-- 
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