How do I enable SQLite on Linux/Apache/PHP?
Solution 1:
i cannot tell how exactly for suse this would work. in debian world it's:
apt-get install php5-sqlite
this will install needed library and add /etc/php5/conf.d/sqlite.ini with
extension=sqlite.so
so first - use yum to see install needed package, then add to php.ini line above.
EDIT: for php7 the command is:
apt-get install php7.0-sqlite
and php.ini file is located at: sudo nano /etc/php/7.0/apache2/php.ini
where you have to enable the extension=sqlite.so
Solution 2:
Short version, but might be wrong because I don't know what package repositories your system is set up with:
yum install php5-sqlite
Long version:
yum search php sqlite
Or just search for one:
yum search sqlite
Look at the list that comes back. Figure out what you need, then:
yum install whatever_package_looked_right_from_the_list
Solution 3:
SQLite support is enabled by default on a standard Linux PHP compilation starting with PHP 5.0.
Which PHP version do you use? Did you checked the phpinfo() output to see if SQLite is enabled? SQLite will be enabled unless the
--disable-sqlite
parameter is set in configure string.