adib16
adib16

Reputation: 1697

how to install library for Mcrypt in centos

I install Mcrypt on centos .but I can not use mcrypt algorithms and mcrypt modes .default directory for mcrypt algorithms and mcrypt modes is /usr/local/lib/libmcrypt but /usr/local/lib/libmcrypt directory is empty.how i can enable mcrypt algorithms and mcrypt modes ? php version is 5.6 and centos version is 6.3

Upvotes: 0

Views: 128

Answers (1)

Truong Hua
Truong Hua

Reputation: 812

You will need to install the mcrypt php module like this:

yum install php-mcrypt

And restart your apache or nginx server.

Upvotes: 1

Related Questions