From: [EMAIL PROTECTED]
Operating system: FreeBSD, Linux, ...
PHP version: 4.0.5
PHP Bug Type: Reproducible crash
Bug description: session_encode() crashes when there's data to encode
I'm testing some user session handling now, and have found a reproducible crash. The
following page causes a crash:
<?php
include('dummysessionhandlers.inc.php');
session_register('foo');
session_encode();
?>
While the following code does _not_ crash:
<?php
inlude('dummysessionhandlers.inc.php');
session_encode();
session_register('foo');
?>
Relevant info from php.ini:
session.save_handler = user
session.serialize_handler = php
session.use_cookies = 1
session.use_trans_sid = 1
The "dummysessionhandlers" are all functions that just return true.
--
Edit Bug report at: http://bugs.php.net/?id=11022&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]