ID: 17622
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Feedback
+Status: Open
Bug Type: Session related
Operating System: Debian GNU/Linux 3.0,kern2.2.17
PHP Version: 4.1.2
New Comment:
Nope, it's an old Sparc Station 5 (sun4m).
It's now upgraded with a 2.4.18 kernel ... same result.
Previous Comments:
------------------------------------------------------------------------
[2002-10-02 01:18:53] [EMAIL PROTECTED]
Does your sparc installation use a 64bit data model?
------------------------------------------------------------------------
[2002-06-06 05:39:39] [EMAIL PROTECTED]
session_register - session_is_registered
doesn't work for global variables with
"register_globals = on" on the sparc arch.
The set.php - get.php scripts at the end of this report
works just fine om my Debian GNU/Linux 3.0, kernel 2.4.18
on i386, but doesnt work on my Debian GNU/Linux 3.0, kernel 2.2.17 on
sparc.
Both machines runs Apache 1.3.24 and PHP 4.1.2 and got identical
php.ini files.
The scripts:
--- set.php ---------------------------------------------
<?php
@session_destroy();
$cookie_params = session_get_cookie_params();
setcookie(session_name());
session_start();
$globvar= true;
session_register ('globvar');
print '<A HREF="get.php">get.php</A>';
?>
--- get.php ---------------------------------------------
<?php
session_start();
if(session_is_registered('globvar')) {
print 'ok';
} else {
print 'failed';
}
?>
---------------------------------------------------------
On the i386 I get ok and on the sparc failed.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=17622&edit=1