码迷,mamicode.com
首页 > 其他好文 > 详细

编译安装hph

时间:2016-06-18 15:33:06      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

一、安装相关的依赖:

yum -y install gcc gcc-c++ bzip2-devel libjpeg-devel libpng-devel freetype-devel

 

二、解压php安装包php-5.6.22.tar.gz

tar -xzvf php-5.6.22.tar.gz -C/usr/src/

 

三、编译安装php

cd /usr/src/php-5.6.22/
./configure --prefix=/usr/local/php5.6/ --with-config-file-path=/usr/local/php5.6/etc --with-config-file-scan-dir=/usr/local/php5.6/etc/php.d --with-mysql=/usr/local/mysql/ --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --enable-bcmath --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-apxs2=/usr/local/httpd/bin/apxs  --with-bz2 --enable-maintainer-zts --with-gd --with-gettext && make && make install

 

四、查看模块的php是否安装成了httpd的模块

ll /usr/local/httpd/modules/ | grep --color php

 

五、复制php的配置文件

cp /usr/src/php-5.6.22/php.ini-production /usr/local/php5.6/etc/php.ini

 

六、修改httpd的配置文件使httpd能处理php文件

vim /usr/local/httpd/conf/http.conf/http
增加
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

修改
DirectoryIndex index.php index.html

 

七、制做一个首页文件index.php用于测试php是否安装成功

mv /usr/local/httpd/htdocs/index.html /usr/local/httpd/htdocs/index.php

vim /usr/local/httpd/htdocs/index.php
<html>
<head>
</head>
<body>
<?php 
phpinfo();
?>
</body>
</html>

 

八、启动httpd并查看php页面是否生效

技术分享

 

编译安装hph

标签:

原文地址:http://www.cnblogs.com/JiangLe/p/5596219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!