web-dev-qa-db-ja.com

php-soapをインストールしようとして、「利用可能なパッケージphp-soapがありません」を取得します。

これを試しました:

yum install php-soap

言う:

利用可能なパッケージphp-soapはありません。

次にこれを試しました:

yum --enablerepo=centosplus install php-soap

それでも同じsh!t。これを試しました:

rpm -Uvh http://download.Fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

まだ運がない。みんな、必要なパッケージを含むレポはどこにありますか?

サーバーはvps.netにあります...

1
Dmitry

まず、/ etc /yum.confファイルを開きます。除外行を見つけてphp *コマンドを消去してから、ファイルを保存します。

次に、「yuminstallphp-soap」コマンドが機能するはずです。

http://www.wallpaperama.com/forums/how-to-install-php-soap-extension-in-Apache-linux-php-server-remove-t1756.html Mehmetによるコメント

私のために働いた:)

4
Greg

レミリポジトリはあなたが探しているものだと思います。

CentOS6およびRedHat(RHEL)6へのRemiの依存関係

rpm -Uvh http://download.Fedora.redhat.com/pub/epel/6/i386/epel-release-6-5.noarch.rpm

CentOS6およびRedHat(RHEL)6

rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

CentOS5およびRedHat(RHEL)5へのRemiの依存関係

rpm -Uvh http://download.Fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

CentOS5およびRedHat(RHEL)5

rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
1
B14D3

CentOS5のepelおよびrpmforgeリポジトリにあります。--enablerepoで試しましたか?

yum --enablerepo=epel install php-soap
0
savamane