如何在 PHP-FPM 5.5.6 上安装 SOAP 扩展 - 依赖问题

如何在 PHP-FPM 5.5.6 上安装 SOAP 扩展 - 依赖问题

我在 CentOS 6.4 上使用 nginx 安装 PHP-FPM 5.5.6(32 位 + 64 位)的 SOAP 扩展时遇到问题。我已启用 REMI repos 并成功安装了所有内容 - 除了 SOAP 扩展。

尝试安装时我收到以下依赖性错误:

[root@local src]# yum --enablerepo=remi install php-soap
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.hexageek.com
 * epel: mirror.digmia.com
 * extras: mirror.hexageek.com
 * remi: mirror5.layerjet.com
 * updates: mirror.hexageek.com
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package php-soap.x86_64 0:5.4.22-1.el6.remi will be installed
--> Processing Dependency: php-common(x86-64) = 5.4.22-1.el6.remi for package: php-soap-5.4.22-1.el6.remi.x86_64
--> Finished Dependency Resolution
Error: Package: php-soap-5.4.22-1.el6.remi.x86_64 (remi)
           Requires: php-common(x86-64) = 5.4.22-1.el6.remi
           Installed: php-common-5.5.5-2.el6.remi.x86_64 (@remi-php55)
               php-common(x86-64) = 5.5.5-2.el6.remi
           Available: php-common-5.3.3-22.el6.x86_64 (base)
               php-common(x86-64) = 5.3.3-22.el6
           Available: php-common-5.3.3-23.el6_4.x86_64 (updates)
               php-common(x86-64) = 5.3.3-23.el6_4
           Available: php-common-5.4.21-2.el6.remi.x86_64 (remi)
               php-common(x86-64) = 5.4.21-2.el6.remi
           Available: php-common-5.4.22-1.el6.remi.x86_64 (remi)
               php-common(x86-64) = 5.4.22-1.el6.remi
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

从 remi-test 安装“yum --enablerepo=remi-test install php-soap”显示更旧版本 php-soap 5.3.3。

以下是我迄今为止尝试过的:

1/ pear 安装 soap....无法安装版本 0.13.0 不是首选稳定版本,使用频道 0.13.0...但我无法做到这一点,如何切换频道..没有明确的文档或不起作用......

2/

yum --enablerepo=remi install php-soap .... soap 5.4.22 的依赖问题

yum --enablerepo=remi-test install php-soap .... soap 5.3.3 的依赖问题

3/ 我从RPM 下载的软件包并尝试 yum localinstall php-soap-5.5.6-1.fc20.remi.x86_64.rpm ...再次解决依赖问题

有没有人成功使用 PHP-FPM 在 PHP 5.5.6 上安装 PHP SOAP 扩展?

我也检查了PHP但没有任何信息,只是“使用 --enable-soap 配置 PHP“这听起来好像 SOAP 扩展已经捆绑到核心中了...?我真的非常需要这个扩展,而且我不想降级 PHP 版本。

非常感谢您的好建议:-)

答案1

再次仔细阅读输出:

Installed: php-common-5.5.5-2.el6.remi.x86_64 (@remi-php55)

使用

yum --enablerepo=remi-php55 install php-soap

应该有帮助。检查一下关联

请不要尝试在 CentOS 上安装 Fedora 软件包。

相关内容