Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-12-01 | Removed `$_SERVER['REMOTE_ADDR']` following feedback | Jack Webb-Heller | 1 | -1/+1 | |
2011-12-01 | CodeIgniter ignores the set config value for Maximum Execution Time, ↵ | Jack Webb-Heller | 1 | -2/+6 | |
overwriting it with its own value of 300 seconds. Whilst this is sensible in the vast majority of situations (browsers), when running a script from CLI, it is likely that execution times may need to be longer. Therefore, don't override the time limit if being run from the CLI - instead default back to PHP's own configuration. | |||||
2011-11-29 | The DB_driver can now use failover databases if specified | Felix Balfoort | 1 | -5/+32 | |
The DB_driver can now use failover databases if specified. If the main connection shouldn't connect for some reason the DB_driver will now try to connect to specified connections in the failover config. Example config: $db['default']['hostname'] = 'localhost'; $db['default']['username'] = ''; $db['default']['password'] = ''; $db['default']['database'] = ''; $db['default']['dbdriver'] = 'mysql'; $db['default']['dbprefix'] = ''; $db['default']['pconnect'] = TRUE; $db['default']['db_debug'] = TRUE; $db['default']['cache_on'] = FALSE; $db['default']['cachedir'] = ''; $db['default']['char_set'] = 'utf8'; $db['default']['dbcollat'] = 'utf8_general_ci'; $db['default']['swap_pre'] = ''; $db['default']['autoinit'] = TRUE; $db['default']['stricton'] = FALSE; $db['default']['failover'] = array(); $db['default']['failover'][0]['hostname'] = 'localhost1'; $db['default']['failover'][0]['username'] = ''; $db['default']['failover'][0]['password'] = ''; $db['default']['failover'][0]['database'] = ''; $db['default']['failover'][0]['dbdriver'] = 'mysql'; $db['default']['failover'][0]['dbprefix'] = ''; $db['default']['failover'][0]['pconnect'] = TRUE; $db['default']['failover'][0]['db_debug'] = TRUE; $db['default']['failover'][0]['cache_on'] = FALSE; $db['default']['failover'][0]['cachedir'] = ''; $db['default']['failover'][0]['char_set'] = 'utf8'; $db['default']['failover'][0]['dbcollat'] = 'utf8_general_ci'; $db['default']['failover'][0]['swap_pre'] = ''; $db['default']['failover'][0]['autoinit'] = TRUE; $db['default']['failover'][0]['stricton'] = FALSE; $db['default']['failover'][0]['failover'] = array(); $db['default']['failover'][1]['hostname'] = 'localhost2'; $db['default']['failover'][1]['username'] = ''; $db['default']['failover'][1]['password'] = ''; $db['default']['failover'][1]['database'] = ''; $db['default']['failover'][1]['dbdriver'] = 'mysql'; $db['default']['failover'][1]['dbprefix'] = ''; $db['default']['failover'][1]['pconnect'] = TRUE; $db['default']['failover'][1]['db_debug'] = TRUE; $db['default']['failover'][1]['cache_on'] = FALSE; $db['default']['failover'][1]['cachedir'] = ''; $db['default']['failover'][1]['char_set'] = 'utf8'; $db['default']['failover'][1]['dbcollat'] = 'utf8_general_ci'; $db['default']['failover'][1]['swap_pre'] = ''; $db['default']['failover'][1]['autoinit'] = TRUE; $db['default']['failover'][1]['stricton'] = FALSE; $db['default']['failover'][1]['failover'] = array(); Signed-off-by: Felix Balfoort <fhjbalfoort@gmail.com> | |||||
2011-11-28 | Fixed sytax error in pdo driver | Timothy Warren | 1 | -4/+0 | |
2011-11-27 | Merge branch 'patch-1' of https://github.com/has2k1/CodeIgniter into ↵ | Eric Barnes | 1 | -1/+1 | |
has2k1-patch-1 Conflicts: user_guide_src/source/changelog.rst | |||||
2011-11-23 | Switch disposition set to ternary operation | trit | 1 | -6/+1 | |
2011-11-23 | More style tweaks | trit | 1 | -0/+3 | |
2011-11-23 | Changed attachment definition to allow for blank disposition defaulting to ↵ | trit | 1 | -2/+4 | |
attachment - should make things easier for the user who uses a custom name | |||||
2011-11-23 | Added a couple of style tweaks and a note about function change in changelog | trit | 1 | -7/+2 | |
2011-11-23 | Added space after CI_Email for coding standard | trit | 1 | -1/+1 | |
2011-11-23 | Switched order of arguments to maintain compatibility | trit | 1 | -1/+1 | |
2011-11-23 | Changed the names around again | trit | 1 | -2/+2 | |
2011-11-23 | Changed filepath back to filename | trit | 1 | -7/+7 | |
2011-11-23 | Fixed variable name causing problem | trit | 1 | -1/+1 | |
2011-11-23 | Added custom file name to attach(), updated _build_message to handle it | trit | 1 | -10/+16 | |
2011-11-23 | Merge pull request #691 from jerkob/develop | Phil Sturgeon | 1 | -0/+5 | |
Updated trans_start() and trans_complete() so _trans_depth increments. | |||||
2011-11-22 | Updated trans_start() and trans_complete() so that _trans_depth increments ↵ | Jacob Terry | 1 | -0/+5 | |
correctly Fix for issue #159 and #163. | |||||
2011-11-22 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 1 | -0/+1 | |
2011-11-22 | Merge master (2.1.0) and fixed conflicts. | Phil Sturgeon | 8 | -43/+56 | |
2011-11-22 | Readded PDO drivers. | Phil Sturgeon | 5 | -15/+565 | |
2011-11-21 | Added HTTP status code 422 (Unprocessable Entity) to set_status_header() | Chris Rosser | 1 | -0/+1 | |
2011-11-17 | auto_link() learned to recognize more URLs | has2k1 | 1 | -1/+1 | |
Problem: auto_link() only works on URLs that are preceded by a new line, space, or open parentheses. As a result the URL in the string below would be missed. 'Google<br />http://www.google.com/' Solution: Add a word boundary to the list of features that can precede a URL. Credit to: @scaryuncledevin, issue #419 | |||||
2011-11-16 | Migrations - Changed config migration_version to state it is used in ↵ | Eric Barnes | 1 | -17/+17 | |
migration->current. Removed white space and coding standards. | |||||
2011-11-14 | Tweaking the xss filter for IE <comment> tags, parameter injection, and ↵ | Pascal Kriete | 1 | -50/+41 | |
weird html5 attributes. | |||||
2011-11-14 | Removing stray docblocks | Pascal Kriete | 1 | -12/+0 | |
2011-11-13 | Added TLS and SSL support to Email library. Fixes issue #171 | Radu Potop | 1 | -1/+19 | |
2011-11-13 | Resolved issue 65 - made action on form_open_multipart helper function call ↵ | Ben Edmunds | 1 | -1/+1 | |
optional | |||||
2011-11-13 | Fix invalid datetime format | Syahril Zulkefli | 1 | -3/+3 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-13 | Fix invalid datetime format | Syahril Zulkefli | 1 | -3/+3 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-13 | Fix invalid date format | Syahril Zulkefli | 1 | -1/+1 | |
2011-11-12 | Fixed small typeo | Cloudmanic Labs, LLC | 1 | -1/+1 | |
2011-11-08 | Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop | Phil Sturgeon | 2 | -6/+12 | |
2011-11-08 | Added ->db->replace() for MySQLi. | Phil Sturgeon | 1 | -0/+19 | |
2011-11-08 | Added ->db->replace() for MySQLi. | Phil Sturgeon | 1 | -0/+19 | |
2011-11-08 | Enables real page numbers for URI segment in Pagination library | Aaron Kuzemchak | 1 | -12/+73 | |
2011-11-07 | Adding auto-detection of best redirect method in url_helper. | Brandon Jones | 1 | -1/+7 | |
2011-11-02 | Fix #8 - Load core classes from the application folder first. | Shane Pearson | 1 | -3/+3 | |
2011-10-31 | Merge pull request #624 from talkingwithsean/develop | Derek Jones | 1 | -5/+5 | |
Crypt isn't set and it causes extensive script time when specifying a cus | |||||
2011-10-31 | Misc formatting fixes | Timothy Warren | 1 | -7/+8 | |
2011-10-31 | Set charset in DSN if PHP >= 5.3.6 | Timothy Warren | 1 | -1/+7 | |
2011-10-31 | Changed mysql charset to PDO option | Timothy Warren | 1 | -4/+7 | |
2011-10-28 | add html_escape() function to escape HTML. | kenjis | 1 | -0/+24 | |
2011-10-27 | Added the 'user_data' key to the userdata property so that sessions using a ↵ | Kyle Farris | 1 | -1/+2 | |
database can be deleted properly when using the table schema found in the "Saving Session Data to a Database" section of the Session Class in the user guide. | |||||
2011-10-27 | Fixed issue #150 correctly. | Phil Sturgeon | 2 | -6/+6 | |
2011-10-27 | Fixed issue #150 (for mysql and mysqli), now returns the actual column length. | danmontgomery | 4 | -15/+25 | |
2011-10-27 | Fixed a bug (#200) where MySQL queries would be malformed after calling ↵ | Greg Aker | 9 | -0/+9 | |
db->count_all() then db->get() | |||||
2011-10-27 | Fixed LIKE statement escaping issues | Timothy Warren | 1 | -12/+13 | |