Searched already on many sites with no results. PHP keeps on saying:
Call to undefined function sqlite_open()
If I manually load sqlite (it
sqlite_open was the function in the sqlite2 extension. What you've installed is probably the sqlite3 module, which requires sqlite3::open() instead.
sqlite3::open()
But you should not use the native interface either way. Use PDO to open sqlite databases. http://www.php.net/manual/en/ref.pdo-sqlite.php