Laravel login from sqlite DB, getting "PDOException could not find driver" Laravel login from sqlite DB, getting "PDOException could not find driver" sqlite sqlite

Laravel login from sqlite DB, getting "PDOException could not find driver"


It sounds like your version of PHP is either missing, or has disabled, the PDO extension. Use the phpinfo function to list out the extensions installed and enabled. If PDO isn't there, look for a commented line in your php.ini file(s) and/or talk to the person maintaining your servers.


Your system has missing php SQLite installation.

Install it by using:

sudo apt-get install php7.0-sqlite