Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-09-09 | Merge tag '3.1.5' into dev-ci3 | Florian Pritz | 15 | -497/+969 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2017-07-10 | Use bigint for filesize in database | hashworks | 1 | -1/+1 | |
The current type, integer, only stores numerics up to 2147483647. Since filebin stores the size in byte MySQL will only write up to 2GB in there, PostgreSQL failes by default for files >2GB. The new type bigint allows file sizes up to ~9223 petabyte. | |||||
2017-01-31 | config: Add exmple for database port setting | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-12-14 | [ci skip] Deprecate 'allow_get_array', 'standardize_newlines' | Andrey Andreev | 1 | -6/+16 | |
2016-11-01 | Add multipaste queue | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-09-19 | Move file controller into subdir | Florian Pritz | 1 | -3/+3 | |
This allows to more easily split the controller into smaller parts in the future. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-08-30 | Merge pull request #4788 from edtsz/patch-2 | Andrey Andreev | 1 | -1/+17 | |
Add OpenOffice mime-types to config/mimes.php | |||||
2016-08-20 | Migration 18: Allow user info to be nulled | Florian Pritz | 1 | -1/+1 | |
This allows us to safely delete users without breaking referrer information. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-07-30 | Fix dbprefix in database example config | Florian Pritz | 1 | -1/+1 | |
Mysql doesn't like unquoted dashes, but tablenames aren't quoted everywhere so that queries don't need to be duplicated for postgres. Underscores don't cause problems so use these. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-06-05 | config: Clarify comment about password hashing settings | Florian Pritz | 1 | -1/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-05-26 | Merge pull request #4648 from el-ma/develop | Andrey Andreev | 1 | -1/+3 | |
[ci skip] Add two more robots to config/user_agents.php | |||||
2016-05-25 | Merge pull request #4646 from el-ma/develop | Andrey Andreev | 1 | -1/+2 | |
[ci skip] Add "Alexa Crawler" to robots | |||||
2016-04-01 | Fix typo | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-04-01 | Support changing password hashing settings | Florian Pritz | 1 | -0/+9 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-03-29 | Increase size of password field in DB | Florian Pritz | 1 | -1/+1 | |
The php documentation for password_hash recommends 255. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2016-02-15 | [ci skip] Polish changes from PR #4453 | Andrey Andreev | 1 | -2/+3 | |
2016-02-15 | Merge pull request #4453 from EpicKris/feature/Autoload-Driver-Object-Name | Andrey Andreev | 1 | -0/+5 | |
Autoload Driver Object Names | |||||
2016-01-13 | Merge pull request #4378 from jtneal/patch-1 | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Fix a defined() typo in config/constants.php | |||||
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 6 | -9/+9 | |
2016-01-11 | Merge pull request #4371 from feryardiant/contrib/mime-ogg | Andrey Andreev | 1 | -1/+1 | |
[ci skip] Add extra mime for .ogg files | |||||
2016-01-11 | Merge pull request #4241 from suhindra/develop | Andrey Andreev | 1 | -1/+2 | |
[ci skip] Added/updated MIME types for Flash Video | |||||
2015-11-06 | Merge pull request #4218 from schwemmer/develop | Andrey Andreev | 1 | -0/+8 | |
[ci skip] Added MIME types for JPEG2000 | |||||
2015-10-31 | Prevent Host header injections | Andrey Andreev | 1 | -4/+10 | |
2015-09-20 | Migration 16: Increase length of ci_session.ip_address for IPv6 | Florian Pritz | 1 | -1/+1 | |
Reported-by: Michael Mueller <michael.mueller@selfnet.de> Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-09-01 | [ci skip] Correct session database setup docs | Andrey Andreev | 1 | -0/+3 | |
2015-08-13 | Update config/constants.php with defined() checks | Andrey Andreev | 1 | -34/+34 | |
Allows for easier override with an environment-based configs. Close #4045 | |||||
2015-07-22 | Fix #3991 | Andrey Andreev | 1 | -0/+2 | |
2015-07-16 | Add 'ssl_verify' option for mysqli driver | Andrey Andreev | 1 | -0/+1 | |
MYSQLI_OPT_SSL_VERIFY_SERVER_CERT is an undocumented option that may not always be available. Reference: http://svn.php.net/viewvc/php/php-src/trunk/ext/mysqli/tests/mysqli_constants.phpt?view=markup&pathrev=302897 | |||||
2015-07-16 | Add SSL support for PDO_MYSQL too | Andrey Andreev | 1 | -1/+1 | |
Related: #3896 | |||||
2015-07-16 | [ci skip] Add note about colon-separated ssl_cipher list | Andrey Andreev | 1 | -1/+1 | |
2015-07-16 | Refactor proposed changes from PR #3896 | Andrey Andreev | 1 | -1/+10 | |
2015-07-16 | Merge branch 'feature/mysqli-ssl' of github.com:ndigitals/CodeIgniter into ↵ | Andrey Andreev | 1 | -0/+2 | |
feature/mysqli_ssl | |||||
2015-07-15 | [ci skip] Add changelog entries for PR #3828 | Andrey Andreev | 1 | -2/+9 | |
2015-07-13 | [ci skip] Update 'ico' entry in config/mimes.php | Andrey Andreev | 1 | -1/+1 | |
2015-07-10 | [ci skip] Clarify comments about libraries/drivers autoloading | Andrey Andreev | 1 | -4/+6 | |
Close #3964 | |||||
2015-07-06 | [ci skip] Update config/migration.php comments | Andrey Andreev | 1 | -3/+3 | |
Close #3951 | |||||
2015-07-04 | Standardized new lines | Calvin Tam | 7 | -21/+0 | |
2015-07-04 | Fixed typos | Calvin Tam | 1 | -2/+2 | |
2015-06-26 | Fix ask jeeves user-agent | rochefort | 1 | -1/+1 | |
2015-06-22 | Added .ico mime type | Éderson | 1 | -1/+2 | |
Just added ico to mime list | |||||
2015-06-18 | Fixed a cleanup miss in the default database config file to follow the ↵ | Tim Nolte | 1 | -6/+1 | |
recent SSL feature changes. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com> | |||||
2015-06-18 | Removed db_options configuration item for implementation later. Changed 5 ↵ | Tim Nolte | 1 | -6/+1 | |
new MySQLi SSL configuration options to a single ssl_options config item that is an array that will be read to set the individual SSL options. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com> | |||||
2015-06-08 | Merge branch 'develop' into feature/mysqli-ssl | Tim Nolte | 5 | -5/+7 | |
2015-06-08 | Added new MySQLi parameters/info to default database config file. Fixed ↵ | Tim Nolte | 1 | -0/+12 | |
missing new MySQLi parameters from database configuration documentation examples. Signed-off-by: Tim Nolte <noltet@sekisui-spi.com> | |||||
2015-06-05 | Move public files to ./public_html | Florian Pritz | 1 | -2/+2 | |
./data/local is not moved because it contains likely untracked files and moving it would throw an error when updating. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-27 | [ci skip] Default 'db_debug' value to depend on ENVIRONMENT setting | Andrey Andreev | 1 | -1/+1 | |
Related: #3884 | |||||
2015-05-22 | Remove unneeded duplicates in file_storage | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-21 | tests: Rework database handling | Florian Pritz | 1 | -0/+7 | |
We no longer interfere with the normal installation's database settings. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-21 | Support multiple files with the same hash | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-17 | Added subtitles mime types. | Ahmad Anbar | 1 | -1/+3 | |