Unable to load dynamic library

13,414

You don't need to get it. Just remove the line referencing the shared object.

cd /etc/php5
grep -rinH sqlite .

Since PHP 5.4 sqlite is only available via PECL.

If you want to get the library, try sudo apt-get install php-sqlite or yum install php-sqlite or similar.

Share:
13,414
King Julien
Author by

King Julien

Updated on June 07, 2022

Comments

  • King Julien
    King Julien about 2 years

    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?