Date: 03/15/01
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #9769 Updated: Compile faliure --with-nsapi"
- Previous message: danellis <email protected>: "[PHP-DEV] PHP 4.0 Bug #9735 Updated: Mysql / IMAP issues"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 9726
Updated by: sniper
Reported By: jbeney <email protected>
Old-Status: Open
Status: Closed
Bug Type: Apache related
Assigned To:
Comments:
Solved by recompiling -> closed.
--Jani
Previous Comments:
---------------------------------------------------------------------------
[2001-03-15 07:48:32] jbeney <email protected>
Recompiling php4 (with the right httpd.h) solved the problem.
Before, both apache and php were installed by way of RPMs:
apache-1.3.14-3 and php-4.0.4pl1-3
It seems that these RPM were not fully compatible (they were not compiled together).
---------------------------------------------------------------------------
[2001-03-13 22:21:32] sniper <email protected>
Please try the latest CVS snapshot from http://snaps.php.net/ as I can't reproduce this.
--Jani
---------------------------------------------------------------------------
[2001-03-13 10:01:05] jbeney <email protected>
The script below worked with php3. When the button
<input type="submit" name="Enregistrer" value="Enregistrer" >
is clicked, the variable $Enregistrer gets the value "Enregistrer" and the test
if($Enregistrer=="Enregistrer")
says yes.
We transfered our site on a server with PHP4 and then the HTTP_POST_VARS are prepended by two characters RC BS (decimal codes 13 & 10) and the above test says no.
If I change the test to
if(strcmp(substr($Enregistrer,2),"Enregistrer")==0)
it says yes.
_____________
<html>
<head> <SCRIPT LANGUAGE="JavaScript" src="script.js"> </SCRIPT> </head>
<body>
<form method=POST enctype="multipart/form-data"
action="<? echo $PHP_SELF ?>" name="formu">
<?php
$xxx=gettype($Enregistrer);
$yyy=strlen($Enregistrer);
echo "$xxx:$yyy:$Enregistrer:<br> ";
$xxx=ord($Enregistrer[0]);
$yyy=ord($Enregistrer[1]);
echo "-$xxx-$yyy-$Enregistrer[2]-$Enregistrer[11]-$Enregistrer[12]-<br>";
$xxx=gettype("$Fonction");
$yyy=strlen("$Fonction");
echo "$xxx:$yyy:$Fonction:<br>";
$xxx=ord($Fonction[0]);
$yyy=ord($Fonction[1]);
echo "-$xxx-$yyy-$Fonction[2]-$Fonction[21]-$Fonction[22]-<br>";
/* if(strcmp(substr($Enregistrer,2),"Enregistrer")==0) */
if($Enregistrer=="Enregistrer")
{ echo "enregistrer"; }
else
{ echo "ne pas enregistrer"; }
?>
<P>
<?php PRINT "<select name="Fonction">";
PRINT "<option selected value="$Fonction">$Fonction";
PRINT "<option value = "Professeur"> Professeur</option>";
PRINT "<option value = "Maître"> Maître</option>";
PRINT "</select>";
?>
<p> <input type="submit" name="Enregistrer" value="Enregistrer" > </p>
</form> </body> </html>
_________________
Configure Command
'./configure' '--prefix=/usr'
'--with-config-file-path=/etc' '--disable-debug'
'--enable-pic' '--enable-shared'
'--enable-inline-optimization'
'--with-apxs=/usr/sbin/apxs' '--with-exec-dir=/usr/bin'
'--with-regex=system' '--with-gettext' '--with-gd'
'--with-jpeg-dir=/usr' '--with-png' '--with-zlib'
'--with-db2' '--with-db3' '--with-gdbm'
'--enable-debugger' '--enable-magic-quotes'
'--enable-safe-mode' '--enable-sockets'
'--enable-sysvsem' '--enable-sysvshm'
'--enable-track-vars' '--enable-yp' '--enable-ftp'
'--enable-wddx' '--without-mysql' '--without-oracle'
'--without-oci8' '--with-xml'
__________________
other parts of phpinfo()
register_globals On
Apache Version Apache/1.3.14
Apache Release 10314100
Apache API Version 9990320
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9726&edit=2
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #9769 Updated: Compile faliure --with-nsapi"
- Previous message: danellis <email protected>: "[PHP-DEV] PHP 4.0 Bug #9735 Updated: Mysql / IMAP issues"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

