views:

114

answers:

2

hi , im getting this error while trying to run a page

http://localhost/sf_sandbox/web/frontend_dev.php/post

ERROR: " 500 | Internal Server Error | PropelException Unable to open PDO connection [wrapped: could not find driver] "

what is the problem , what i need to do eliminate this problem?

thanks

+3  A: 

Take a look in php.ini and enable the appropriate PDO driver for your RDBMS vendor. For MySQL you need to uncomment php_pdo_mysql.

Ionuț G. Stan
A: 

You can take a look at PHPInfo(); to check if you have successfuly uncommented required driver.

Don't forget to restart apache after modifying php.ini ;-)

RomanT