找不到Postgres驱动程序

时间:2019-05-28 07:01:32

标签: postgresql-9.3 php-5.6

我安装了多个版本的PHP,分别是php 5.6、7.0、7.2、7.3。对于一个旧项目,我已切换回5.6。我无法连接到Postgress驱动程序

CDbConnection failed to open the DB connection: could not find driver

catch(PDOException $e)
379             {
380                 if(YII_DEBUG)
381                 {
382                     throw new CDbException('CDbConnection failed to open the DB connection: '.
383                         $e->getMessage(),(int)$e->getCode(),$e->errorInfo);
384                 }
385                 else
386                 {
387                     Yii::log($e->getMessage(),CLogger::LEVEL_ERROR,'exception.CDbException');
388                     throw new CDbException('CDbConnection failed to open the DB connection.',(int)$e->getCode(),$e->errorInfo);
389                 }
390             }

我尝试了很多选择,但没有任何效果。我还重新安装了postressphp5-psql,但还是没有运气。 有人可以帮忙吗?

0 个答案:

没有答案