Thanks, yeah I have found that thread before. Their problem seems to be with new sessions being created for each request, mine keeps the session (I am using the database driver if that matters at all) but the cookie value in the browser changes.
I am not sure if this is even a problem, everything works as intended as far as I can tell. Also it is worth noting that looking at the session cookie for laracasts.com it also changes with each request...
@Snapey sure thing, but when you store something in session it will be stored in the database and only the session ID will be stored in cookies. I don't think this will be affected, don't you agree?
@Hussam3bd I agree, yes, Sorry, the size of the session is a problem for cookie based session storage.
However, the TEXT field in the sessions table should be more than adequate. If you are having problems with the size of this column (64MB) then you are saving way too much data in session.