欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

ubuntu无法加载mcrypt (外链,英语) 扩展

程序员文章站 2022-06-01 15:52:36
...
问题解决

1.安装apt-get install php5-mcrypt

2.编辑php配置文件vim /etc/php5/cgi/php.ini找到mcrypt并在下面添加红色行:

[mcrypt]
; For more information about mcrypt settings see http://php.net/mcrypt-module-open
; Directory where to load mcrypt algorithms
; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
;mcrypt.algorithms_dir=
mcrypt.algorithms_dir=/etc/bash_completion.d/mcrypt
3.添加完成后注意要重启fast-cgi:
root@Ubuntu:/# killall -9 php-cgi
root@Ubuntu:/# /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 20 -u nginx -g nginx -f /usr/bin/php5-cgi

作者“小白爱菜鸟”