first_page

Installing PDO_SQLITE in Ubuntu Server 6.0.6 (Dapper)

Install the following packages (with dependencies of course):make

php5-dev

php-pear Run the following command with admin privileges:PHP_PDO_SHARED=1 pecl install pdo_sqlite

sudo nano /etc/php5/apache2/php.ini Add the following lines in php.ini:extension=pdo.so extension=pdo_sqlite.so Restart apache:sudo /etc/init.d/apache2 force-reload This guidance is gleaned from http://pecl.php.net/bugs/bug.php?id=6117. One link from AG made this whole thang possible. Much appreciation!

Comments

AG, 2006-10-16 02:47:14

Glad it worked out for ya..

rasx()