Index: INSTALL.txt =================================================================== RCS file: /cvs/drupal/drupal/INSTALL.txt,v retrieving revision 1.17 diff -u -r1.17 INSTALL.txt --- INSTALL.txt 1 Apr 2005 15:30:35 -0000 1.17 +++ INSTALL.txt 7 Apr 2005 18:45:08 -0000 @@ -118,10 +118,10 @@ base URL to the web site. Open the configuration file and edit the $db_url line to match the database defined in the previous steps: - $db_url = "mysql://userid:password@localhost/database"; + $db_url = 'dbms://userid:password@localhost/database'; - where 'userid', 'password', 'localhost' and 'database' are the - username, password, host and database name for your set up. + where 'dbms', 'userid', 'password', 'localhost' and 'database' are + the DBMS, username, password, host and database name for your setup. Set $base_url to match the address to your Drupal site: Index: sites/default/settings.php =================================================================== RCS file: /cvs/drupal/drupal/sites/default/settings.php,v retrieving revision 1.12 diff -u -r1.12 settings.php --- sites/default/settings.php 31 Mar 2005 21:18:08 -0000 1.12 +++ sites/default/settings.php 7 Apr 2005 18:45:09 -0000 @@ -54,10 +54,10 @@ * prefixes are desired, set to empty string ''. * * Database URL format: - * $db_url = 'mysql://db_user:db_password@db_hostname/db_name'; - * $db_url = 'pgsql://db_user:db_password@db_hostname/db_name'; + * $db_url = 'mysql://userid:password@localhost/database'; + * $db_url = 'pgsql://userid:password@localhost/database'; */ -$db_url = 'mysql://drupal:drupal@localhost/drupal'; +$db_url = 'dbms://userid:password@localhost/database'; $db_prefix = ''; /**