#########################################################################
4、install php 4.4.7
shell> tar -zxvf php-4.4.7.tar.gz
shell> cd php-4.4.7
shell> ./configure --prefix=/usr/local/src/php-4.4.7 --with-apxs2=/usr/local/httpd/bin/apxs --with-config-file-path=/usr/local/src/php-4.4.7 --enable-sockets --with-mysql=/usr/local/mysql/ --with-zlib-dir=/usr/local/lib --with-png-dir=/usr/local/lib --with-gd --enable-mbstring
shell> make
shell> make install
shell> ln -s /usr/local/src/php-4.4.7 /usr/local/php4
shell> cp php.ini-dist /usr/local/php4/php.ini \\# 这个路径与你刚刚在 ./configure 当中那个 --with-config-file-path 设定有关!
shell> vi /usr/local/httpd/conf/httpd.conf
# 找到底下两行:
LoadModule php4_module modules/libphp4.so <==大约在 231 行处
AddType application/x-httpd-php .php <==这一行可以在 847 行处自行增加!
shell> apachectl stop
shell> apachectl start
shell> netstat -tln | grep 80
#############################################################################################
OK,基本的安装已经完成,如果重新起动APACHE出现:/usr/local/apache2/bin/apachectl start Syntax error on line 232 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp4.so into server: /usr/local/apache2/modules/libphp4.so: cannot restore segment prot after reloc: Permission denied
###
###关闭SELINUX
###
shell> vi /etc/selinux/config
#SELINUX=enforcing
SELINUX=disabled
shell> vi /etc/sysconfig/selinux
#SELINUX=enforcing
SELINUX=disabled
如果你碰到其他类似提示:
cannot restore segment prot after reloc: Permission denied
哪应该是SELinux的问题,可以考虑把它关闭.
#############################################################################################
#############################################################################################
##
############################################################################################# |