>  기사  >  백엔드 개발  >  일반적인 PHP 소스 코드 설치 오류 및 해결 방법

일반적인 PHP 소스 코드 설치 오류 및 해결 방법

零到壹度
零到壹度원래의
2018-04-14 17:57:332207검색

이 문서에서는 일반적인 PHP 소스 코드 설치 오류와 해당 해결 방법을 공유합니다. 특정 참조 값이 있습니다. 도움이 필요한 친구가 참조할 수 있습니다.

오류:

configure: error: libevent >= 1.4.11 could not be found

해결 방법:

yum -y install libevent libevent-devel


Error :

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&#39;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

Sol ved:

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.