尝试安装 php-soap 并得到“没有可用的包 php-soap。”

尝试安装 php-soap 并得到“没有可用的包 php-soap。”

尝试过这个:

yum install php-soap

说:

没有可用的 php-soap 包。

然后尝试了这个:

yum --enablerepo=centosplus install php-soap

还是一样。尝试了这个:

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

还是没运气。伙计们,包含所需软件包的仓库在哪里?

顺便说一下,服务器位于 vps.net......

答案1

首先打开 /etc/yum.conf 文件。找到排除行并删除 php* 命令,然后保存文件。

然后,“yum install php-soap”命令应该可以工作。

http://www.wallpaperama.com/forums/how-to-install-php-soap-extension-in-apache-linux-php-server-remove-t1756.htmlMehmet 的评论

对我有用:)

答案2

我认为 remi repo 就是你要找的。

Remi 对 CentOS 6 和 Red Hat (RHEL) 6 的依赖

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

CentOS 6 和 Red Hat (RHEL) 6

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

Remi 对 CentOS 5 和 Red Hat (RHEL) 5 的依赖

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

CentOS 5 和 Red Hat (RHEL) 5

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

答案3

我在 CentOS 5 上的 epel 和 rpmforge 存储库中找到了它。您是否尝试过使用 --enablerepo:

yum --enablerepo=epel install php-soap

相关内容