dscdttg4389 2017-02-04 21:53
浏览 170
已采纳

服务器上未启用PHP扩展名mcrypt

I'm modifying a plugin in wordpress. The plugin is "RegistrationMagic", when I inhaled it and went to the screen it appeared the following message "PHP extension mcrypt is not enabled on server".

I tried to follow the hint of that question "https://askubuntu.com/questions/460837/mcrypt-extension-is-missing-in-14-04-server-for-mysql"

But when I get to that part:

Sudo ln -s /etc/php5/mods-available/mcrypt.ini /etc/php5/cli/conf.d/20-mcrypt.ini
Sudo ln -s /etc/php5/mods-available/mcrypt.ini /etc/php5/apache2/conf.d/20-mcrypt.ini

Can not find conf.d file

Someone can help me: I already tried to reinstall php5 but it did not work either.

EDIT

When I do a locate in myscript.so it returns this below:

$locate mcrypt.so

/usr/lib/libmcrypt.so.4
/usr/lib/libmcrypt.so.4.4.8
/usr/lib/php5/20121212/mcrypt.so
  • 写回答

2条回答 默认 最新

  • dongzuan4860 2017-02-04 21:59
    关注

    PHP doesn't compile mcrypt by default. you first have to have mcrypt installed

    You need to compile PHP with the --with-mcrypt[=DIR] parameter to enable this extension. DIR is the mcrypt install directory. Make sure you compile libmcrypt with the option --disable-posix-threads

    an example for enabling it on ubuntu, in terminal run the following:

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

    here is an article on the php5enmod command: https://lornajane.net/posts/2012/managing-php-5-4-extensions-on-ubuntu

    to Fix a missing mcrypt ini:

    sudo updatedb 
    locate mcrypt.ini
    

    Should show it located at /etc/php5/mods-available

    locate mcrypt.so
    

    Edit mcrypt.ini and change extension to match the path to mcrypt.so, example:

    extension=/usr/lib/php5/20121212/mcrypt.so
    

    Now this:

    sudo php5enmod mcrypt
    

    Verify that new files exists here (they should be auto created from the issue above)

    ls -al /etc/php5/cli/conf.d/20-mcrypt.ini
    ls -al /etc/php5/apache2/conf.d/20-mcrypt.ini
    

    Otherwise do the following

    Create symbol links now

    sudo ln -s /etc/php5/mods-available/mcrypt.ini /etc/php5/cli/conf.d/20-mcrypt.ini
    sudo ln -s /etc/php5/mods-available/mcrypt.ini /etc/php5/apache2/conf.d/20-mcrypt.ini
    

    Restart Apache

    sudo service apache2 restart
    

    Restart php5 or php5-fpm

    sudo service php5 restart
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里