Index: INSTALL.sqlite.txt
===================================================================
RCS file: /cvs/drupal/drupal/INSTALL.sqlite.txt,v
retrieving revision 1.2
diff -u -p -r1.2 INSTALL.sqlite.txt
--- INSTALL.sqlite.txt	10 Nov 2009 17:27:53 -0000	1.2
+++ INSTALL.sqlite.txt	23 Aug 2010 14:29:40 -0000
@@ -3,32 +3,55 @@
 SQLITE REQUIREMENTS
 -------------------
 
-To use SQLite with your Drupal installation, the following requirements must
-be met: server has PHP 5.2 or later with PDO, and the PDO SQLite driver must
-be enabled.
+To use SQLite with your Drupal installation, the following
+requirements must be met: server has PHP 5.2 or later with PDO, and
+the PDO SQLite driver must be enabled.
+
+SETTINGS.PHP CONFIGURATION
+--------------------------
+
+Before visiting the installation page, you must configure the
+settings.php file to tell Drupal to use the SQLite database driver,
+and the path to the SQLite database to use. See the following notes
+regarding required permissions and security. Adding something similar
+to the following in the database settings section of settings.php will
+enable SQLite with a database file /var/run/apache2/sqlite/drupaldb.
+Note that /var/run/apache2/sqlite should be writable by the webserver.
+
+$databases = array();
+$databases['default']['default'] = 
+  array(
+  'driver' => 'sqlite',
+  'database' => '/var/run/apache2/sqlite/drupaldb',
+  );
+
 
 SQLITE DATABASE CREATION
 ------------------------
 
-The Drupal installer will create the SQLite database for you. The only
-requirement is the installer must have write permissions the directory where
-the database file resides.
-
-On the "Database configuration" form in the "Database name" field, you must
-supply the exact path to where you wish your database file to reside. It is
-strongly suggested that you choose a path that is outside of the webroot, yet
-ensure that the directory is writeable by the web server.
+The Drupal installer will create the SQLite database for you. As
+mentioned above, the only requirement is the installer must have write
+permissions on the directory where the database file resides.
+
+On the "Database configuration" form in the "Database name" field, you
+must supply the exact path to where you wish your database file to
+reside. It is strongly suggested that you choose a path that is
+outside of the webroot, yet ensure that the directory is writable by
+the web server.
 
-If you must place your database file in your webroot, you could try using the
-following in your "Database name" field:
+If you must place your database file in your webroot, you could try
+using the following in your "Database name" field:
 
   sites/default/files/.ht.sqlite
 
-Note: The .ht in the name will tell Apache to prevent the database from being
-downloaded. Please check that the file is, indeed, protected by your webserver.
-If not, please consult the documentation of your webserver on how to protect a
-file from downloading.
+Note: The .ht in the name will tell Apache to prevent the database
+from being downloaded. Please check that the file is, indeed,
+protected by your webserver.  If not, please consult the documentation
+of your webserver on how to protect a file from downloading.
 
 USERNAME, PASSWORD, and ADVANCED OPTIONS
 ----------------------------------------
-No username, password, or advanced options are necessary and should not be used.
+
+No username, password, or advanced options are necessary.  These
+fields should not be used.
+
