docs: Notes about switching types in session#9508
Merged
paulbalandan merged 3 commits intocodeigniter4:developfrom Apr 12, 2025
Merged
docs: Notes about switching types in session#9508paulbalandan merged 3 commits intocodeigniter4:developfrom
paulbalandan merged 3 commits intocodeigniter4:developfrom
Conversation
Contributor
Author
michalsn
reviewed
Apr 8, 2025
Member
michalsn
left a comment
There was a problem hiding this comment.
I would add another note about clearing expired sessions. But I don't fully know how to do it.
Probably something like this:
0 2 * * * find /path/to/your/project/writable/session -type f -name 'ci_session*' -mmin +1440 -delete
It will delete stale sessions that haven’t been used for more than 24 hours.
- The session path should be set to:
Config\Session::$savePath. - The session name should be set to:
Config\Session::$cookieName - The user running the cron job should have permission to access and delete those session files.
michalsn
reviewed
Apr 8, 2025
3f84112 to
ad8ba45
Compare
ad8ba45 to
e4bff61
Compare
paulbalandan
approved these changes
Apr 11, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Description
See #9505 (comment)
Checklist: