I am working on xampp 7.3 version of PHP.
I am facing the below error.
IlluminateDatabaseQueryException: could not find driver (SQL: select name
from table
where id
= e690ddc2-a2b6-4aad-8a73-dab1771c0ea6 limit 1) in file /opt/lampp/htdocs/ProjectFolder/vendor/laravel/framework/src/Illuminate/Database/Connection.php on line 669
Also, I have uncommented the pdo_mysql.dll in php.ini file it still giving me an error.
Also, it is working in the windows system but not in Ubuntu16.04.
how can solve this?
2
Answers
You should install the necessary packages
sudo apt-get install php*-mysql
Then uncomment the MySQL extensions on
php.ini
and restart your serverIn your project set the correct parameters and in the root of your project run
I resolve this issue on Ubuntu 18.04 by: