Reputation: 393
I am new to Zend Framework, try to configure on my local machine. Geting Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The PDO extension is required for this adapter but the extension is not loaded' in C:\Inetpub\ZendFramework-1.10.6\library\Zend\Db\Adapter\Pdo\Abstract.php on line 103
Could anybody please help me
Upvotes: 2
Views: 9238
Reputation: 21957
Try to change a settings of DB in configs/ or settings/. All parameters is right? servername, username, password, database name?
Upvotes: 0
Reputation: 30394
Sounds like you need to install the PDO extension:
http://www.php.net/manual/en/pdo.setup.php
Upvotes: 1