Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Raquel Rice
On Sat, 27 Sep 2003 20:05:10 -0400
"Damon Kohler" <[EMAIL PROTECTED]> wrote:

> Well, it does turn off. At least phpinfo() says that it's off.
> However, PHP is acting as though it's still turned on. The source
> code for the page I'm using to test this odd result is:
> 

> 
> I'm running PHP 4.3.3 on RH7. When the form is submited, the value
> is printed despite the fact it's printing $test and not
> $_POST['test']. This is copy pasted from the results:
> 
>   register_argc_argv Off Off
>   register_globals Off Off
> 
> 
> I'm completely stumped.
> 
> Thanks in advance,
> Damon

Did you reload your http server?

--
Raquel

If our words are not consistent with our actions, they will never be
heard above the thunder of our deeds.
  --H. Burke Peterson

--
Raquel

If our words are not consistent with our actions, they will never be
heard above the thunder of our deeds.
  --H. Burke Peterson

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
I don't think so... You have something particular in mind? You can check out
the page itself at http://my.innermetrix.cc/test.php

Damon

"Robert Cummings" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Are you using third party code that might be doing the export to global
> space itself?
>
> Rob.
>
> On Sat, 2003-09-27 at 22:21, Damon Kohler wrote:
> > No, it's not cached. I can type in anything to the input and it'll show
up.
> > As in, if I type "test" into the form, it prints test. Then if I type
"hello
> > world" it'll print hello world. So I'm pretty sure caching  isn't the
> > problem.
> >
> > Damon
> >
> > "Cristian Lavaque" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]
> > > I don't know much about this, but could it have been cached?
> > >
> > > Cristian
> > >
> > >
> > > Damon Kohler wrote:
> > > > Well, it does turn off. At least phpinfo() says that it's off.
> > > > However, PHP is acting as though it's still turned on. The
> > > source
> > > > code for the page I'm using to test this odd result is:
> > > >
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > >  > > >
> > > > print $test;
> > > >
> > > > phpinfo();
> > > >>
> > > >
> > > > I'm running PHP 4.3.3 on RH7. When the form is submited, the
> > > value is
> > > > printed despite the fact it's printing $test and not
> > > $_POST['test'].
> > > > This is copy pasted from the results:
> > > >
> > > >   register_argc_argv Off Off
> > > >   register_globals Off Off
> > > >
> > > >
> > > > I'm completely stumped.
> > > >
> > > > Thanks in advance,
> > > > Damon
> >
> > -- 
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
> -- 
> ..
> | InterJinn Application Framework - http://www.interjinn.com |
> ::
> | An application and templating framework for PHP. Boasting  |
> | a powerful, scalable system for accessing system services  |
> | such as forms, properties, sessions, and caches. InterJinn |
> | also provides an extremely flexible architecture for   |
> | creating re-usable components quickly and easily.  |
> `'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Robert Cummings
Are you using third party code that might be doing the export to global
space itself?

Rob.

On Sat, 2003-09-27 at 22:21, Damon Kohler wrote:
> No, it's not cached. I can type in anything to the input and it'll show up.
> As in, if I type "test" into the form, it prints test. Then if I type "hello
> world" it'll print hello world. So I'm pretty sure caching  isn't the
> problem.
> 
> Damon
> 
> "Cristian Lavaque" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > I don't know much about this, but could it have been cached?
> >
> > Cristian
> >
> >
> > Damon Kohler wrote:
> > > Well, it does turn off. At least phpinfo() says that it's off.
> > > However, PHP is acting as though it's still turned on. The
> > source
> > > code for the page I'm using to test this odd result is:
> > >
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > >  > >
> > > print $test;
> > >
> > > phpinfo();
> > >>
> > >
> > > I'm running PHP 4.3.3 on RH7. When the form is submited, the
> > value is
> > > printed despite the fact it's printing $test and not
> > $_POST['test'].
> > > This is copy pasted from the results:
> > >
> > >   register_argc_argv Off Off
> > >   register_globals Off Off
> > >
> > >
> > > I'm completely stumped.
> > >
> > > Thanks in advance,
> > > Damon
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
No, it's not cached. I can type in anything to the input and it'll show up.
As in, if I type "test" into the form, it prints test. Then if I type "hello
world" it'll print hello world. So I'm pretty sure caching  isn't the
problem.

Damon

"Cristian Lavaque" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I don't know much about this, but could it have been cached?
>
> Cristian
>
>
> Damon Kohler wrote:
> > Well, it does turn off. At least phpinfo() says that it's off.
> > However, PHP is acting as though it's still turned on. The
> source
> > code for the page I'm using to test this odd result is:
> >
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> >  >
> > print $test;
> >
> > phpinfo();
> >>
> >
> > I'm running PHP 4.3.3 on RH7. When the form is submited, the
> value is
> > printed despite the fact it's printing $test and not
> $_POST['test'].
> > This is copy pasted from the results:
> >
> >   register_argc_argv Off Off
> >   register_globals Off Off
> >
> >
> > I'm completely stumped.
> >
> > Thanks in advance,
> > Damon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Cristian Lavaque
I don't know much about this, but could it have been cached?

Cristian


Damon Kohler wrote:
> Well, it does turn off. At least phpinfo() says that it's off.
> However, PHP is acting as though it's still turned on. The
source
> code for the page I'm using to test this odd result is:
>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> print $test;
>
> phpinfo();
>>
>
> I'm running PHP 4.3.3 on RH7. When the form is submited, the
value is
> printed despite the fact it's printing $test and not
$_POST['test'].
> This is copy pasted from the results:
>
>   register_argc_argv Off Off
>   register_globals Off Off
>
>
> I'm completely stumped.
>
> Thanks in advance,
> Damon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
Well, it does turn off. At least phpinfo() says that it's off. However, PHP
is acting as though it's still turned on. The source code for the page I'm
using to test this odd result is:













I'm running PHP 4.3.3 on RH7. When the form is submited, the value is
printed despite the fact it's printing $test and not $_POST['test']. This is
copy pasted from the results:

  register_argc_argv Off Off
  register_globals Off Off


I'm completely stumped.

Thanks in advance,
Damon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php