EllisLab text mark
Advanced Search
     
Session Size
Posted: 04 September 2007 05:00 PM   [ Ignore ]
Joined: 2007-08-16
4 posts

Hi

Exists some form to modify the size of session of 4kb for 10kb for example in the CI?

 
Posted: 04 September 2007 07:10 PM   [ Ignore ]   [ # 1 ]   [ Rating: 0 ]
Avatar
Joined: 2007-02-06
743 posts

CI sessions store all data client-side in a cookie. IE will only allow 4kB per cookie and 20 (now 50) cookies per domain. If you need to store more information in the session you can use native sessions or one of the session libraries in the wiki. Native php sessions only store the session id on the client, and all the session data is stored in a file on the server.

 Signature 

“I am the terror that flaps in the night”

 
Posted: 05 September 2007 01:45 PM   [ Ignore ]   [ # 2 ]   [ Rating: 0 ]
Joined: 2007-08-16
4 posts

thanks =Pp