I’ve had an issue that I thought was tinyMCE, then my db, now I think it’s my session var size. I have a php app connected to a mysql db. There is a field that has 2900+ chars in it. When I load the page, the area that should display this text is either completely missing or once I remove a large chunk of the text from the db I can see the reduced text. While debugging, I saw the var that is holding the intro text [session->userdata->ACCOUNT_INTRO_TEXT] saids 1024 (2963) for length. So the session var length/size is 1024, but 2963 are being sent, so var is truncating. How to I increase the size of this session var?
Share
To help those who come behind this:
FINALLY! FINALLY discovered what was wrong – there is a size limitation for the amount of data stored in the session object. And as per RFC 2109 this size limit is 4KB. THat was it. I knew I was hitting some limit somewhere, finally figured it out where it was. Had to re-write some code so I could pull only these text section and not rely on the data stored in the session.