Php
centOS中的php-pgsql錯誤
嘗試執行時:
yum --enablerepo=remi install php-pgsql
我收到以下錯誤,這是為什麼?
Error: Missing Dependency: php-common = 5.3.5-1.el5.remi.1 is needed by package php-pgsql-5.3.5-1.el5.remi.1.x86_64 (remi)
重新安裝php:
yum --enablerepo=remi reinstall php
然後安裝 php-pgsql:
yum --enablerepo=remi install php-pgsql
如果你從 webtatic repo 安裝 php,首先刪除 php 和 php-common:
yum erase php yum erase php-common
然後從 remi 安裝 php:
yum --enablerepo=remi --disablerepo=webtatic install php