You are not logged in.
Hello Folks,
I'd like to use SQLite with PHP and Httpd in order to create easily my own portable CMS.
But I don't manage to have access to SQLite with PHP/Httpd. Nothing appears with this script :
<?php
echo sqlite_libversion();
?>However I've installed core/sqlite3 and extra/php-sqlite and I've uncommented these following lines in my php.ini :
extension=pdo_sqlite.so
extension=sqlite.so
extension=sqlite3.soand restarted a couple of times httpd ![]()
Someone has an idea to resolve this problem?
Thanks
Alplob
Offline
Hi!, try enabling pdo.so, pdo_sqlite requires it.
Last edited by bungow (2010-04-04 12:15:11)
#507600
Offline
You can also confirm that SQLite is present in phpinfo()
Offline
Hi!, try enabling pdo.so, pdo_sqlite requires it.
Houra, thanks a lot !!
Offline