搜索
首页后端开发php教程PHP编译安装时常见错误解决办法_PHP教程

PHP编译安装时常见错误解决办法_PHP教程

Jul 13, 2016 am 09:52 AM
php主要办法安装常见文章编译解决错误

PHP编译安装时常见错误解决办法

   这篇文章主要介绍了PHP编译安装时常见错误解决办法,本文涵盖了PHP编译安装中的大多数错误,同时给出解决方法,需要的朋友可以参考下

  This article is post on https://coderwall.com/p/ggmpfa

  configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

  代码如下:

  yum -y install libxslt-devel

  configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.

   代码如下:

  yum -y install net-snmp-devel

  configure: error: Please reinstall readline - I cannot find readline.h

  代码如下:

  yum -y install readline-devel

  configure: error: Cannot find pspell

   代码如下:

  yum -y install aspell-devel

  checking for unixODBC support... configure: error: ODBC header file '/usr/include/sqlext.h' not found!

   代码如下:

  yum -y install unixODBC-devel

  configure: error: Unable to detect ICU prefix or /usr/bin/icu-config failed. Please verify ICU install prefix and make sure icu-config works.

   代码如下:

  yum -y install libicu-devel

  configure: error: utf8mime2text() has new signature, but U8TCANONICAL is missing. This should not happen. Check config.log for additional information.

   代码如下:

  yum -y install libc-client-devel

  configure: error: freetype.h not found.

  代码如下:

  yum -y install freetype-devel

  configure: error: xpm.h not found.

  代码如下:

  yum -y install libXpm-devel

  configure: error: png.h not found.

   代码如下:

  yum -y install libpng-devel

  configure: error: vpx_codec.h not found.

   代码如下:

  yum -y install libvpx-devel

  configure: error: Cannot find enchant

  代码如下:

  yum -y install enchant-devel

  configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/

   代码如下:

  yum -y install libcurl-devel

  LAOGAO added 20140907:

  configure: error: mcrypt.h not found. Please reinstall libmcrypt.

     代码如下:

  wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz

  tar zxf libmcrypt-2.5.7.tar.gz

  cd libmcrypt-2.5.7

  ./configure

  make && make install

  added 20141003:

  Cannot find imap

   代码如下:

  ln -s /usr/lib64/libc-client.so /usr/lib/libc-client.so

  configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing.

   代码如下:

  yum -y install libc-client-devel

  Cannot find ldap.h

  代码如下:

  yum -y install openldap

  yum -y install openldap-devel

  configure: error: Cannot find ldap libraries in /usr/lib

   代码如下:

  cp -frp /usr/lib64/libldap* /usr/lib/

  configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path

  代码如下:

  yum -y install postgresql-devel

  configure: error: Please reinstall the lib curl distribution

  代码如下:

  yum -y install curl-devel

  configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.

   代码如下:

  yum -y install net-snmp-devel

  configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

   代码如下:

  yum -y install libxslt-devel

  checking for BZip2 support… yes checking for BZip2 in default path… not found configure: error: Please reinstall the BZip2 distribution

  Fix:

   代码如下:

  yum -y install bzip2-devel

  checking for cURL support… yes checking if we should use cURL for url streams… no checking for cURL in default path… not found configure: error: Please reinstall the libcurl distribution – easy.h should be in/include/curl/

  Fix:

   代码如下:

  yum -y install curl-devel

  checking for curl_multi_strerror in -lcurl… yes checking for QDBM support… no checking for GDBM support… no checking for NDBM support… no configure: error: DBA: Could not find necessary header file(s).

  Fix:

   代码如下:

  yum -y install db4-devel

  checking for fabsf… yes checking for floorf… yes configure: error: jpeglib.h not found.

  Fix:

    代码如下:

  yum -y install libjpeg-devel

  checking for fabsf… yes checking for floorf… yes checking for jpeg_read_header in -ljpeg… yes configure: error: png.h not found.

  Fix:

   代码如下:

  yum -y install libpng-devel

  checking for png_write_image in -lpng… yes If configure fails try –with-xpm-dir=

  configure: error: freetype.h not found.

  Fix:

   代码如下:

  Reconfigure your PHP with the following option. --with-xpm-dir=/usr

  checking for png_write_image in -lpng… yes configure: error: libXpm.(a|so) not found.

  Fix:

   代码如下:

  yum -y install libXpm-devel

  checking for bind_textdomain_codeset in -lc… yes checking for GNU MP support… yes configure: error: Unable to locate gmp.h

  Fix:

   代码如下:

  yum -y install gmp-devel

  checking for utf8_mime2text signature… new checking for U8T_DECOMPOSE… configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.

  Fix:

       代码如下:

  yum -y install libc-client-devel

  checking for LDAP support… yes, shared checking for LDAP Cyrus SASL support… yes configure: error: Cannot find ldap.h

  Fix:

   代码如下:

  yum -y install openldap-devel

  checking for mysql_set_character_set in -lmysqlclient… yes checking for mysql_stmt_next_result in -lmysqlclient… no checking for Oracle Database OCI8 support… no checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found!

  Fix:

  代码如下:

  yum -y install unixODBC-devel

  checking for PostgreSQL support for PDO… yes, shared checking for pg_config… not found configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path

  Fix:

   代码如下:

  yum -y install postgresql-devel

  checking for sqlite 3 support for PDO… yes, shared checking for PDO includes… (cached) /usr/local/src/php-5.3.7/ext checking for sqlite3 files in default path… not found configure: error: Please reinstall the sqlite3 distribution

  Fix:

   代码如下:

  yum -y install sqlite-devel

  checking for utsname.domainname… yes checking for PSPELL support… yes configure: error: Cannot find pspell

  Fix:

   代码如下:

  yum -y install aspell-devel

  checking whether to enable UCD SNMP hack… yes checking for default_store.h… no

  checking for kstat_read in -lkstat… no checking for snmp_parse_oid in -lsnmp… no checking for init_snmp in -lsnmp… no configure: error: SNMP sanity check failed. Please check config.log for more information.

  Fix:

   代码如下:

  yum -y install net-snmp-devel

  checking whether to enable XMLWriter support… yes, shared checking for xml2-config path… (cached) /usr/bin/xml2-config checking whether libxml build works… (cached) yes checking for XSL support… yes, shared configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

  Fix:

   代码如下:

  yum -y install libxslt-devel

  configure: error: xml2-config not found. Please check your libxml2 installation.

  Fix:

   代码如下:

  yum -y install libxml2-devel

  checking for PCRE headers location… configure: error: Could not find pcre.h in /usr

  Fix:

  代码如下:

  yum -y install pcre-devel

  configure: error: Cannot find MySQL header files under yes. Note that the MySQL client library is not bundled anymore!

  Fix:

   代码如下:

  yum -y install mysql-devel

  checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h' not found!

  Fix:

   代码如下:

  yum -y install unixODBC-devel

  checking for pg_config… not found configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path

  Fix:

   代码如下:

  yum -y install postgresql-devel

  configure: error: Cannot find pspell

  Fix:

   代码如下:

  yum -y install pspell-devel

  configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.

  Fix:

  代码如下:

  yum -y install net-snmp-devel

  configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution

  Fix:

   代码如下:

  yum -y install libxslt-devel

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1007636.htmlTechArticlePHP编译安装时常见错误解决办法 这篇文章主要介绍了PHP编译安装时常见错误解决办法,本文涵盖了PHP编译安装中的大多数错误,同时给出解决...
声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
如何使PHP应用程序更快如何使PHP应用程序更快May 12, 2025 am 12:12 AM

tomakephpapplicationsfaster,关注台词:1)useopcodeCachingLikeLikeLikeLikeLikePachetoStorePreciledScompiledScriptbyTecode.2)MinimimiedAtabaseSqueriSegrieSqueriSegeriSybysequeryCachingandeffeftExting.3)Leveragephp7 leveragephp7 leveragephp7 leveragephpphp7功能forbettercodeefficy.4)

PHP性能优化清单:立即提高速度PHP性能优化清单:立即提高速度May 12, 2025 am 12:07 AM

到ImprovephPapplicationspeed,关注台词:1)启用opcodeCachingwithapCutoredUcescriptexecutiontime.2)实现databasequerycachingusingpdotominiminimizedatabasehits.3)usehttp/2tomultiplexrequlexrequestsandredececonnection.4 limitsclection.4.4

PHP依赖注入:提高代码可检验性PHP依赖注入:提高代码可检验性May 12, 2025 am 12:03 AM

依赖注入(DI)通过显式传递依赖关系,显着提升了PHP代码的可测试性。 1)DI解耦类与具体实现,使测试和维护更灵活。 2)三种类型中,构造函数注入明确表达依赖,保持状态一致。 3)使用DI容器管理复杂依赖,提升代码质量和开发效率。

PHP性能优化:数据库查询优化PHP性能优化:数据库查询优化May 12, 2025 am 12:02 AM

databasequeryOptimizationinphpinvolVolVOLVESEVERSEVERSTRATEMIESOENHANCEPERANCE.1)SELECTONLYNLYNESSERSAYCOLUMNSTORMONTOUMTOUNSOUDSATATATATATATATATATATRANSFER.3)

简单指南:带有PHP脚本的电子邮件发送简单指南:带有PHP脚本的电子邮件发送May 12, 2025 am 12:02 AM

phpisusedforsenderemailsduetoitsbuilt-inmail()函数andsupportiveLibrariesLikePhpMailerandSwiftMailer.1)usethemail()functionforbasicemails,butithasimails.2)butithasimimitations.2)

PHP性能:识别和修复瓶颈PHP性能:识别和修复瓶颈May 11, 2025 am 12:13 AM

PHP性能瓶颈可以通过以下步骤解决:1)使用Xdebug或Blackfire进行性能分析,找出问题所在;2)优化数据库查询并使用缓存,如APCu;3)使用array_filter等高效函数优化数组操作;4)配置OPcache进行字节码缓存;5)优化前端,如减少HTTP请求和优化图片;6)持续监控和优化性能。通过这些方法,可以显着提升PHP应用的性能。

PHP的依赖注入:快速摘要PHP的依赖注入:快速摘要May 11, 2025 am 12:09 AM

依赖性注射(DI)InphpisadesignPatternthatManages和ReducesClassDeptions,增强量产生性,可验证性和Maintainability.itallowspasspassingDepentenciesLikEdenceSeconnectionSeconnectionStoclasseconnectionStoclasseSasasasasareTers,interitationApertatingAeseritatingEaseTestingEasingEaseTeStingEasingAndScalability。

提高PHP性能:缓存策略和技术提高PHP性能:缓存策略和技术May 11, 2025 am 12:08 AM

cachingimprovesphpermenceByStorcyResultSofComputationsorqucrouctationsorquctationsorquickretrieval,reducingServerLoadAndenHancingResponsetimes.feftectivestrategiesinclude:1)opcodecaching,whereStoresCompiledSinmememorytssinmemorytoskipcompliation; 2)datacaching datacachingsingMemccachingmcachingmcachings

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

Video Face Swap

Video Face Swap

使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

功能强大的PHP集成开发环境

EditPlus 中文破解版

EditPlus 中文破解版

体积小,语法高亮,不支持代码提示功能

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

适用于 Eclipse 的 SAP NetWeaver 服务器适配器

将Eclipse与SAP NetWeaver应用服务器集成。

螳螂BT

螳螂BT

Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。