diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-28 16:52:49 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-28 16:53:54 +0100 |
commit | 5280c3c24ec581d859babd80cf60eb83efa7d149 (patch) | |
tree | 3f3c655e54afef45497211f8ffdf2bd49a145170 | |
parent | 6924e40a4841eeb87d4c38294cfbe452bb6368cb (diff) |
Turn "pconnect" off by default.
Some users were complaining this was effecting their performance and having it on by default can potentially cause issues with people who don't understand what it does. Having it off by default means people are only effected if they want to be, which is safer.
-rw-r--r-- | application/config/database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/database.php b/application/config/database.php index 880773d80..19254cde2 100644 --- a/application/config/database.php +++ b/application/config/database.php @@ -80,7 +80,7 @@ $db['default']['password'] = ''; $db['default']['database'] = ''; $db['default']['dbdriver'] = 'mysql'; $db['default']['dbprefix'] = ''; -$db['default']['pconnect'] = TRUE; +$db['default']['pconnect'] = FALSE; $db['default']['db_debug'] = TRUE; $db['default']['cache_on'] = FALSE; $db['default']['cachedir'] = ''; |