php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #15295 apache php freebsd can't upload parameter
Submitted: 2002-01-30 04:39 UTC Modified: 2002-05-05 00:00 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: alfred dot ding at tvb dot com dot cn Assigned:
Status: No Feedback Package: Apache related
PHP Version: 4.0.5 OS: freebsd 4.4
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2002-01-30 04:39 UTC] alfred dot ding at tvb dot com dot cn
hi,
  my system: 
    freebsd 4.4 + apache 1.3.20 + php4.0.4pl1
  the php script can't upload parameter.
follow is my compile shell;
cd apache_1.3.20
./configure --prefix==/foo
cd ../php4.0.4pl1
./configure --with-apache=../apache_1.3.20 \
--enable-track-vars 
make ; make install
cd ../apache_1.3.20
./configure --prefix=/foo \
--activate-module=src/modules/php4/libphp4.a
make ; make install

like follow program :
/* tests.php */
<html>
<form action="tests.php" method=post>
<input type=text name=test>
<input type=submit name=submit value=submit>
</form>
<? echo("tttt");?>

<? echo($test);?>
</html>

the content of $test if null,

but if u changes as :
/* tests.php */
<html>
<form action="t.php" method=post>
<input type=text name=test>
<input type=submit name=submit value=submit>
</form>
<? echo("tttt");?>

<? echo($test);?>
</html>

/*t.php*/
<?
echo($test);
?>

it run well.


follow is the response from apache.org after i ask this question.


Re: general/9621: can't upload parameter apache+ php at freebsd

[In order for any reply to be added to the PR database, you need]
[to include <apbugs@Apache.Org> in the Cc line and make sure the]
[subject line starts with the report component and number, with ]
[or without any 'Re:' prefixes (such as "general/1098:" or      ]
["Re: general/1098:").  If the subject doesn't match this       ]
[pattern, your message will be misfiled and ignored.  The       ]
["apbugs" address is not added to the Cc line of messages from  ]
[the database automatically because of the potential for mail   ]
[loops.  If you do not include this Cc, your reply may be ig-   ]
[nored unless you are responding to an explicit request from a  ]
[developer.  Reply only with text; DO NOT SEND ATTACHMENTS!     ]


Synopsis: can't upload parameter apache+ php at freebsd

State-Changed-From-To: open-closed
State-Changed-By: slive
State-Changed-When: Tue Jan 29 07:10:29 PST 2002
State-Changed-Why:

Please report this to the PHP developers (or better yet,
the PHP users mailing mailing list) at http://www.php.net/

Thanks for using Apache!



tks very much & bst rgds.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-01-30 14:56 UTC] sander@php.net
The variable 'test' will only show up once you've clicked the submit button. Did you do that?
 [2002-01-30 21:02 UTC] alfred dot ding at tvb dot com dot cn
yes, when someone click the button, it 
will show the content of $test.
 [2002-04-03 03:01 UTC] yohgaki@php.net
Sounds like reporter's fault.
Do you still think it's a bug?

 [2002-05-05 00:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a month, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 07:01:29 2024 UTC