hello all,
i could like access mysql db by using zend framework. But i got following error info:
Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The PDO extension is required for this adapter but the extension is not loaded'
i know that one should decomment following rows in php.ini under linux:
extension=pdo.so
extension=pdo_mysql.so
the problem is that i don't have right to modify this file and pdo is disabled there. This file is stored in a web host.
my question is: how do i access mysql db by using zend, if pdo is disabled. Are there another way to do it?