I just installed Debian Lenny with Apache, MySQL and PHP and I get a PDOException Unable to find driver.
This is the specific line of code it refers to:
$dbh = new PDO('mysql:host=' .DB_HOST . ';dbname=' .DB_NAME, DB_USER, DB_PASS)
DB_HOST, DB_NAME, DB_USER and DB_PASS are constants I defined. It works fine on a production server (as well as my previous Ubuntu server setup).
Is this related to my PHP installation?
Searching online didn't help, all I got were expert talks and examples, but no solutions.
The dsn in the code shows that you are trying to connect to the mysql driver. Your error message indicates that the driver is not available.
Check whether the mysql extension is installed on your server.
In Ubuntu/Debian, you can check the package using the following command:
If there is no php5-mysql package, please install it.
In Ubuntu/Debian you can use:
sudo apt-get install php5-mysqlsudo apt-get install php7.0-mysqlFinally, to make it work, you need to restart the web server:
sudo /etc/init.d/apache2 restartsudo /etc/init.d/nginx restartYou need to have a module called pdo_mysql. Look for the following in phpinfo(),