If you have PHP on your server, you already have SQLite installed. In
order to use it from PHP's pdo, as Habari does, your server needs to
have the pdo_sqlite extension enabled.
When you run Habari's installer, if the pdo_sqlite extension is
enabled, SQLite will appear as one of the database type options if you
are running an svn version of Habari. If you are using version 0.4.1,
you will need to verify that the extension is enabled yourself. You
can either ask your isp or create a php file and put this call in it:
<?php
phpinfo();
?>
The results is a list of everything supported by your PHP
installation.
If SQLite is enabled, the installer will create the database file for
you on a successful installation. You don't have to do anything.
However, you need to make sure the directory where your SQLite file
will be is writable by the web server.
Rick