Welcome Guest, Not a member yet? Register   Sign In
Unable to locate the specified class: Session.php
#16

The session mechanism in 3.1 is not compatible with earlier versions:


PHP Code:
$newdata = array(
 
       'username'  => 'johndoe',
       'email'     => '[email protected]',
       'logged_in' => TRUE
); 

$this->session->set_userdata($newdata);

3.1 way is fine

the old way stopped working


PHP Code:
      $this->session->set_userdata("userID"$id);
      $this->session->set_userdata("login""true"); 

So I got my system backup again but can someone check my remarks and improve CI?

See attached new version of session.php.


John

Attached Files
.php   Session.php (Size: 21.46 KB / Downloads: 90)
Reply


Messages In This Thread
RE: Unable to locate the specified class: Session.php - by jophof007 - 09-21-2016, 10:54 PM



Theme © iAndrew 2016 - Forum software by © MyBB