编译安装hph
Posted 蒋乐兴的技术随笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装hph相关的知识,希望对你有一定的参考价值。
一、安装相关的依赖:
yum -y install gcc gcc-c++ bzip2-devel libjpeg-devel libpng-devel freetype-devel libxml2-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/httpd.conf 增加 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的主要内容,如果未能解决你的问题,请参考以下文章
linux架构学习第二十七天 编译安装LAMP(php-fpm)
Android 逆向Android 逆向通用工具开发 ( Android 平台运行的 cmd 程序类型 | Android 平台运行的 cmd 程序编译选项 | 编译 cmd 可执行程序 )(代码片段