summaryrefslogtreecommitdiffstats
path: root/application/config
AgeCommit message (Collapse)AuthorFilesLines
2014-09-08Add svg to config/mimes.phpAndrey Andreev1-1/+2
Close #3199
2014-08-29add multipaste supportFlorian Pritz1-1/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-08-27Fix #2963Andrey Andreev2-1/+13
Changed all file permissions settings throught the framework and the documentation. Also added configuration settings for CI_Log and CI_Image_lib
2014-07-23Move migration code to CLI callable functionFlorian Pritz1-0/+1
This is necessary to prevent migrations from running multiple times in parallel. A git hook can be used to run this after checkout so impact should be fairly low. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-07-11Add setting ['composer_autoload']Andrey Andreev1-1/+21
Supersedes PR #3132
2014-06-04Seriously, remove the line endingsean1-1/+1
2014-06-03Another ppt mime typeSean Fahey1-1/+1
2014-06-03Added 'application/vnd.ms-office' MIME for pptSean Fahey1-2/+2
An export from Apple's Numbers to .ppt gives a MIME of application/vnd.ms-office
2014-05-31Initial version of new Session libraryAndrey Andreev1-1/+1
2014-05-08Added support to Symbian OS platforms to recognize Nokia devicesAdriano Rosa1-1/+2
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-12Add foreign keys to databaseFlorian Pritz1-1/+1
Changing the referrer value for the root admin from 0 to NULL to make the foreign key check work. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-04-12Make the error templates path configurablevlakoff1-0/+11
2014-03-02Clean up default config commentsFlorian Pritz2-21/+34
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-02-21Implement multiple access levels for api keysFlorian Pritz1-1/+1
This allows to use an api key to write a completly standalone client. Signed-off-by: Florian Pritz <bluewind@xinu.at>
2014-02-11"BASEPATH check" consistencydarwinel14-14/+29
As described in issue #2870 + A change in the „How to create a library” example in the user_guide
2014-02-112013 > 2014darwinel14-14/+14
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-02-11Fix a typo in the smileys config (PR #2853)Andrey Andreev1-1/+1
2014-01-20Merge branch 'develop' into feature/output_compressed_cacheAndrey Andreev1-1/+9
2014-01-20Polish changes from PR #2830Andrey Andreev1-9/+9
2014-01-19Fix whitespaces to tabs.Ahmedul Haque Abid1-1/+1
2014-01-19Added save_queries config setting in config/database.phpAhmedul Haque Abid1-0/+8
2014-01-18Merge branch 'develop' into feature/output_compressed_cacheAndrey Andreev1-0/+5
2014-01-17Add autoloading library aliasing support (supersedes PR #2824)Andrey Andreev1-0/+5
2014-01-15Merge changes from developAndrey Andreev2-3/+7
2014-01-15Merge pull request #2811 from dionysiosarvanitis/fix/ie11_user_agentAndrey Andreev1-0/+1
IE11 User Agent support added
2014-01-15Trident prefix added to avoid potential false positives.Dionysis Arvanitis1-1/+1
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-11IE11 User Agent support addedDionysis Arvanitis1-0/+1
2014-01-10Compress output before storing it to cache, if output compression is enabledAndrey Andreev1-0/+3
Based on PR #964
2014-01-08Remove preg_quote() call from CI_User_agent::_set_browser() and add another ↵Andrey Andreev1-0/+2
pattern for Opera Input comes from a configuration file that is barely touched by anyone and the default values only contain letters, so it is safe to not quote them. This enables us to add a more advanced pattern in config/user_agents.php for Opera 10+, which ... quote: Opera/9.80 is hard coded at the beginning of the user agent string because of broken browser sniffing scripts which detect 'Opera/10' and above as Opera 1. (reference: http://my.opera.com/community/openweb/idopera/) Instead, latests versions of Opera append ' Version/<version number>' to the end of the user agent string. Fixes issue #555 (incorrect browser detection for Opera)
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
2014-01-03[ci skip] Some spaces & docblock fixesAndrey Andreev1-1/+1
2013-12-06Update user_agents.phpAndre Gardiner1-1/+2
Added Win 8.1 user agent to the array
2013-11-27[ci skip] Remove 2 spacesAndrey Andreev1-1/+1
2013-11-11Polish changes from PR #2712Andrey Andreev1-1/+1
2013-11-08Update user_agents.phpvkeranov1-2/+3
Added Ubuntu Web Browser. More info here: http://www.omgubuntu.co.uk/2013/11/ubuntu-touch-browser-finally-given-unique-user-agent-string
2013-10-14Fix #2682Andrey Andreev2-2/+2
2013-10-14Merge pull request #2672 from stgeneral/patch-1Andrey Andreev1-2/+2
Exra bmp mimes
2013-10-08Update user_agents.phpJcchemin1-1/+2
Add detection for Opera 16
2013-10-04Exra bmp mimesDmitry Babenko1-2/+2
Mimies source http://filext.com/file-extension/BMP
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-23[ci skip] Remove some whitespacesAndrey Andreev1-3/+2
2013-09-22Use InnoDB for the files tablePierre Schmitz1-1/+1
The files table was MyISAM even though all other tables were InnoDB. We should avoid mixing types here (backups, transactions and performance). Signed-off-by: Pierre Schmitz <pierre@archlinux.de> Signed-off-by: Florian Pritz <bluewind@xinu.at>
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-21[ci skip] Remove an EOF empty lineAndrey Andreev1-1/+1
2013-09-20Update mimes.phpvkeranov1-1/+2
Added mime type for tar.Z archives
2013-09-14[ci skip] Remove empty line at application/config/config.php EOFAndrey Andreev1-1/+1