1

How can I install the i686 php package on an x86_64 architecture?

1 Answers1

3

RHEL support multiarch, so you should just be able to install the i686 package with yum:

yum install php.i686

That should drag in the appropriate dependencies and everything. You may need to add the 32-bit repositories, if they aren't already included.

womble
  • 98,245