1

I got a clean installation of CentOS 6.3, with php 5.3.18. I tried installing the epel-release-6-7.noarch.rpm and epel-release-6-7.noarch.rpm in order to run

# yum install php-mcrypt

However it cannot find the package. Also tried

# yum install php53-mcrypt

but no luck.

Can Anyone point me on the right direction?

Abhijeet Kasurde
  • 985
  • 9
  • 20

1 Answers1

1

Install the EPEL REPO via:

rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

#OR .../x86_64/... for 64bit

then you can

yum install php-mcrypt

(EPEL FAQ: https://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F )

nikd
  • 11
  • 2