PHP Classes

Bug

Recommend this page to a friend!

      My Session  >  All threads  >  Bug  >  (Un) Subscribe thread alerts  
Subject:Bug
Summary:Problem
Messages:2
Author:Jacob
Date:2011-07-27 15:34:35
Update:2011-07-27 15:35:37
 

  1. Bug   Reply   Report abuse  
Picture of Jacob Jacob - 2011-07-27 15:34:35
Fatal error: Unable to load session. in mySession.class.php on line 598

Line 598: trigger_error("Unable to load session.",E_USER_ERROR);

In function: readSessionId()

Around the lines:
if ($this->checkSessionId()) {
....

} else {
//bad bad bad think ... something goes wrong with the
//jam .. maybe uncle tom eated it before ..
$this->destroySession(FALSE);
trigger_error("Unable to load session.",E_USER_ERROR);
}

Called when there are now rows in sessions table. But what if we have a fresh installed web site? The first guest will see this error. Only after a refresh session id is being created.

  2. Re: Bug   Reply   Report abuse  
Picture of Jacob Jacob - 2011-07-27 15:35:37 - In reply to message 1 from Jacob
Called when there are no*..