Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The native codeigniter installation overrides the regular PHP session handling and uses their own system of handling the data which is the reason why you are unable to find it in the normal places. (also I would mention that I personally find the way it is implemented a little insecure since ALL of your session data is stored directly in the users browser session cookie.)</p> <p>You can do as Residuum has suggested and backtrack through the codeigniter session library and find where it is being stored, or you can override the session handling with something like OB_Session. (<a href="http://bleakview.orgfree.com/obsession/" rel="noreferrer">http://bleakview.orgfree.com/obsession/</a>)</p> <p>I would highly suggest that you install either OB_Session or something like it since it will then use the native PHP session handling and it will keep your cookies from either A) getting too large and crashing against the browser byte limit, or B) allowing sensitive user data to be stored client-side.</p> <p>Finally, depending on what you are trying to do I would follow the CI user guide instructions and store the session data in the database. (<a href="http://codeigniter.com/user_guide/libraries/sessions.html" rel="noreferrer">http://codeigniter.com/user_guide/libraries/sessions.html</a>) This would make it MUCH easier for you to work with the data and even update and extend what is stored by Codeigniter. Please keep in mind though that even if you store it in the database you STILL have to change to something like OB_Session since your cookie still holds all data even when changed to database.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload