summaryrefslogtreecommitdiffstats
path: root/application/config/config.php
AgeCommit message (Collapse)AuthorFilesLines
2022-01-05Polish changes from PR #5684 and drop ['log_file_extension']; ref #5648Andrey Andreev1-16/+2
2022-01-05Merge pull request #5684 from jonsmith1982/developAndrey Andreev1-0/+11
partially fixes #5648
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev1-2/+2
2022-01-05[ci skip] Another minor grammar correction following #5690Andrey Andreev1-2/+2
2022-01-05[ci skip] Merge pull request #5690 from Lohith94/developAndrey Andreev1-3/+3
Corrected some grammar
2022-01-05[ci skip] Merge pull request #5690 from Lohith94/developAndrey Andreev1-3/+3
Corrected some grammar
2022-01-05Merge branch '3.1-stable' into developAndrey Andreev1-0/+5
2022-01-05Add SameSite cookie support to Session libraryAndrey Andreev1-0/+5
2022-01-05Merge pull request #6025 from gxgpet/developAndrey Andreev1-0/+2
SameSite attribute implementation for CI_Input::set_cookie
2021-03-14Dropping the possibility that samesite cookie attribute won't be sent; ↵George Petculescu1-1/+1
defaults to Lax; all samesite values are ucfirst'ed; log for SameSite=None non-secure cookies
2021-02-28Initial implementation of samesite for CI_Input::set_cookieGeorge Petculescu1-0/+2
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-4/+6
Fix user guide url
2020-06-24Fix user guide urlsapics1-4/+4
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2019-02-08corrected grammarLohith J1-3/+3
2019-01-28fixes #5648jonsmith19821-0/+11
Signed-off-by: jonsmith1982 <jonsmith1982@googlemail.com>
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2017-02-07Allow to omit trailing slash in config pathsvlakoff1-3/+3
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev1-14/+0
2016-12-14Remove 'global_xss_filtering' config settingAndrey Andreev1-14/+0
2016-12-14Remove 'allow_get_array', 'standardize_newlines' config settingsAndrey Andreev1-28/+0
2016-12-14Merge branch '3.1-stable' into developAndrey Andreev1-6/+16
2016-12-14[ci skip] Deprecate 'allow_get_array', 'standardize_newlines'Andrey Andreev1-6/+16
2016-02-15[ci skip] Add notes in config about CLI for url_suffix, permitted_uri_charsAndrey Andreev1-0/+4
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-4/+4
2015-10-31Prevent Host header injectionsAndrey Andreev1-4/+10
2015-09-01[ci skip] Correct session database setup docsAndrey Andreev1-0/+3
2015-07-22Fix #3991Andrey Andreev1-0/+2
2015-07-15[ci skip] Add changelog entries for PR #3828Andrey Andreev1-2/+9
2015-07-04Standardized new linesCalvin Tam1-3/+0
2015-07-04Fixed typosCalvin Tam1-2/+2
2015-04-27[ci skip] Remove redundant comment about log_thresholdAndrey Andreev1-2/+0
2015-03-14[ci skip] Add a note about sess_save_path in config.phpAndrey Andreev1-0/+2
2015-03-01[ci skip] Fix a typo in config.phpAndrey Andreev1-1/+1
2015-02-28[ci skip] Formally deprecate 'global_xss_filtering'Andrey Andreev1-0/+3
2015-02-18Fix #3593Andrey Andreev1-7/+6
Revert "fixes" for #167, #388, #705 (also #1326) as it turns out URL-decoding isn't compliant with the CGI/1.1 specification. RFC 3875: http://www.faqs.org/rfcs/rfc3875.html
2015-02-07[ci skip] Fix a setting name in a commentAndrey Andreev1-1/+1
2015-02-07Add 'sess_regenerate_destroy' settingAndrey Andreev1-0/+7
2015-02-02[ci skip] Improve note about sess_save_path in config.phpAndrey Andreev1-2/+4
2015-01-26Remove license blocks in /application filesvlakoff1-36/+0
These blocks are annoying for the user and serve little to no purpose as the files are just config files, a boilerplate controller and some views.
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-4/+0
2015-01-21[ci skip] Fix incorrect wording in config.phpAndrey Andreev1-1/+1
Related: 9e82b0d00cbe83d6cdfa914628023cb98d70c933
2015-01-19[ci skip] Add missing word in a commentAndrey Andreev1-2/+2
2015-01-19feature/session (#3073): Update config file and session docsAndrey Andreev1-9/+15
Upgrade instructions are still pending.
2015-01-12Merge branch 'develop' into feature/sessionAndrey Andreev1-16/+14
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-3/+3
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-12-15Remove output minifierAndrey Andreev1-13/+0
This feature has proven to be problematic and it's not nearly as flexible as a dedicated minifier library like Minify (http://www.minifier.org/, https://github.com/matthiasmullie/minify). The same results in terms of saving traffic can also be achievied via gzip compression (which should also be done on the httpd level, but we also support anyway) and stuff like mod_pagespeed. Reverts PR #965 Related issues as a track record proving how problematic this has been: #2078 #1499 #2163 #2092 #2387 #2637 #2710 #2120 #2171 #2631 #2326 #2795 #2791 #2772 Additionally, the count of contributors suggesting that the only way to fix the minifier problems is to remove it, is around the same as the count of people suggesting the feature to be implemented in the first place. It was experimental anyway ... the experiment failed.
2014-12-04Add 'cache_query_string' configuration optionAndrey Andreev1-0/+11
Close #2349
2014-11-11Fix merge conflictsAndrey Andreev1-21/+34
2014-11-11Close #3322 [ci skip]Andrey Andreev1-4/+4
2014-11-10#3073 (feature/session): (Try to) fix memcached driverAndrey Andreev1-1/+1