Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork5.3k
Closed
Description
If the session data doesn't fit in the data column, it might get truncated by the RDMS (at least mysql). So the data gets corrupted and also PHP session system ignores the data without giving a warning.
So the docs should add a note for this case that people can
- increase the column size (e.g. BLOB to MEDIUMBLOB) if they have huge session data
- enableSTRICT SQL MODE in mysql so that such an error would be noticed
Based onsymfony/symfony#14647