diff options
Diffstat (limited to 'application/config')
-rwxr-xr-x | application/config/example/autoload.php | 2 | ||||
-rwxr-xr-x | application/config/example/database.php | 6 | ||||
-rwxr-xr-x | application/config/example/mimes.php | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/application/config/example/autoload.php b/application/config/example/autoload.php index e527bf5cc..a471f3ab2 100755 --- a/application/config/example/autoload.php +++ b/application/config/example/autoload.php @@ -37,7 +37,7 @@ | */ -$autoload['packages'] = array(APPPATH.'third_party'); +$autoload['packages'] = array(); /* diff --git a/application/config/example/database.php b/application/config/example/database.php index 32a4d7e11..ee6b76a06 100755 --- a/application/config/example/database.php +++ b/application/config/example/database.php @@ -26,6 +26,12 @@ | ['cachedir'] The path to the folder where cache files should be stored | ['char_set'] The character set used in communicating with the database | ['dbcollat'] The character collation used in communicating with the database +| NOTE: For MySQL and MySQLi databases, this setting is only used +| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7. +| There is an incompatibility in PHP with mysql_real_escape_string() which +| can make your site vulnerable to SQL injection if you are using a +| multi-byte character set and are running versions lower than these. +| Sites using Latin-1 or UTF-8 database character set and collation are unaffected. | ['swap_pre'] A default table prefix that should be swapped with the dbprefix | ['autoinit'] Whether or not to automatically initialize the database. | ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections diff --git a/application/config/example/mimes.php b/application/config/example/mimes.php index 8065794ff..82767d7c8 100755 --- a/application/config/example/mimes.php +++ b/application/config/example/mimes.php @@ -10,7 +10,7 @@ $mimes = array( 'hqx' => 'application/mac-binhex40', 'cpt' => 'application/mac-compactpro', - 'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'), + 'csv' => array('text/x-comma-separated-values', 'text/comma-separated-values', 'application/octet-stream', 'application/vnd.ms-excel', 'application/x-csv', 'text/x-csv', 'text/csv', 'application/csv', 'application/excel', 'application/vnd.msexcel'), 'bin' => 'application/macbinary', 'dms' => 'application/octet-stream', 'lha' => 'application/octet-stream', |