#19762 [Fbk->Csd]: POST action leads to $ variable containing 'dataenteredvariable=datayouentered'

2002-10-05 Thread fmartens

 ID:   19762
 User updated by:  [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Feedback
+Status:   Closed
 Bug Type: Apache2 related
 Operating System: linux (rh6.2)
 PHP Version:  4CVS-2002-10-04
 New Comment:

as sander at php dot net suggested. this is the case, i was using the
in/out filter in the apache config.

it wouldn't work without them in the previous version, but now it works
al fine. thanks


Previous Comments:


[2002-10-05 03:02:09] [EMAIL PROTECTED]

Weird... looking at the other bugreports about this, this might be a
configuration issue. Are you using the Input- and OutputFilter
directives? You shouldn't. You only need the LoadModule line and one or
more AddType lines.



[2002-10-05 02:47:09] [EMAIL PROTECTED]

let the web server be apache 2.0.43
let the php be 4CVS-2002-10-04
let there be a web form, submitted via POST, with only 1 field.

the contents of the variable of that one field get mangled.
if the name of the field is 'youraddress'
and you enter '14 bogusstreet'
the contents of $_POST[youraddress] become:
'14 bogusstreetyouraddress=14 bogusstreet'



[2002-10-04 18:17:18] [EMAIL PROTECTED]

Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


Given the provided info I am unable to replicate this bug.



[2002-10-04 17:42:16] [EMAIL PROTECTED]

using apache 2.0.43. this bug was also filed as 18648, but it was
closed as 'no feedback'. the problem does still exist here.

apache compiled with:
./configure --with-ssl=/usr/local/ssl --enable-so
--enable-mods-shared="proxy proxy_connect proxy_http status autoindex
asis cgi dir alias rewrite" --with-apxs --enable-ssl

php compiled with:
./configure --prefix=/usr/local/apache2/php
--with-apxs2=/usr/local/apache2/bin/apxs --with-openssl=/usr/local/ssl
--with-mysql



[2002-10-04 17:36:25] [EMAIL PROTECTED]

When you have a form that uses POST as it's action. The value of the
variable in which you store the data is as follows:

let "avar" be the variable
let "johndoe" be the text entered
 
you end up with $_POST[avar]="johndoeavar=johndoe"






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




#19762 [Bgs->Opn]: POST action leads to $ variable containing 'dataenteredvariable=datayouentered'

2002-10-05 Thread fmartens

 ID:   19762
 User updated by:  [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Bogus
+Status:   Open
 Bug Type: Apache2 related
 Operating System: linux (rh6.2)
 PHP Version:  4CVS-2002-10-04
 New Comment:

let the web server be apache 2.0.43
let the php be 4CVS-2002-10-04
let there be a web form, submitted via POST, with only 1 field.

the contents of the variable of that one field get mangled.
if the name of the field is 'youraddress'
and you enter '14 bogusstreet'
the contents of $_POST[youraddress] become:
'14 bogusstreetyouraddress=14 bogusstreet'


Previous Comments:


[2002-10-04 18:17:18] [EMAIL PROTECTED]

Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


Given the provided info I am unable to replicate this bug.



[2002-10-04 17:42:16] [EMAIL PROTECTED]

using apache 2.0.43. this bug was also filed as 18648, but it was
closed as 'no feedback'. the problem does still exist here.

apache compiled with:
./configure --with-ssl=/usr/local/ssl --enable-so
--enable-mods-shared="proxy proxy_connect proxy_http status autoindex
asis cgi dir alias rewrite" --with-apxs --enable-ssl

php compiled with:
./configure --prefix=/usr/local/apache2/php
--with-apxs2=/usr/local/apache2/bin/apxs --with-openssl=/usr/local/ssl
--with-mysql



[2002-10-04 17:36:25] [EMAIL PROTECTED]

When you have a form that uses POST as it's action. The value of the
variable in which you store the data is as follows:

let "avar" be the variable
let "johndoe" be the text entered
 
you end up with $_POST[avar]="johndoeavar=johndoe"






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




#19762 [Opn]: POST action leads to $ variable containing 'dataenteredvariable=datayouentered'

2002-10-04 Thread fmartens

 ID:   19762
 User updated by:  [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Unknown/Other Function
 Operating System: linux (rh6.2)
 PHP Version:  4CVS-2002-10-04
 New Comment:

using apache 2.0.43. this bug was also filed as 18648, but it was
closed as 'no feedback'. the problem does still exist here.

apache compiled with:
./configure --with-ssl=/usr/local/ssl --enable-so
--enable-mods-shared="proxy proxy_connect proxy_http status autoindex
asis cgi dir alias rewrite" --with-apxs --enable-ssl

php compiled with:
./configure --prefix=/usr/local/apache2/php
--with-apxs2=/usr/local/apache2/bin/apxs --with-openssl=/usr/local/ssl
--with-mysql


Previous Comments:


[2002-10-04 17:36:25] [EMAIL PROTECTED]

When you have a form that uses POST as it's action. The value of the
variable in which you store the data is as follows:

let "avar" be the variable
let "johndoe" be the text entered
 
you end up with $_POST[avar]="johndoeavar=johndoe"






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




#19762 [NEW]: POST action leads to $ variable containing 'dataenteredvariable=datayouentered'

2002-10-04 Thread fmartens

From: [EMAIL PROTECTED]
Operating system: linux (rh6.2)
PHP version:  4CVS-2002-10-04
PHP Bug Type: Unknown/Other Function
Bug description:  POST action leads to $ variable containing 
'dataenteredvariable=datayouentered'

When you have a form that uses POST as it's action. The value of the
variable in which you store the data is as follows:

let "avar" be the variable
let "johndoe" be the text entered
 
you end up with $_POST[avar]="johndoeavar=johndoe"


-- 
Edit bug report at http://bugs.php.net/?id=19762&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=19762&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=19762&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=19762&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=19762&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=19762&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=19762&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=19762&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=19762&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=19762&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=19762&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=19762&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=19762&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=19762&r=isapi