Error: php55w-common conflicts with php-common on CentOS 6.5

centos6, conflict, php, soap

Solution

I just found the solution to my issue!

use the following command to install php-soap:

yum install php55w-soap

Hope this helps!

Problem

I have installed a fresh 64-bit CentOS 6.5 with PHP5, Mysql5.5, etc. Now when I want to install different apache modules, like php-soap, I get this error: ``` ---> Package php-soap.x86_64 0:5.3.3-27.el6_5 will be installed --> Processing Dependency: php-common(x86-64) = 5.3.3-27.el6_5 for package: php-soap-5.3.3-27.el6_5.x86_64 --> Running transaction check ---> Package php-common.x86_64 0:5.3.3-27.el6_5 will be installed --> Processing Conflict: php55w-common-5.5.12-1.w6.x86_64 conflicts php-common < 5.5.0 --> Finished Dependency Resolution Error: php55w-common conflicts with php-common-5.3.3-27.el6_5.x86_64 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest ``` I use this command to install php-soap: yum --enablerepo=webtatic install php-soap

Original source