views:

114

answers:

2

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

A: 

Sounds like you need to install the PDO extension:

http://www.php.net/manual/en/pdo.setup.php

Scott Saunders
PDO is nothing do here. It is a error of DB connection. Zend use PDO by default.
Alexander.Plutov
@Scott Thanks I installed PDO now i am geting Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[28000] [1045] Access denied for user 'teamkit'@'localhost' (using password: YES)' in C:\Inetpub\ZendFramework-1.10.6\library\Zend\Db\Adapter\Pdo\Abstract.php on line 144
Gugu
So you're connecting with the wrong credentials or the user you specified isn't allowed to access the server.
wimvds
Thanks Scott its working now ..... happy zframing
Gugu
A: 

Try to change a settings of DB in configs/ or settings/. All parameters is right? servername, username, password, database name?

Alexander.Plutov
Thanks its working now ...horray !!
Gugu