开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法: export PHP_OPENSSL_DIR=yes ./configure -with-openssl-dir=/usr/include/openssl…
=============================================== yum install error: protected multilib versions error===============================================sudo yum downgrade openssl 降级sudo yum install openssl-devel ===另外参考====================================…
踩坑 最近通过pecl安装mongodb扩展时,提示以下错误 ...... configure: error: Cannot find OpenSSL's <evp.h> ...... 根据提示,通过以下方式安装openssl后,再次使用pecl安装mongodb,仍然是提示同样的错误 brew install openssl 问题解决 通过pecl安装的路走不通,还是得通过简单暴力方式解决,使用源码包通过编译方式进行安装 1.编译安装前先安装autoconf brew install aut…
开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法:修改configure 文件加入 这个是安装mysqlnd扩展报错的 export PHP_OPENSSL_DIR=yes ./configure --with-php-config=/home/php/bin/php-config -…
问题 mac安装php需要openssl ./configure –with-openssl 报错 error: Cannot find OpenSSL’s 解决 brew install openssl ./configure --with-openssl=/usr/local/Cellar/openssl/1.0.2l/ == php52与56共存的.使用下面的cd /ext/openssl /usr/local/Cellar/php52bysk/bin/phpize ./configure…
configure: error: Cannot find OpenSSL's <evp.h>  apt-get install libssl-dev…
一次在安装php7其中提示错误信息 configure: error: Cannot find OpenSSL's libraries 出现这种有2中情况,一种是没有安装 openssl,另一种是安装了找不到libssl.so 文件. 先安装openssl sudo apt-get install openssl 如果还提示该错误的话,查找一下libssl.so所在位置,重新连接一下 find / -name libssl.so 输出 /usr/lib/x86_64-linux-gnu/libs…
在Ubuntu 12.4.1 X64 位下编译安装PHP时提示 configure: error: Cannot find OpenSSL's libraries 确认已安装过 openssl.libssl-dev 包,还是会提示该错误: 解决办法: root@test2:~/php-5.3.27# find / -name libssl.so      输出结果为: /usr/lib/x86_64-linux-gnu/libssl.so 初步判断它可能只会在 /usr/lib/ 下寻找 lib…
linux下安装svn出现configure: error: We require OpenSSL; try --with-openssl http://blog.csdn.net/woshixiongjin/article/details/9174529 错误提示需要安装openssl,所以我就安装了一个openssl,安装方法如下: cd /usr/local wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz tar -zxvf…
今天从Apache官网上http://httpd.apache.org/下载httpd web服务器,由于我的虚拟机上之前安装过,我先yum remove httpd进行卸载,然后重新安装.我采用的是源码安装,先进行./configure --prefix=/usr/local/apahce  --enable-so ,提示以下错误: configure: error: APR not found. Please read the documentation. 解决办法 wget http://…