`
275553385
  • 浏览: 720453 次
  • 性别: Icon_minigender_1
  • 来自: 无锡
文章分类
社区版块
存档分类
最新评论

linux(centos5.5)下编译php时的一些典型错误及解决办法。

阅读更多
转载
configure: error: xml2-config not found. Please check your libxml2 installation.
yum install libxml2-devel


configure: error: Cannot find OpenSSL’s
yum install openssl-devel


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


configure: error: libjpeg.(a|so) not found
yum install libjpeg-devel


configure: error: libpng.(a|so) not found.
yum install libpng-devel


configure: error: libXpm.(a|so) not found.
yum install libXpm-devel


configure: error: freetype.h not found.
yum install freetype-devel


configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional information.
yum install libc-client-devel


configure: error: mcrypt.h not found. Please reinstall libmcrypt.
yum install libmcrypt-devel


configure: error: Please reinstall libmhash – I cannot find mhash.h
yum install mhash-devel


configure: error: Cannot find MySQL header files under /usr.
Note that the MySQL client library is not bundled anymore!
yum install mysql-devel


configure: error: Please reinstall ming distribution. libming.(a|so) not found
- temp remove the config for ‘–with-ming=/opt/ming/’

configure: error: Cannot find pspell
yum install pspell-devel


configure: error: cannot find mm library
Download from http://www.ossp.org/pkg/lib/mm/
wget ftp://ftp.ossp.org/pkg/lib/mm/mm-1.4.2.tar.gz
Extract it:  tar -zxvf mm-1.4.2.tar.gz
./configure
make
make install


configure: error: Cannot find libtidy
yum install libtidy-devel
yum install libtidy
change path at configure: ‘–with-tidy=/usr’


configure: error: not found. Please reinstall the expat distribution.
yum install expat-devel


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


*Tips: To uninstall, just enter:
yum remove {package-name}


Finally the compilation of php end with “Thank you for using PHP.”
分享到:
评论

相关推荐

    Centos5.5下安装LAMP完整版

    本文将深入解析如何在CentOS 5.5环境下安装LAMP堆栈,以及相关组件的配置细节。 ### 一、系统环境准备 首先,确保你的系统是CentOS 5.5,这是一个基于Linux内核的开源操作系统。此版本发布于2010年,虽然现在已经...

    LAMP在 CentOS5.5b上安装

    在CentOS 5.5b操作系统上安装LAMP涉及以下步骤: 一、准备工作 首先,确保系统具备必要的编译工具,如gcc、gcc-c++和make。这些工具可以通过`yum`包管理器安装。如果无法联网,可以使用安装光盘作为yum源。具体...

    centos5.5(5.6)最新lnmp安装步骤(php5.3.6+ng1.0.0+mysql5.5.12)

    在探讨CentOS 5.5(或5.6)上最新LNMP(Linux, Nginx, MySQL, PHP)环境的安装步骤时,我们聚焦于特定版本:PHP 5.3.6、Nginx 1.0.0以及MySQL 5.5.12。以下是对这些组件安装流程的深入解析,旨在为系统管理员和...

    CentOS5.5安装PHP环境步骤记录.pdf

    在本教程中,我们将详细探讨如何在CentOS 5.5操作系统上手动安装PHP环境,这是一个涉及多个依赖库和软件的复杂过程。首先,确保你的系统已经安装了必要的编译工具,包括`ntp`, `vim-enhanced`, `gcc`, `gcc-c++`, `...

    PHP+Apache+Mysql+Centos5.5安装图文教程

    在本教程中,我们将深入探讨如何在CentOS 5.5操作系统上安装PHP、Apache和MySQL,这是一个经典的LAMP(Linux、Apache、MySQL、PHP)堆栈,是开发Web应用程序的基础。以下是详细的步骤: 首先,确保你的系统是最新的...

    LAMP环境搭建_CentOS5.5版

    ### LAMP环境搭建_CentOS5.5版 在本篇文档中,我们将详细介绍如何在CentOS 5.5版本操作系统上搭建一个完整的LAMP(Linux + Apache + MySQL + PHP)工作平台。LAMP是一种非常流行的网站开发组合,广泛应用于各种规模...

    2012最新Lamp源码包安装过程(CentOS5.5版本)

    ### LAMP源码包安装详解(CentOS 5.5 版本) #### 一、基础知识简介 在深入了解具体的安装步骤之前,我们首先简要回顾一下LAMP的基本概念及其组成部分。 **LAMP**是一个开源软件堆栈,由四个主要部分组成:**...

    LAMP环境搭建(CentOS5.5版).doc

    【LAMP环境搭建(CentOS5.5版)】 在IT行业中,LAMP是指Linux、Apache、MySQL和PHP的组合,这是一个常见的Web开发平台。在CentOS 5.5操作系统上搭建LAMP环境,需要按照一定的步骤进行。以下是对整个过程的详细说明...

    CentOS 5.5使用yum来安装LAMP(php运行环境)

    本文将详细讲解如何在CentOS 5.5上使用`yum`包管理器来安装这个环境。 首先,为了确保安装过程顺利进行,我们需要更换CentOS的默认软件源。通常,原始的CentOS仓库可能较旧,不包含最新的软件包或更新。在这个例子...

    CentOS下安装Apache+MySQL+PHP5.5.0(源码安装)

    ### CentOS 下安装 Apache + MySQL + PHP5.5.0(源码安装) #### 知识点一:环境准备与配置 在开始安装之前,确保你的系统是 CentOS 6.3 64位版本,并且已经安装了必要的软件包管理工具 YUM (Yellowdog Updater ...

    lnmp源码编译安装脚本(centos6.5+)part4

    支持ssl,curl开启ssl支持,环境为nginx1.8.1+php5.6+mysql5.5,使用时请在根目录创建一个data目录,然后将源码包以及shell脚本复制到该目录,给install*文件可执行权限,然后依次执行对应脚本文件即可。

    LINUX下的LAMP编译安装(apache+php+mysql)归类.pdf

    本文档详细介绍了如何在CentOS 5.7 64位系统上通过源码编译的方式安装这四个组件。以下是具体步骤: 1. **移除系统自带的软件包** 在开始编译安装前,需要先移除系统中已有的Apache、MySQL、PHP相关的RPM包,以...

    Centos搭建PHP5.3.8+Nginx1.0.9+Mysql5.5.17

    解压并编译PHP,确保包含需要的模块,如mcrypt、gd等: ```bash tar -jxvf php-5.3.8.tar.bz2 cd php-5.3.8/ ./configure --prefix=/usr/local/php --with-config-file-path=/etc/...

    centos安装bphp

    请注意,由于CentOS 5.5版本较旧,一些库和软件可能不再维护或受到支持,因此推荐使用更新的CentOS版本,如CentOS 7或8,以便获得更好的安全性和兼容性。此外,现在大多数用户倾向于使用像`yum`或`dnf`这样的包管理...

    centos linux+apache+mysql+php+memcache+zend

    ### LAMP环境搭建详解:CentOS Linux + Apache + MySQL + PHP + Memcache + Zend #### 一、引言 ...以上就是关于CentOS Linux下LAMP环境的搭建过程及要点介绍,希望能帮助到广大初学者和开发者。

    LINUX下的LAMP编译安装(apache+php+mysql)[参照].pdf

    本教程将详细讲解如何在CentOS 5.7 64位系统上通过源代码编译安装这四个组件。首先,我们需要做一些准备工作,包括移除系统自带的包、安装必要的开发包以及配置用户权限。 1. **移除系统自带的包** 在开始编译安装...

    CentOS 搭建LAMP平台 + Web控制面板管理

    这里我们以CentOS 5.5为例,详细介绍如何搭建LAMP环境并安装Web控制面板。 首先,我们需要准备以下软件包: 1. MySQL数据库:mysql-5.0.21.tar.gz 2. Apache服务器:httpd-2.2.14.tar.gz 3. PHP解释器:...

    centos6.5编译安装LAMP环境.doc

    3. 配置并编译PHP: ``` ./configure --prefix=/usr/local/php \ --with-config-file-path=/usr/local/php/etc \ --with-apxs2=/usr/local/apache/bin/apxs \ --with-mysql=/usr/local/mysql \ --with-mysqli=...

    LINUX下的LAMP编译安装(apache+php+mysql)[参考].pdf

    以下是如何在CentOS 5.7(64位)上通过源码编译安装LAMP平台的详细步骤: 首先,确保系统是干净的,这意味着移除已经存在的Apache、MySQL和PHP的RPM包。这可以通过运行以下命令实现: ``` yum remove httpd mysql ...

Global site tag (gtag.js) - Google Analytics