The error reported by the server was: could not find driver
The error reported by the server was: could not find driver
emmanuel
Posts: 6Questions: 4Answers: 0
DataTables warning: table id=current - An error occurred while connecting to the database 'shopfow3_currency'. The error reported by the server was: could not find driver.
Can anyone advise how to fix this. thanks
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Sounds like your server doesn't have whatever PDO driver you need to communicate with the database type you've selected.
If you create a file with just
<?php phpinfo() ?>
in it and then load it in your browser, look for the PDO section and then the Drivers part. What does it say? Also, what database type are you trying to use?Allan
Just to say that I had the same problem and fixed it as follows:
I ran phpinfo and found that PDO was installed... Next step I checked php.ini and enabled the following:
extension=php_pdo_mysql.dll
After that its all running... Hope that helps ;-)
ELCID GOOD ADVICE MAN!!!! THANKS