У меня установлено несколько версий 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 }
Я перепробовал много вариантов, но ничего не работает. Я также переустановил postress
и php5-psql
, но все равно не повезло.
Кто-нибудь может помочь?