为了账号安全,请及时绑定邮箱和手机立即绑定

PHP安装

标签:
PHP

下载php:

[rot@localhost httpd-2.2.16]# cd /usr/local/src[root@localhost src]# wget http://am1.php.net/distributions/php-5.3.27.tar.gz

解压:

[root@localhost src]# tar zxf php-5.3.27.tar.gz

配置编译参数:

[root@localhost src]# cd php-5.3.27
[root@localhost php-5.3.27]# ./configure \

--prefix=/usr/local/php \

--with-apxs2=/usr/local/apache/bin/apxs \

--with-config-file-path=/usr/local/php/etc  \
--with-mysql=/usr/local/mysql \
--with-libxml-dir \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-iconv-dir \
--with-zlib-dir \
--with-bz2 \
--with-openssl \
--with-mcrypt \
--enable-soap \
--enable-gd-native-ttf \
--enable-mbstring \
--enable-sockets \
--enable-exif \
--disable-ipv6



error: jpeglib.h not found.

解决办法: yum install libjpeg-devel


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

解决办法: wget -P /etc/yum.repos.d/  http://mirrors.aliyun.com/repo/epel-6.repo

               yum install -y  libmcrypt-devel 

error: Please reinstall the BZip2 distribution

解决办法: yum install bzip2-devel.x86_64 -y

error: Cannot find OpenSSL's <evp.h>

解决办法: yum install openssl openssl-devel

               ln -s /usr/lib64/libssl.so /usr/lib/

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

解决办法:yum install libxml2-devel


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

解决方法:

解决办法一
1、安装第三方yum源
wget http://www.atomicorp.com/installers/atomic
sh ./atomic
2、使用yum命令安装

yum  install  php-mcrypt  libmcrypt  libmcrypt-devel

解决办法二、

使用php mcrypt 前必须先安装Libmcrypt

libmcrypt源码安装方法:


cd /usr/local/src

wget http://softlayer.dl.sourceforge.net/sourceforge/mcrypt/libmcrypt-2.5.8.tar.gz

tar -zxvf libmcrypt-2.5.8.tar.gz

cd /usr/local/src/libmcrypt-2.5.8

./configure --prefix=/usr/local

make

make install



configure: error: png.h not found.
复制代码 代码如下:
yum -y install libpng-devel

configure: error: freetype.h not found.
复制代码 代码如下:
yum -y install freetype-devel

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消