Heim > Artikel > Backend-Entwicklung > Häufige Fehler bei der Installation des PHP-Quellcodes und ihre Lösungen
Dieser Artikel teilt Ihnen häufige PHP-Quellcode-Installationsfehler und deren Lösungen mit. Er hat einen gewissen Referenzwert.
Fehler:
configure: error: libevent >= 1.4.11 could not be found
Lösung:
yum -y install libevent libevent-devel
Fehler:
configure: error: Please reinstall the mysql distributio
Gelöst:
yum -y install mysql-devel
Fehler:
make: *** [sapi/fpm/php-fpm] error 1
Gelöst: Kompilieren mit make ZEND_EXTRA_LIBS= '-liconv'
Fehler:
configure: error: XML configuration could not be found
Lösung:
yum -y install libxml2 libxml2-devel
Fehler:
configure: error: No curses/termcap library found
Lösung:
yum -y install ncurses ncurses-devel
Fehler:
configure: error: xml2-config not found
Lösung:
yum -y install libxml2 libxml2-devel
Fehler:
configure: error: Cannot find OpenSSL's <evp.h>
Lösung:
yum install openssl openssl-devel
Fehler:
configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/
Lösung:
yum install curl curl-devel
Fehler:
configure: error: Cannot find ldap.h
Lösung:
yum install openldap openldap-devel
Fehler:
configure: error: libjpeg.(a|so) not found
Lösung:
yum install libjpeglibjpeg -devel
Fehler:
configure: error: libpng.(a|so) not found.
Lösung:
yum install libpnglibpng –devel
Fehler:
onfigure: error: freetype.h not found.
Lösung:
yum install freetype-devel
Fehler:
configure: error: cannot find output from lex; giving up
Lösung:
yum -y install flex
Fehler:
configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
Lösung:
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
Das obige ist der detaillierte Inhalt vonHäufige Fehler bei der Installation des PHP-Quellcodes und ihre Lösungen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!