Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-05-12 Thread hofmann

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Bogus
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

I am using Apache 2.0.36 - seems I missed this point - SORRY!


Previous Comments:


[2002-05-09 20:45:24] [EMAIL PROTECTED]

Tested in HEAD, 4.2.0 on both Linux and Windows-cgi and unable to
reproduce any of this anywhere.

This was indeed a problem in 4.1.1, but is fixed in 4.2.

Probably doesn't work with Apache2, but hopefully you guys would have
mentioned if you were using that server.



[2002-05-09 20:18:43] [EMAIL PROTECTED]

Please see also bug # 17088 with similar difficulty running on
Windows.
Also note that I have this problem on OmniHTTPd on Windows.

With similar problems on 2 operating systems and 3 servers it looks to
me like either a real PHP problem or a configuration error of some
kind.

 
show source



[2002-05-08 06:29:54] [EMAIL PROTECTED]

As it seems the value is also NOT within $_POST[test]



[2002-05-08 06:25:47] [EMAIL PROTECTED]

test1.html:
form method=post action=test2.php
  input type=submit name=test value=testvalue /
/form

test2.php:
?php
  echo $_REQUEST[test];
?

calling test2 from test1 results in an empty document, calling
test2.php?test=bla results in output 'bla'



[2002-05-06 02:23:49] [EMAIL PROTECTED]

I am not using any file upload!!
In some scripts I am using array variables but the bug also apears
without them!
I will try to create a short test script.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/16848

-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-05-12 Thread hofmann

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Bogus
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

Maybe someone should add an extra field to the bug report form - for
the type of web-server!


Previous Comments:


[2002-05-13 01:30:39] [EMAIL PROTECTED]

I am using Apache 2.0.36 - seems I missed this point - SORRY!



[2002-05-09 20:45:24] [EMAIL PROTECTED]

Tested in HEAD, 4.2.0 on both Linux and Windows-cgi and unable to
reproduce any of this anywhere.

This was indeed a problem in 4.1.1, but is fixed in 4.2.

Probably doesn't work with Apache2, but hopefully you guys would have
mentioned if you were using that server.



[2002-05-09 20:18:43] [EMAIL PROTECTED]

Please see also bug # 17088 with similar difficulty running on
Windows.
Also note that I have this problem on OmniHTTPd on Windows.

With similar problems on 2 operating systems and 3 servers it looks to
me like either a real PHP problem or a configuration error of some
kind.

 
show source



[2002-05-08 06:29:54] [EMAIL PROTECTED]

As it seems the value is also NOT within $_POST[test]



[2002-05-08 06:25:47] [EMAIL PROTECTED]

test1.html:
form method=post action=test2.php
  input type=submit name=test value=testvalue /
/form

test2.php:
?php
  echo $_REQUEST[test];
?

calling test2 from test1 results in an empty document, calling
test2.php?test=bla results in output 'bla'



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/16848

-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-05-06 Thread hofmann

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Feedback
+Status:   Open
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

I am not using any file upload!!
In some scripts I am using array variables but the bug also apears
without them!
I will try to create a short test script.


Previous Comments:


[2002-05-01 19:03:42] [EMAIL PROTECTED]

This error only occurs on multipart/form-data forms
that submit array containers and contain at least one
file-upload field, and occurs whether a file is
uploaded or not.  It appears as if PHP ignores the array
name, and uses it as a straight variable name,
overwriting everything that used that array name.

Note that $_POST is not affected by this bug.  Only
$_REQUEST.  The field marked as a file upload will not
appear in $_POST, but I'm not sure that's a bug.

Here is a sample script:

-- CUT HERE --
form action=?PHP print $_SERVER['REQUEST_URI']; ?
  method=post enctype=multipart/form-data
input type=text name=TEST[stuff]BR
input type=text name=TEST[moo]BR
input type=file name=TEST[uploadme]BR
input type=submit value=Test
/form

?PHP
var_dump($_REQUEST);
var_dump($_POST);
?
-- CUT HERE --



[2002-04-26 14:04:59] [EMAIL PROTECTED]

Can you please add a short and simple script which can be
used to reproduce this?




[2002-04-26 09:31:05] [EMAIL PROTECTED]

safe_mode   =   Off
Setting:

variables_order =   EGPCS 
register_globals=   On  
post_max_size   =   8M  
gpc_order   =   GPC   
magic_quotes_gpc=   On  


p.s.: I am on vacation and will be back at 6 march for further
questions



[2002-04-26 08:42:07] [EMAIL PROTECTED]

What is the POST/GET related ini setting?



[2002-04-26 07:34:56] [EMAIL PROTECTED]

With PHP 4.1.2 the post vars from a form are found in $_REQUEST[], but
with 4.2.0 only get vars seem to be there.
(same php.ini file for both versions used).





-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-05-06 Thread mfischer

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Open
+Status:   Feedback
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0


Previous Comments:


[2002-05-06 02:23:49] [EMAIL PROTECTED]

I am not using any file upload!!
In some scripts I am using array variables but the bug also apears
without them!
I will try to create a short test script.



[2002-05-01 19:03:42] [EMAIL PROTECTED]

This error only occurs on multipart/form-data forms
that submit array containers and contain at least one
file-upload field, and occurs whether a file is
uploaded or not.  It appears as if PHP ignores the array
name, and uses it as a straight variable name,
overwriting everything that used that array name.

Note that $_POST is not affected by this bug.  Only
$_REQUEST.  The field marked as a file upload will not
appear in $_POST, but I'm not sure that's a bug.

Here is a sample script:

-- CUT HERE --
form action=?PHP print $_SERVER['REQUEST_URI']; ?
  method=post enctype=multipart/form-data
input type=text name=TEST[stuff]BR
input type=text name=TEST[moo]BR
input type=file name=TEST[uploadme]BR
input type=submit value=Test
/form

?PHP
var_dump($_REQUEST);
var_dump($_POST);
?
-- CUT HERE --



[2002-04-26 14:04:59] [EMAIL PROTECTED]

Can you please add a short and simple script which can be
used to reproduce this?




[2002-04-26 09:31:05] [EMAIL PROTECTED]

safe_mode   =   Off
Setting:

variables_order =   EGPCS 
register_globals=   On  
post_max_size   =   8M  
gpc_order   =   GPC   
magic_quotes_gpc=   On  


p.s.: I am on vacation and will be back at 6 march for further
questions



[2002-04-26 08:42:07] [EMAIL PROTECTED]

What is the POST/GET related ini setting?



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/16848

-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-05-01 Thread sthomas

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Feedback
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

This error only occurs on multipart/form-data forms
that submit array containers and contain at least one
file-upload field, and occurs whether a file is
uploaded or not.  It appears as if PHP ignores the array
name, and uses it as a straight variable name,
overwriting everything that used that array name.

Note that $_POST is not affected by this bug.  Only
$_REQUEST.  The field marked as a file upload will not
appear in $_POST, but I'm not sure that's a bug.

Here is a sample script:

-- CUT HERE --
form action=?PHP print $_SERVER['REQUEST_URI']; ?
  method=post enctype=multipart/form-data
input type=text name=TEST[stuff]BR
input type=text name=TEST[moo]BR
input type=file name=TEST[uploadme]BR
input type=submit value=Test
/form

?PHP
var_dump($_REQUEST);
var_dump($_POST);
?
-- CUT HERE --


Previous Comments:


[2002-04-26 14:04:59] [EMAIL PROTECTED]

Can you please add a short and simple script which can be
used to reproduce this?




[2002-04-26 09:31:05] [EMAIL PROTECTED]

safe_mode   =   Off
Setting:

variables_order =   EGPCS 
register_globals=   On  
post_max_size   =   8M  
gpc_order   =   GPC   
magic_quotes_gpc=   On  


p.s.: I am on vacation and will be back at 6 march for further
questions



[2002-04-26 08:42:07] [EMAIL PROTECTED]

What is the POST/GET related ini setting?



[2002-04-26 07:34:56] [EMAIL PROTECTED]

With PHP 4.1.2 the post vars from a form are found in $_REQUEST[], but
with 4.2.0 only get vars seem to be there.
(same php.ini file for both versions used).





-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-04-26 Thread yohgaki

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Open
+Status:   Feedback
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

What is the POST/GET related ini setting?


Previous Comments:


[2002-04-26 07:34:56] [EMAIL PROTECTED]

With PHP 4.1.2 the post vars from a form are found in $_REQUEST[], but
with 4.2.0 only get vars seem to be there.
(same php.ini file for both versions used).





-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1




Bug #16848 Updated: POST vars not in $_REQUEST[]

2002-04-26 Thread hofmann

 ID:   16848
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Feedback
+Status:   Open
 Bug Type: Variables related
 Operating System: Linux
 PHP Version:  4.2.0
 New Comment:

safe_mode   =   Off
Setting:

variables_order =   EGPCS 
register_globals=   On  
post_max_size   =   8M  
gpc_order   =   GPC   
magic_quotes_gpc=   On  


p.s.: I am on vacation and will be back at 6 march for further
questions


Previous Comments:


[2002-04-26 08:42:07] [EMAIL PROTECTED]

What is the POST/GET related ini setting?



[2002-04-26 07:34:56] [EMAIL PROTECTED]

With PHP 4.1.2 the post vars from a form are found in $_REQUEST[], but
with 4.2.0 only get vars seem to be there.
(same php.ini file for both versions used).





-- 
Edit this bug report at http://bugs.php.net/?id=16848edit=1