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

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

[PHP] auto_prepend_file in Apache Directory container

2005-05-12 Thread dan
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 config file

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

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

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

Re: [PHP] auto_prepend_file

2003-08-23 Thread Peter James
Professionals http://www.phparch.com - Original Message - From: Dennis Gearon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 22, 2003 8:39 PM Subject: [PHP] auto_prepend_file Is there any settings that will silently disable the ability for a .htaccess file to use

[PHP] auto_prepend_file

2003-08-22 Thread Dennis Gearon
Is there any settings that will silently disable the ability for a .htaccess file to use the php_value auto_prepend_value some file name directive? Some safe mode thing, or an ini setting or something? The people at the host I'm at just CAN'T seem to get it working on my site. It's an

[PHP] auto_prepend_file

2003-03-26 Thread Kevin Heflin
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 page. my

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

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

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

[PHP] Auto_Prepend_File for non-PHP files?

2002-11-14 Thread Sara Keesler
Hi, I couldn't find this in the documentation, or in the archives of the mailing list, so I apologize if it's been answered many times before :) I'm trying to use auto_prepend_file to prepend a php file to every file in a folder, not just .php files. I have: Files ~ .* php_value

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

[PHP] Auto_prepend_file

2002-02-28 Thread Richard Baskett
What I want to do is have a function available to all my php files without having to use an include in every page. So what I did was put this line in my .htaccess file: php auto_prepend_file pathtoscript/uniemail.php It didnĀ¹t work, I also tried php_auto with the underscore in the above

[PHP] auto_prepend_file

2001-08-13 Thread lolodev
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 auto_prepend_file different to another web site? (my

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

[PHP] auto_prepend_file

2001-07-21 Thread rip
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 command for prepending? I've tried in the vhosts.conf and http.conf, could be my syntax.. I've tried the following in both .confs: auto_prepend_file

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