常见的php源代码安装错误及其解决措施
程序员文章站
2022-04-30 23:31:43
...
本篇文章给大家分享的内容是常见的php源代码安装错误及其解决措施 ,有着一定的参考价值,有需要的朋友可以参考一下
错误:
configure: error: libevent >= 1.4.11 could not be found
解决:
yum -y install libevent libevent-devel
错误:
configure: error: Please reinstall the mysql distributio
解决:
yum -y install mysql-devel
错误:
make: *** [sapi/fpm/php-fpm] error 1
解决:用make ZEND_EXTRA_LIBS='-liconv'编译
错误:
configure: error: XML configuration could not be found
解决:
yum -y install libxml2 libxml2-devel
错误:
configure: error: No curses/termcap library found
解决:
yum -y install ncurses ncurses-devel
错误:
configure: error: xml2-config not found
解决:
yum -y install libxml2 libxml2-devel
错误:
configure: error: Cannot find OpenSSL's <evp.h>
解决:
yum install openssl openssl-devel
错误:
configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/
解决:
yum install curl curl-devel
错误:
configure: error: Cannot find ldap.h
解决:
yum install openldap openldap-devel
错误:
configure: error: libjpeg.(a|so) not found
解决:
yum install libjpeglibjpeg -devel
错误:
configure: error: libpng.(a|so) not found.
解决:
yum install libpnglibpng –devel
错误:
onfigure: error: freetype.h not found.
解决:
yum install freetype-devel
错误:
configure: error: cannot find output from lex; giving up
解决:
yum -y install flex
错误:
configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
解决:
yum -y install zlib-devel openssl-devel
错误:
Configure: error: Unable to locate gmp.h
解决:
yum install gmp-devel
错误:
Configure: error: Cannot find MySQL header files under /usr. Note that the MySQL client library is not bundled anymore!
解决:
yum install mysql-devel
以上就是常见的php源代码安装错误及其解决措施 的详细内容,更多请关注其它相关文章!
推荐阅读
-
PHP编译安装时常见错误解决办法
-
php编译安装常见错误大全和解决方法
-
无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装最快的解决办法
-
Ubuntu系统下的Nginx服务器软件安装时的常见错误解决
-
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
-
Windows下PHP安装路径配置错误导致Apache无法启动的解决方法
-
PHP编译安装时常见错误解决办法
-
安装sql server 2008时的4个常见错误和解决方法
-
php编译安装常见错误大全和解决方法
-
CentOS下PHP7的编译安装及MySQL的支持和一些常见问题的解决办法