Hi i\'m received the could not find driver error when trying to connect to sqlite via a php file. I\'ve set permission to 777... PHP Version 5.2.16, i have
On archlinux i had to do two things:
first install php-sqlite
pacman -S php-sqlite
after that in my php.ini file for me in /etc/php/php.ini i had to uncomment this line:
php.ini
/etc/php/php.ini
;extension=pdo_sqlite.so
by removing semicolon.
Dont forget to restart server.