We are trying to make Laravel work on Localhost on the Windows 8.1 OS, using WampServer 2.5 as our server and with php7.0.25 installed on it.
We have been able to install composer and use this to install the Laravel framework in directory wamp/www/blog. We also created an empty database (named blog) where the Laravel database can be migrated to. Sadly we get the error that the pdo drivers cannot be found:
[Illuminate\Database\QueryException]
could not find driver (SQL: select * from information_schema.tables where table_schema = blog and table_name = mig
rations)
[PDOException]
could not find driver
We have been doing some research and found multiple threads about this so we did all the necessary checks: the correct .ini file gets called for, all the drivers are available in the extension directory and all extensions are called for. Reinstalling the php version has also been tried, but with no luck.
By using the command php -i we can see the following:
PDO
PDO support => enabled
PDO drivers =>
I understand this might signify the drivers still cannot be found.
Is there any other solution for us to solve this problem so we can move on and start delving deeper into Laravel?
Thanks in advance.