Comments on “Easy installation of LASP (Linux, Apache, SQLite and PHP) on Ubuntu”http://www.bioinformatics.org/librarian/blog/2009/09/11/easy-installation-of-lasp-linux-apache-sqlite-and-php-on-ubuntu/feed/Easy+installation+of+LASP+%28Linux%2C+Apache%2C+SQLite+and+PHP%29+on+Ubuntu2009-09-14T10:53:09-05:00ChyrpEasy installation of LASP (Linux, Apache, SQLite and PHP) on Ubuntutag:www.bioinformatics.org,2009-09-14:/librarian/blog/id/9//comment_11632009-09-14T10:53:09-05:002009-09-14T10:53:09-05:00Scott Furry
It Works...sort of?
The line...
$dbHandle = new PDO("sqlite: var/databases/testsite/database.sqlite");
...should read...
$dbHandle = new PDO("sqlite:/var/databases/testsite/database.sqlite");
(Note change in path after "sqlite:")
(see PHP:PDO_SQLITE DSN in PHP manual at http://ca.php.net/manual/en/ref.pdo-sqlite.connection.php)
Other than this...super simple! Thanks for posting!!!!
sf