PHP install FAQ

    技术2022-05-20  54

    PHP install FAQ

    1.Error: Configure: error: xml2-config not found. Please check your libxml2 installation.Fix: yum install libxml2 libxml2-devel# aptitude install libxml2-dev (For ubuntu)

    2.Error: configure: error: Cannot find OpenSSL’s Fix: yum install openssl openssl-devel

    3.Error: Configure: error: Please reinstall the BZip2 distributionFix: yum install bzip2 bzip2-devel

    4.Error: Configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/Fix: yum install curl curl-devel (For Redhat & Fedora)# install libcurl4-gnutls-dev (For Ubuntu)

    5.Error: Configure: error: libjpeg.(also) not found.Fix: yum -y install gdyum -y install gd-develyum install libjpeg libjpeg-devel

    6.Error: Configure: error: libpng.(also) not found.Fix: yum install libpng libpng-devel#apt-get install libpng12-dev

    7) Configure: error: freetype.h not found.Solutions :yum install freetype-devel

    8) Configure: error: Unable to locate gmp.h

    Solutions :yum install gmp-devel

    9) Configure: error: Cannot find MySQL header files under /usr.Note that the MySQL client library is not bundled anymore!

    Solutions :yum install mysql-devel (For Redhat & Fedora)

    # apt-get install libmysql++-dev (For Ubuntu)

    10) Configure: error: Please reinstall the ncurses distribution

    Solutions :yum install ncurses ncurses-devel

    11) Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!

    Solutions :yum install unixODBC-devel

    12. --with-pspell=sharedError: Configure: error: Cannot find pspellFix: yum install pspell-devel

    13) --with-mcrypt=sharedError: configure: error: mcrypt.h not found. Please reinstall libmcrypt.Fix: yum install libmcrypt-devel

    # apt-get install libmcrypt-dev

    14) Configure: error: snmp.h not found. Check your SNMP installation.

    Solutions :

    yum install net-snmp net-snmp-devel

    15)开启LDAP服务还需要yum -y install openldap-devel openldap-servers openldap-clients

    16)configure: error: No curses/termcap library found网上有的说法是:–with-named-curses-libs=/usr/lib/libncursesw.so.5其实是不对的,虽然能解决configure的错误,但是make的时候会提示错误,正确的做法应该是yum -y install ncurses-devel (for redhat)apt-get install libncurses5-dev(for debian)

    17)configure: error: cannot find output from lex; giving upyum -y install flex

    18)configure: error: mod_deflate has been requested but can not be built due to prerequisite failuresyum -y install zlib-devel openssl-develdebian:apt-get install zlib1g-dev

    19)configure: error: libXpm.(a|so) not found.apt-get install libxpm-dev

    20) configure: error: Could not find pcre.h in /usrFix: yum install pcre-devel

    21) configure: error: Could not find libpcre.(a|so) in /usrFix: cp /usr/lib/libpcre.a /usr/libpcre.aRefer: http://bugs.php.net/bug.php?id=1647

    22. --with-db4Error: configure: error: DBA: Could not find necessary header file(s).Fix: yum install gdbm-devel db4-develError: configure: error: Header contains different versionFix: --with-libdir=lib (--libdir=/usr/lib64, which is wrong)Refer: http://bugs.php.net/bug.php?id=40707

    23) configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missingFix: yum install libc-client-devel

    24. --enable-intl=sharedError: configure: error: Unable to detect ICU prefix or no failed. Please verify ICU install prefix and make sure icu-config works.

    25.--with-ldap=sharedError: configure: error: Cannot find ldap.hFix: yum install openldap-develError: configure: error: Cannot find ldap libraries in /usr/lib64.

    26.--with-readline=sharedError: configure: error: Please reinstall readline - I cannot find readline.hFix: yum install readline-devel

    27.--with-tidy=sharedError: configure: error: Cannot find libtidyFix: yum install libtidy-devel

    28.--with-xsl=sharedError: configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distributionFix: yum install libxslt-devel


    最新回复(0)