X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=config%2Fdb.inc.php.dist;fp=config%2Fdb.inc.php.dist;h=e142dd71c835b3dec0e71212d72b7f55a42d9c95;hb=ade1655456ffdb799be8081f57ec90a408b99dd9;hp=895aa45f23e6a81a25e5bc865fc90b955d4c19df;hpb=38bb9fc2d3bc5c90338eb7f375f42273b088adcd;p=roundcube.git diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist index 895aa45..e142dd7 100644 --- a/config/db.inc.php.dist +++ b/config/db.inc.php.dist @@ -16,7 +16,7 @@ $rcmail_config = array(); // PEAR database DSN for read/write operations // format is db_provider://user:password@host/databse -// currentyl suported db_providers: mysql, pgsql, sqlite +// currently supported db_providers: mysql, sqlite $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail'; @@ -33,7 +33,9 @@ $rcmail_config['db_backend'] = 'db'; $rcmail_config['db_max_length'] = 512000; // 500K // use persistent db-connections -$rcmail_config['db_persistent'] = TRUE; +// beware this will not "always" work as expected +// see: http://www.php.net/manual/en/features.persistent-connections.php +$rcmail_config['db_persistent'] = FALSE; // you can define specific table names used to store webmail data @@ -63,4 +65,4 @@ $rcmail_config['db_sequence_messages'] = 'message_ids'; // end db config file -?> \ No newline at end of file +?>