How to find out if SQLite is installed correctly on Linux?

I use the web hosting service in a shared account. They have MySQL, but I need to use SQLite to extend Joomla called SobiPro. How do I know if SQLite is installed and working correctly on Linux?

+6
source share
1 answer

SQLite is an embedded database, i.e. it is usually compiled directly into the application that uses it.

In your case, SQLite should be included in the PHP configuration. SobiPro 's documentation says:

SQLite can be supported directly through the SQLite extension or through the extension of PHP data objects .

To check for PHP extensions, use get_loaded_extensions or something like <?php phpinfo(INFO_MODULES); ?> <?php phpinfo(INFO_MODULES); ?> .

+7
source

Source: https://habr.com/ru/post/949978/


All Articles