ID: 24357 User updated by: calin dot brandabur at mobilesolutions dot ro Reported By: calin dot brandabur at mobilesolutions dot ro Status: Open Bug Type: Apache2 related Operating System: windows server 2003 PHP Version: 4.3.2 New Comment:
Actually the first run should return cookie set cookie info username:user password:pass and the second run cookie *found* cookie info username:user password:pass Previous Comments: ------------------------------------------------------------------------ [2003-06-27 08:21:42] calin dot brandabur at mobilesolutions dot ro Description: ------------ i installed apache 2.0.46 and php 4.3.2 and the cookies are no longer working... at all see http://test.mobilesolutions.ro (win2k3 server) and http://new.v2r.ag/cookie (linux server with older version of php/apache) Reproduce code: --------------- <? if(!$username) { $username = "user"; $password = "pass"; $cookie_expire = "01/01/2099"; setcookie ("username", $username, $cookie_expire); setcookie ("password", $password, $cookie_expire); echo "<b>cookie set</b><br><br>"; } else { echo "<b>cookie found</b><br><br>"; } echo "<b>cookie info</b><br>username:{$username}<br>password:{$password}"; ?> Expected result: ---------------- First run: cookie set cookie info username:user password:pass Second run: cookie set cookie info username:user password:pass Actual result: -------------- Every run: cookie set cookie info username:user password:pass ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=24357&edit=1