惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
MongoDB | Blog
MongoDB | Blog
A
About on SuperTechFans
M
MIT News - Artificial intelligence
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
P
Proofpoint News Feed
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理

Mcrypt on 轻风云

暂无文章

宝塔nginx环境下php7.2无mcrypt扩展
2019-08-28 · via Mcrypt on 轻风云

ssh以root用户登入服务器 执行以下命令

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# yum install libmcrypt libmcrypt-devel mcrypt mhash
    
    # wget  http://pecl.php.net/get/mcrypt-1.0.1.tgz
    
    # tar xf mcrypt-1.0.1.tgz
    
    # cd mcrypt-1.0.1
    
    # /www/server/php/72/bin/phpize
    
    # ./configure --with-php-config=/www/server/php/72/bin/php-config  && make && make install

将下方代码放入php.ini配置文件中

    extension=mcrypt.so