summaryrefslogtreecommitdiff
path: root/sites/default
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-11-28 08:51:09 +0000
committerDries Buytaert <dries@buytaert.net>2009-11-28 08:51:09 +0000
commit18710e71eb09a122ee95d51385e1b5e631737a37 (patch)
tree7078a2cc9c6e1d5423780d25876817d3cdabef40 /sites/default
parenta9662c4d546a0300d889514c04dfd4c867d578bd (diff)
downloadbrdo-18710e71eb09a122ee95d51385e1b5e631737a37.tar.gz
brdo-18710e71eb09a122ee95d51385e1b5e631737a37.tar.bz2
- Patch #644814 by Stefan Freudenberg: improved SQLite setup documentation
Diffstat (limited to 'sites/default')
-rw-r--r--sites/default/default.settings.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index b8b4dbbe7..b3ce18509 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -67,8 +67,9 @@
* connection should use. This is usually the same as the name of the
* database type, such as mysql or sqlite, but not always. The other
* properties will vary depending on the driver. For SQLite, you must
- * specify a database. For most other drivers, you must specify a username,
- * password, host, and database name.
+ * specify a database file name in a directory that is writable by the
+ * webserver. For most other drivers, you must specify a
+ * username, password, host, and database name.
*
* Some database engines support transactions. In order to enable
* transaction support for a given database, set the 'transactions' key
@@ -147,7 +148,7 @@
* );
* $databases['default']['default'] = array(
* 'driver' => 'sqlite',
- * 'database' => 'databasefilename',
+ * 'database' => '/path/to/databasefilename',
* );
*/
$databases = array();