php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #16595 When PHP compiled as CGI - POST variables don't set
Submitted: 2002-04-14 04:03 UTC Modified: 2002-04-14 19:28 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: alm at chekushkin dot com Assigned:
Status: Not a bug Package: HTTP related
PHP Version: 4.1.2 OS: FreeBSD 4.5
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
8 - 1 = ?
Subscribe to this entry?

 
 [2002-04-14 04:03 UTC] alm at chekushkin dot com
When PHP compiled as CGI for Apache - POST variables don't set.

./configure --prefix=/usr --with-config-file-path=/etc/httpd/conf --enable-force-cgi-redirect --with-mysql=/usr/local --with-gd --with-pgsql=/usr

I cannot access to it by $_POST['field_name'] or $HTTP_POST_VARS['field_name'] or $field_name.

Script example
index.php --------------------

<?php
print $HTTP_POST_VARS['username']."<br>";
print $_POST['username']."<br>";
print $username."<br>";
?>

<form action="index.php" method="POST">
<input type="text" name="username" value="alex">
<input type="submit" value="Send">
</form>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-04-14 18:41 UTC] sniper@php.net
Which Apache version is it?

 [2002-04-14 19:27 UTC] alm at chekushkin dot com
Sorry. I already solve my problem.

It was not PHP problem. It was Apache + mod_bandwidth problem.

Thank you
 [2002-04-14 19:28 UTC] sniper@php.net
Bogus then. Thanks for letting us know..

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 22:01:26 2024 UTC