summaryrefslogtreecommitdiff
path: root/sites
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-26 19:54:24 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-26 19:54:24 +0000
commitb49788977864c0fcdfb7bb2855cbefd01270232f (patch)
tree00203aeeb8c91ad83e4d4930ebf09cc47ba00aee /sites
parent90535c33aa71551faf8bfb035d66ab5a32b907ea (diff)
downloadbrdo-b49788977864c0fcdfb7bb2855cbefd01270232f.tar.gz
brdo-b49788977864c0fcdfb7bb2855cbefd01270232f.tar.bz2
- Patch #25792 by Cvbge: improved installation instructions.
Diffstat (limited to 'sites')
-rw-r--r--sites/default/settings.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/sites/default/settings.php b/sites/default/settings.php
index 67fed645b..6f190b723 100644
--- a/sites/default/settings.php
+++ b/sites/default/settings.php
@@ -79,23 +79,23 @@
* );
*
* Database URL format:
- * $db_url = 'mysql://username:password@localhost/database';
- * $db_url = 'mysqli://username:password@localhost/database';
- * $db_url = 'pgsql://username:password@localhost/database';
+ * $db_url = 'mysql://username:password@localhost/databasename';
+ * $db_url = 'mysqli://username:password@localhost/databasename';
+ * $db_url = 'pgsql://username:password@localhost/databasename';
*/
-$db_url = 'mysql://username:password@localhost/database';
+$db_url = 'mysql://username:password@localhost/databasename';
$db_prefix = '';
/**
* Base URL:
*
* The URL of your website's main page. It is not allowed to have
- * a trailing slash; Drupal will add it for you.
- *
- * Examples:
+ * a trailing slash; Drupal will add it for you.
+ *
+ * Examples:
* $base_url = 'http://localhost';
* $base_url = 'http://example.com/drupal';
- *
+ *
* By default, Drupal tries to set the $base_url for you using
* the code below.
*/