Change db config for laragon
This commit is contained in:
parent
239314da5c
commit
f2d70afffe
@ -12,31 +12,31 @@
|
|||||||
| EXPLANATION OF VARIABLES
|
| EXPLANATION OF VARIABLES
|
||||||
| -------------------------------------------------------------------
|
| -------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| ['hostname'] The hostname of your database server.
|
| ['hostname'] The hostname of your database server.
|
||||||
| ['username'] The username used to connect to the database
|
| ['username'] The username used to connect to the database
|
||||||
| ['password'] The password used to connect to the database
|
| ['password'] The password used to connect to the database
|
||||||
| ['database'] The name of the database you want to connect to
|
| ['database'] The name of the database you want to connect to
|
||||||
| ['dbdriver'] The database type. ie: mysql. Currently supported:
|
| ['dbdriver'] The database type. ie: mysql. Currently supported:
|
||||||
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
|
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
|
||||||
| ['dbprefix'] You can add an optional prefix, which will be added
|
| ['dbprefix'] You can add an optional prefix, which will be added
|
||||||
| to the table name when using the Active Record class
|
| to the table name when using the Active Record class
|
||||||
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|
||||||
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|
||||||
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
|
||||||
| ['cachedir'] The path to the folder where cache files should be stored
|
| ['cachedir'] The path to the folder where cache files should be stored
|
||||||
| ['char_set'] The character set used in communicating with the database
|
| ['char_set'] The character set used in communicating with the database
|
||||||
| ['dbcollat'] The character collation 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
|
| 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
|
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
|
||||||
| (and in table creation queries made with DB Forge).
|
| (and in table creation queries made with DB Forge).
|
||||||
| There is an incompatibility in PHP with mysql_real_escape_string() which
|
| 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
|
| can make your site vulnerable to SQL injection if you are using a
|
||||||
| multi-byte character set and are running versions lower than these.
|
| 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.
|
| 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
|
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
|
||||||
| ['autoinit'] Whether or not to automatically initialize the database.
|
| ['autoinit'] Whether or not to automatically initialize the database.
|
||||||
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|
||||||
| - good for ensuring strict SQL while developing
|
| - good for ensuring strict SQL while developing
|
||||||
|
|
|
|
||||||
| The $active_group variable lets you choose which connection group to
|
| The $active_group variable lets you choose which connection group to
|
||||||
| make active. By default there is only one group (the 'default' group).
|
| make active. By default there is only one group (the 'default' group).
|
||||||
@ -48,9 +48,9 @@
|
|||||||
$active_group = 'default';
|
$active_group = 'default';
|
||||||
$active_record = TRUE;
|
$active_record = TRUE;
|
||||||
|
|
||||||
$db['default']['hostname'] = 'database';
|
$db['default']['hostname'] = '.';
|
||||||
$db['default']['username'] = 'SA';
|
$db['default']['username'] = '';
|
||||||
$db['default']['password'] = 'yuikamitsumine!!1';
|
$db['default']['password'] = '';
|
||||||
$db['default']['database'] = 'BLUEFIREDATABASE';
|
$db['default']['database'] = 'BLUEFIREDATABASE';
|
||||||
$db['default']['dbdriver'] = 'sqlsrv';
|
$db['default']['dbdriver'] = 'sqlsrv';
|
||||||
$db['default']['dbprefix'] = '';
|
$db['default']['dbprefix'] = '';
|
||||||
@ -64,9 +64,9 @@ $db['default']['swap_pre'] = '';
|
|||||||
$db['default']['autoinit'] = FALSE;
|
$db['default']['autoinit'] = FALSE;
|
||||||
$db['default']['stricton'] = FALSE;
|
$db['default']['stricton'] = FALSE;
|
||||||
|
|
||||||
$db['BLUEFIREDATABASE']['hostname'] = 'database';
|
$db['BLUEFIREDATABASE']['hostname'] = '.';
|
||||||
$db['BLUEFIREDATABASE']['username'] = 'SA';
|
$db['BLUEFIREDATABASE']['username'] = '';
|
||||||
$db['BLUEFIREDATABASE']['password'] = 'yuikamitsumine!!1';
|
$db['BLUEFIREDATABASE']['password'] = '';
|
||||||
$db['BLUEFIREDATABASE']['database'] = 'BLUEFIREDATABASE';
|
$db['BLUEFIREDATABASE']['database'] = 'BLUEFIREDATABASE';
|
||||||
$db['BLUEFIREDATABASE']['dbdriver'] = 'sqlsrv';
|
$db['BLUEFIREDATABASE']['dbdriver'] = 'sqlsrv';
|
||||||
$db['BLUEFIREDATABASE']['dbprefix'] = '';
|
$db['BLUEFIREDATABASE']['dbprefix'] = '';
|
||||||
|
Loading…
Reference in New Issue
Block a user