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