summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/libraries/sessions.rst
AgeCommit message (Collapse)AuthorFilesLines
2017-11-20[ci skip] More docs updates following #5330Andrey Andreev1-2/+2
2017-01-17[ci skip] Merge pull request #4986 from ka7/feature/spellingAndrey Andreev1-1/+1
Spelling fixes in comment blocks and docs
2016-10-22Close #4830, #3649Andrey Andreev1-2/+2
2016-07-21Merge pull request #4716 from Ema4rl/patch-1Andrey Andreev1-2/+2
[ci skip] Fix Session userguide typos
2015-09-01[ci skip] Correct session database setup docsAndrey Andreev1-7/+12
2015-03-25Fixed user guide internal & external links to resolve problems reported by ↵Master Yoda1-1/+1
sphinx "make linkcheck" Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-21[ci skip] Forbid DB session usage with cache_on enabledAndrey Andreev1-1/+2
2015-03-19[ci skip] Fix a typo in session docsAndrey Andreev1-2/+2
2015-03-07Merge branch 'develop' of https://github.com/bcit-ci/CodeIgniter into ↵Master Yoda1-4/+2
fix/housekeeping
2015-03-07Housekeeping.Master Yoda1-1/+1
Corrected typo in user guide for sessions, corrected misepelled key in calendar language file, added two links & updated wording on the repo readme. Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-03-04Fix #3627: Keep timed locks for more than 5 secondsAndrey Andreev1-4/+2
Emulated locks for Redis and Memcached now have a TTL of 300 seconds (the default HTTP request timeout value on many environments) and 30 attemps, each separated by sleep(1), are made by the blocked request to try and obtain a lock if it has been freed. Additionaly, the blocking time for MySQL's locks, which are also timed, is also set to 300 seconds.
2015-02-18Fix #3603Andrey Andreev1-1/+1
2015-02-14[ci skip] Add notes about session locks for Redis, MemcachedAndrey Andreev1-0/+10
2015-02-07Add 'sess_regenerate_destroy' settingAndrey Andreev1-14/+16
2015-02-04[ci skip] Update session docsAndrey Andreev1-1/+34
2015-02-03[ci skip] Suggest 0700 instead of 0600 for session save_path dirAndrey Andreev1-2/+2
Related #3545
2015-02-02[ci skip] Fix #3515Andrey Andreev1-22/+22
2015-02-02[ci skip] Document CI_Session::unset_userdata() BC breakAndrey Andreev1-2/+6
2015-01-26[ci skip] Another adjustment to ci_sessions exampleAndrey Andreev1-1/+1
2015-01-26Session writeup error?Master Yoda1-1/+1
Signed-off-by:Master Yoda <jim_parry@bcit.ca>
2015-01-20[ci skip] Fix docs about ci_sessions tableAndrey Andreev1-4/+4
Close #3486
2015-01-20Fix Sphinx compilation errorsvlakoff1-3/+3
2015-01-19[ci skip] Some polishing to the latest doc changesAndrey Andreev1-1/+1
2015-01-19[ci skip] Manually apply PR #3461Andrey Andreev1-2/+2
I would've merged it earlier, but that would cause conflicts when feature/session is merged.
2015-01-19[ci skip] feature/session: Update session lib doc titleAndrey Andreev1-3/+3
It's not a driver itself ...
2015-01-19[ci skip] feature/session (#3073): Extend a note about DB drivers and lockingAndrey Andreev1-4/+6
2015-01-19feature/session (#3073): Update config file and session docsAndrey Andreev1-422/+727
Upgrade instructions are still pending.
2014-02-08[ci skip] Add return types to library docsAndrey Andreev1-32/+41
2014-01-24[ci skip] Update Session library docsAndrey Andreev1-41/+53
2014-01-24Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-2/+2
2014-01-24Righting a wrong in the Session libraryAndrey Andreev1-2/+2
- Change userdata(), flashdata(), tempdata() to return all the respective data when no parameter is passed. - Revert the addition of all_flashdata(). - Deprecate all_userdata(). - Fix related changelog entries that were all inconsistent.
2014-01-20[ci skip] Add 'Using the X class' headings to Session & Language lib docsAndrey Andreev1-0/+4
Fixes 2 doc compile warnings
2014-01-20Merge branch 'develop' into feature/user-guide-cleanupAndrey Andreev1-3/+4
2014-01-11cleanup warningsConnor Tumbleson1-2/+1
Signed-off-by: Connor Tumbleson <connor.tumbleson@gmail.com>
2014-01-07[ci skip] Add a PostgreSQL CREATE TABLE sample to the Session docsAndrey Andreev1-3/+16
From PR #2758
2014-01-06[ci skip] Update the Session library docsAndrey Andreev1-27/+33
2014-01-03[ci skip] Some more generic user guide cleanupAndrey Andreev1-1/+8
2014-01-03[ci skip] Add/remove some newlines from the session docsAndrey Andreev1-2/+3
2013-10-29Update sess_time_to_update description (rel #2397)Andrey Andreev1-2/+3
2013-10-20refactored the class reference in session.rst to properly reflect the ↵Michael1-84/+61
session class Signed-off-by: Michael <michael@webstart.bg>
2013-10-06Added class reference to the session docsMichael1-4/+189
Signed-off-by: Michael <michael@webstart.bg>
2013-09-30Update the Session library docsMichael1-31/+34
Signed-off-by: Michael <michael@webstart.bg>
2012-11-25Merge pull request #2026 from johnathancroom/keep_flash_data_arrayAndrey Andreev1-1/+3
keep_flashdata accepts array
2012-11-25Added support for extending individual driver classes and driver unit testsdchill421-5/+0
Signed-off-by: dchill42 <dchill42@gmail.com>
2012-11-24keep_flashdata accepts arrayJohnathan Croom1-1/+3
2012-11-01Session cookie driver changesAndrey Andreev1-1/+1
- Changed docs CREATE TABLE ci_sessions example to have the PRIMARY KEY of session_id, ip_address and user_agent combined. - Changed DB updates to add WHERE clauses for the ip_address and/or user_agent strings if sess_match_ip and/or sess_match_useragent are set to TRUE.
2012-08-13Minor doc fixesdchill421-4/+4
2012-08-12Updated Loader and Session documentationdchill421-80/+258
2012-06-10Merge branch 2.1-stable into developAndrey Andreev1-1/+1
2012-02-24updated changelog and user guide.Mike Funk1-0/+4