phpmyadmin mcrypt extension is missing

喜欢而已 提交于 2019-12-05 22:15:23

According to this post, you should edit /etc/php.d/mcrypt.ini and change

; Enable mcrypt extension module
extension=module.so

to

; Enable mcrypt extension module
extension=mcrypt.so

and then restart.

On Ubuntu Try this for your mcrypt problem:

mv -i /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available/
sudo php5enmod mcrypt
sudo service apache2 restart

I know you asked for CentOS 6, but in case someone happens to have the same problem for OSX lion/mountain lion, here is a solution

Basically they make you (re)install libmcrypt and the latest version of php, and if you don't have it, autoconf.

Just follow the tutorial, it should work flawlessly.

In CentOS, Yum did not work for me. I downloaded and installed libmcrypt-*.tar.gz. See similar instruction in this link. http://www.php.net/manual/en/mcrypt.installation.php.

Mac OS X Yosemite

the requested PHP extension mcrypt is missing from your system

I fixed this error by running the following commands in my Terminal :

brew update
brew upgrade
brew tap homebrew/dupes
brew tap josegonzalez/homebrew-php
brew install php54-mcrypt
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!