Im using ubuntu 12.04, and php 5.x I need to use sqlite3 in it but Im getting an error of
php fatal error: class sqlite3 not found
I done
For the error PHP Fatal error: Uncaught Error: Class 'SQLite3' not found in /path/file.php:1 on ArchLinux:
PHP Fatal error: Uncaught Error: Class 'SQLite3' not found in /path/file.php:1
Install the sqlite extension for PHP:
$ sudo pacman -S php-sqlite
Then edit /etc/php/php.ini and add:
/etc/php/php.ini
extension=pdo_sqlite extension=sqlite3
Source: 1