-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Benjamin J Doherty
authored and
Benjamin J Doherty
committed
Mar 24, 2009
1 parent
49019f5
commit 0358154
Showing
6 changed files
with
1,139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// $Id: INSTALL.sqlite.txt,v 1.1 2009/03/13 21:41:15 dries Exp $ | ||
|
||
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. | ||
|
||
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. | ||
|
||
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. | ||
|
||
USERNAME, PASSWORD, and ADVANCED OPTIONS | ||
---------------------------------------- | ||
No username, password, or advanced options are necessary and should not be used. |
Oops, something went wrong.