summaryrefslogtreecommitdiffstats
path: root/application/config/config.php
AgeCommit message (Collapse)AuthorFilesLines
2015-02-22Add comment for actions_max_age in configFlorian Pritz1-0/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2015-02-22Fix upload_max_age commentFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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-05Add simple testsuiteFlorian Pritz1-1/+5
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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
2014-11-02Add tarball support to multipastesFlorian Pritz1-0/+7
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-10-29Make email sender configurableFlorian Pritz1-0/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-10-28Close #3292Andrey Andreev1-3/+5
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-14/+25
2014-10-06feature/session (#3073): Refactor configuration & fix cookie expiry timesAndrey Andreev1-25/+33
2014-08-27Fix #2963Andrey Andreev1-0/+12
Changed all file permissions settings throught the framework and the documentation. Also added configuration settings for CI_Log and CI_Image_lib
2014-07-11Add setting ['composer_autoload']Andrey Andreev1-1/+21
Supersedes PR #3132
2014-04-14Change 'standardize_newlines' default to FALSEAndrey Andreev1-1/+1
I don't see why it should be enabled by default. Also, this is the functionality triggering #2923
2014-04-14Replace "folder" with "directory" in config.phpvlakoff1-3/+3
2014-04-14Rename config item "error_templates_path" to "error_views_path"vlakoff1-2/+2
2014-04-12Make the error templates path configurablevlakoff1-0/+11
2014-03-02Clean up default config commentsFlorian Pritz1-19/+29
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-02-11"BASEPATH check" consistencydarwinel1-1/+2
As described in issue #2870 + A change in the „How to create a library” example in the user_guide
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-01-15Merge changes from developAndrey Andreev1-3/+6
2014-01-15CI_URI changes related to the 'permitted_uri_chars' settingAndrey Andreev1-3/+6
- Initialize and cache the value in the class constructor instead of searching for it every time - Removed the preg_quote() call from _filter_uri() to allow more fine-tuning from configuration - Renamed _filter_uri() to filter_uri() - it was public anyway and using it cannot break anything Related: issue #2799
2014-01-10Compress output before storing it to cache, if output compression is enabledAndrey Andreev1-0/+3
Based on PR #964
2014-01-08Make newline standardization configurableAndrey Andreev1-0/+14
Added ['standardize_newlines'] Also altered the Session cookie driver, which experienced issues with this feature due to it's HMAC verification failing after the Input class alters newlines in non-encrypted session cookies. Supersedes PR #2470
2013-09-23Implement rangeDownload() as driver and provide sendfile implementations for ↵Pierre Schmitz1-0/+16
Nginx and Lighttpd * The rangeDownload() function has been moved to libraries/Ddownload/drivers/Ddownload_php.php * The nginx and lighttpd drivers can be set via $config['download_driver'] Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
2013-09-22Add FluxBB authentication driverPierre Schmitz1-0/+5
To enable set: $config['authentication_driver'] = 'fluxbb'; $config['auth_fluxbb'] = array('database' => 'fluxbb'); Signed-off-by: Pierre Schmitz <pierre@archlinux.de> Add example array to config.php Remove $optional_functions from Duser_fluxbb to follow bb9f9274e8c2d661a1adffd87c87c3d81ec47b4d. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-14[ci skip] Remove empty line at application/config/config.php EOFAndrey Andreev1-1/+1
2013-09-14Updated config to include list of valid characters to `sess_cookie_name`brenjt1-2/+2
Added list of valid characters to sess_cookie_name
2013-09-04Add support for enabling the profilerFlorian Pritz1-0/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-09-02Add CSRF protectionFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-08-15Switch to CI's caching classFlorian Pritz1-0/+7
This supports more caching backends and doesn't force users to install the memcache extension. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-07-15Add footer; move contact info to footerFlorian Pritz1-2/+0
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-04-18Add LDAP authentification driverFlorian Pritz1-0/+18
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-02-15Fix some stuff from recent pull requestsAndrey Andreev1-2/+5
2013-02-13Added support for changing the default log file extension from .php to ↵Chris Passas1-0/+11
whatever is preferred. example (.log) This is a follow up to this pull request. https://github.com/EllisLab/CodeIgniter/pull/2243
2013-01-30Make authentication driver configureableFlorian Pritz1-0/+3
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-01-24Repurpose invitations table to actionsFlorian Pritz1-1/+1
This can be used to track data for all kinds of one-time actions like invitations and password resets. Signed-off-by: Florian Pritz <bluewind@xinu.at>