Index: install.php =================================================================== RCS file: /cvs/drupal/drupal/install.php,v retrieving revision 1.152 diff -u -p -r1.152 install.php --- install.php 4 Feb 2009 04:42:26 -0000 1.152 +++ install.php 8 Feb 2009 17:31:37 -0000 @@ -251,7 +251,7 @@ function install_settings_form(&$form_st '#default_value' => !empty($database['driver']) ? $database['driver'] : current(array_keys($drivers)), '#description' => st('The type of database your @drupal data will be stored in.', array('@drupal' => drupal_install_profile_name())), ); - $database_description = st('The name of the database your @drupal data will be stored in. It must exist on your server before @drupal can be installed.', array('@drupal' => drupal_install_profile_name())); + $database_description = st('The name of the database your @drupal data will be stored in. With the exception of SQLite, your database must exist on your server before @drupal can be installed. For SQLite enter "sites/default/files/.ht.sqlite" without quotes.', array('@drupal' => drupal_install_profile_name())); } // Database name @@ -272,6 +272,7 @@ function install_settings_form(&$form_st '#default_value' => empty($database['username']) ? '' : $database['username'], '#size' => 45, '#maxlength' => 45, + '#description' => st('No username or password are required if using the SQLite database type.'), ); // Database username