Re: [PHP] auto_prepend_file in Apache Directory container

2005-05-13 Thread dan
Richard Lynch wrote: On Thu, May 12, 2005 12:48 pm, dan said: I'm trying to override the value of php.ini's 'auto_prepend_file' function, inside of an Apache Directory container. I'm not having much luck. In fact, no luck at all. This never happens. So I'm wondering now, are functions set by 'ph

Re: [PHP] auto_prepend_file in Apache Directory container

2005-05-13 Thread John Nichel
Richard Lynch wrote: On Thu, May 12, 2005 12:48 pm, dan said: I'm trying to override the value of php.ini's 'auto_prepend_file' function, inside of an Apache Directory container. I'm not having much luck. In fact, no luck at all. This never happens. So I'm wondering now, are functions set by 'ph

Re: [PHP] auto_prepend_file in Apache Directory container

2005-05-12 Thread Richard Lynch
On Thu, May 12, 2005 12:48 pm, dan said: > I'm trying to override the value of php.ini's 'auto_prepend_file' > function, inside of an Apache Directory container. I'm not having much > luck. In fact, no luck at all. This never happens. > > So I'm wondering now, are functions set by 'php_value' in

Re: [PHP] auto_prepend_file in Apache Directory container

2005-05-12 Thread Chris
dan wrote: dan wrote: Hello, all - I'm trying to override the value of php.ini's 'auto_prepend_file' function, inside of an Apache Directory container. I'm not having much luck. In fact, no luck at all. This never happens. So I'm wondering now, are functions set by 'php_value' inside of an A

Re: [PHP] auto_prepend_file in Apache Directory container

2005-05-12 Thread dan
dan wrote: Hello, all - I'm trying to override the value of php.ini's 'auto_prepend_file' function, inside of an Apache Directory container. I'm not having much luck. In fact, no luck at all. This never happens. So I'm wondering now, are functions set by 'php_value' inside of an Apache confi

Re: [PHP] auto_prepend_file

2003-08-23 Thread Peter James
Check out php_admin_value, highlighted in the link below http://216.239.33.104/search?q=cache:mpDXuwrDs_gJ:www.php.net/configuration.changes+php_admin_value+site:www.php.net&hl=en&ie=UTF-8 -- Peter James Editor-in-Chief, php|architect Magazine [EMAIL PROTECTED] php|architect The Magazine for PHP

RE: [PHP] auto_prepend_file

2003-03-26 Thread John W. Holmes
> Trying to use > php_value auto_prepend_file /path/to/file/checkauth.php > in an .htaccess file. > > I've used this before without problems, however with this instance, I > keep getting a message in my browser which says: > Redirection limit for this URL exceeded. Unable to load the requested >

RE: [PHP] auto_prepend_file

2003-03-26 Thread Jennifer Goodie
You're looping endlessly because SESSION is not getting registered anywhere. -Original Message- From: Kevin Heflin [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 5:16 PM To: php-general Subject: [PHP] auto_prepend_file Trying to use php_value auto_prepend_file /path/to/file/ch

Re: [PHP] auto_prepend_file

2003-03-26 Thread Kevin Heflin
On Wednesday, March 26, 2003, at 07:15 PM, Kevin Heflin wrote: Trying to use php_value auto_prepend_file /path/to/file/checkauth.php in an .htaccess file. I've used this before without problems, however with this instance, I keep getting a message in my browser which says: Redirection limit for

Re: [PHP] Auto_Prepend_File for non-PHP files?

2002-11-14 Thread Marco Tabini
The problem is that non-php files are not (normally) parsed through the PHP interpreter, and therefore the clause you're specifying has no effect. There are two solutions (at least that come to mind now): 1) Change your Apache configuration so that all files are parsed through PHP (inefficient an

Re: [PHP] auto_prepend_file

2001-08-13 Thread David Robley
On Tue, 14 Aug 2001 05:05, lolodev wrote: > recetly i ask about running automatically a page after each request > page. > > response is auto_prepend_file, auto_append_file, > > but how can i prepend file is the same for all php.ini > > but how can i do this with my provider , and how can i have a

Re: [PHP] auto_prepend_file

2001-07-21 Thread Rasmus Lerdorf
Please read http://www.php.net/manual/en/configuration.php You need to use: php_value auto_prepend_file /usr/local/htdocs/oi2kplus1/phplib/prepend.php -Rasmus > I'm trying to get auto_prepend to work on Mandrake 8.0, apache is > configured with mod_php4 and mod_vhosts. Where do I add the comma