CodeIgniter Forums
Session Problem - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Session Problem (/showthread.php?tid=33706)



Session Problem - El Forum - 09-05-2010

[eluser]Suhas nazir[/eluser]
Is it Possible to Change the space available to Store Session Variables.


Session Problem - El Forum - 09-05-2010

[eluser]InsiteFX[/eluser]
Only if your using the CodeIgniter Database Sessions.
Cookie sessions only hold 4kb of data.

You can change the user_data from text to either mediumtext or longtext.

InsiteFX


Session Problem - El Forum - 09-06-2010

[eluser]Suhas nazir[/eluser]
if it holds currently 4 kb of data,... is session allows to hold some other data too.?if we try for that what will happends ..?


Session Problem - El Forum - 09-06-2010

[eluser]InsiteFX[/eluser]
If you use the CodeIgniter Database sessions you do not
need to worry about the cookie.

This is why everyone uses database sessions. Cookies are
limited!

InsiteFX