|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-07-22 20:59 UTC] yamasaki at aero dot kyushu-u dot ac dot jp
There is no PHP 4.2.2 choice in the bug reporting page. Actually this is related to 4.2.2. On Solaris 8 with gcc 2.95.2, When configuring ./configure --with-apxs2=/usr/local/apache2/bin/apxs --enable-trans-sid --enable-mbstring --enable-mbstr-enc-trans --enable-track-vars --with-mysql=/usr/local/mysql we have got Configuring SAPI modules checking for AOLserver support... no checking for Apache 1.x module support via DSO through APXS... no checking for Apache 1.x module support... no checking for mod_charset compatibility option... no checking for Apache 2.0 module support via DSO through APXS... configure: error: Use --with-apxs with Apache 1.3.x! PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 07:00:01 2025 UTC |
This version seems to have a crucial bug described below. How should we describe the version to report the bug ? For the sample program <html> <body> <form method="post" name="submit" action="cron.php"> <input type="submit" name="cmd" value="New"> </form> <?php if (isset($HTTP_POST_VARS)) { foreach ($HTTP_POST_VARS as $key => $value) { print $key . ":" . $value . "<BR>"; } } ?> </body> </html> After pushing "New" button, we obtain "cmd:Newcmd=New". It should be just "cmd:New", isn't it?