Enabling sqlite3 Topic is solved
Enabling sqlite3
Hi there,
I saw the php.ini file contains:
Do I need to do anything to have sqlite working?
Thanks in advance!
I saw the php.ini file contains:
Code: Select all
;extension=php_pdo_sqlite.dll
;extension=php_sqlite3.dll
[sqlite3]
;sqlite3.extension_dir =
Thanks in advance!
Re: Enabling sqlite3
Code: Select all
yum install php5-sqlite3
Re: Enabling sqlite3
I get some errors on Debian 9.
root@xxxxxxx:/etc/php/7.0/apache2# apt-get install php5-sqlite3
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package php5-sqlite3
root@xxxxxxx:/etc/php/7.0/apache2#
Re: Enabling sqlite3
Try with:
Code: Select all
apt-get install php-sqlite3
Re: Enabling sqlite3
Yes, this right package. Thank you!