diff options
author | alecpl <alec@alec.pl> | 2009-09-12 07:53:27 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-09-12 07:53:27 +0000 |
commit | fafe5dce9e98c657cba6b9cb1c9068fcbaaf35cb (patch) | |
tree | 36654d4dc7b73922c9abd12496b04d462ebe1b64 /config | |
parent | 2659ce1ee18f25a8a33beeccf6172513f3b58d88 (diff) |
- added comments to set absolute path for SQLite DSN (#1486095)
Diffstat (limited to 'config')
-rw-r--r-- | config/db.inc.php.dist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist index 4020b266a..a9ffe52ac 100644 --- a/config/db.inc.php.dist +++ b/config/db.inc.php.dist @@ -16,11 +16,13 @@ $rcmail_config = array(); // PEAR database DSN for read/write operations // format is db_provider://user:password@host/database +// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php // currently supported db_providers: mysql, mysqli, pgsql, sqlite, mssql $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail'; -// sqlite example: 'sqlite://./sqlite.db?mode=0646'; +// Warning: for SQLite use absolute path in DSN: +// sqlite example: 'sqlite:////full/path/to/sqlite.db?mode=0646'; // PEAR database DSN for read only operations (if empty write database will be used) // useful for database replication |