I get this warning message in my php:
PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php/modules/sqlite.so’ – /usr/lib64/php/modules/sqlite.so: cannot open shared object file: No such file or directory in Unknown on line 0
How should I fix that? Where can I get this sqlite.so file?
You don’t need to get it. Just remove the line referencing the shared object.
Since PHP 5.4 sqlite is only available via PECL.
If you want to get the library, try
sudo apt-get install php-sqliteoryum install php-sqliteor similar.