ID: 12952 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Session related Operating System: RedHat 6.2 PHP Version: 4.0.6 New Comment:
Note: The function sessionResume() simply checks if a session exists for the user and continues it if it does or starts a new one if it doesn't. Previous Comments: ------------------------------------------------------------------------ [2001-08-24 17:24:36] [EMAIL PROTECTED] Here's my configure line: './configure' '-with-apxs' '--enable-track-vars' '--disable-debug' '--enable-sysvshm' '-enable-sysvsem' '-enable-trans-sid' I have been running PHP 4.0.4pl1 with no problems for about 5 months and tried to move to PHP 4.0.6. The code below produced an undisplayable page in 4.0.6 but works fine in 4.0.4pl1: /////////////////////////////////////////////////////////// ob_start(); if (sessionResume() == false) { // some error handling code here include "error.fre"; return; } else { // some more logic here if($loginTo != '') // means would rather go to another page, probably from bookmark header("Location: " . $loginTo . "&PHPSESS=" . session_id()); else include "member-home.fre"; } ob_end_flush(); /////////////////////////////////////////////////////////// What happens when I run this code is IE gives me a "Page cannot be displayed" screen. I am positive this has something to do with 4.0.6 because I had 4.0.4pl1 installed, then upgraded to 4.0.6 and got the error, and then downgraded back to 4.0.4pl1 (where it worked properly again) without changing one line of code or anything in php.ini. Sorry I can't offer any suggestions, but let me know if I can help track this one down. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=12952&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]