summaryrefslogtreecommitdiffstats
path: root/application/config/config.php
AgeCommit message (Collapse)AuthorFilesLines
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>
2013-01-24Move db_select() call from CI_DB_driver::initialize() to db_connect()Andrey Andreev1-1/+1
so that it's only called by drivers that need it ('mysql', 'mssql'). As proposed in issue #2187.
2013-01-23Update application/config/config.phpOsamaAbbas1-2/+2
2013-01-09Fix some indentation issuesFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-10-31Changed URI auto-detection to try PATH_INFO firstAndrey Andreev1-2/+1
(thanks to @sourcejedi, PR #1326) Up until PHP 5.2.4 (which is our new lowest requirement), there was a bug related to PATH_INFO which made REQUEST_URI a more reliable choice. This is now no longer the case, see https://bugs.php.net/bug.php?id=31892 for more details. Also removed ORIG_PATH_INFO from the suggested alternatives for uri_protocol in application/config/config.php as it will not exist in most of PHP's recent versions and is pointless when you can use PATH_INFO anyway.
2012-10-31Multiple improvements to the URI classAndrey Andreev1-5/+6
(thanks to @sourcejedi, PR #1326 for most of the ideas) - Renamed _detect_uri() and _parse_cli_args() to _parse_request_uri() and _parse_argv() respectively. - Added _parse_query_string() which allows us to detect the URI path from QUERY_STRING much like it is done in _parse_request_uri(). (the above changes also allow for a simpler logic in the case where the *uri_protocol* setting is not set to 'AUTO') - Updated application/config/config.php with a better list of the *uri_protocol* options. - Added _reset_query_string() to aid in re-processing from the QUERY_STRING (utilized in _parse_request_uri() and _parse_query_string()).
2012-10-06Add IPv6 and array() support for *proxy_ips* configurationAndrey Andreev1-6/+10
2012-08-30Added session driver config itemsdchill421-0/+5
Signed-off-by: dchill42 <dchill42@gmail.com>
2012-08-28Move most config files back to app/config/Florian Pritz1-0/+390
Apart from database.php, config.php and memcache.php the files shouldn't be different so we can just track them in the repo. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2012-07-03replaced double quotes with single in $config['cookie_... string valuesDumk01-3/+3
2012-06-15Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-7/+7
2012-06-15Merge branch 'feature/minify_output' of ↵Phil Sturgeon1-0/+13
https://github.com/atiredmachine/CodeIgniter into develop
2012-06-14Polish changes from pull #1233 - Session class already has the ↵Andrey Andreev1-3/+3
time_reference setting - 'GMT' is a valid timezone, so nothing needs to be changed in order to work properly (upgrade notes) - Altered some description text
2012-06-13Fixed some stuff in documentation.Iban Eguia1-3/+4
2012-06-12Changed the config parameter. The session's _get_time() function has also ↵Iban Eguia1-2/+2
changed.
2012-06-10Changed the default timezone to local and explained in the config file.Iban Eguia1-2/+3
2012-03-27Fixed typo.Iban Eguia1-1/+1
2012-03-27Changed Date helper to return time() based on the timezone parameter.Iban Eguia1-9/+7
2012-03-26Clear some spaces and fix some inconsistencies in application/ php filesAndrey Andreev1-3/+3
2012-03-18add support for httponly cookiesfreewil1-0/+2
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-01-25Rudimentary minifying of output.Thor (atiredmachine)1-0/+13
2012-01-08Merge pull request #850 from RS71/developPhil Sturgeon1-0/+2
CSRF optional token regeneration
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-31Update application/config/config.phpRS711-0/+2