三、PHP脚本语言(PHP Ver5.0.3)
PHP v5.0.3 For Linux
PHP是一种新型的CGI程序编写语言,易学易用,运行速度快,可以方便快捷地编写出功能强大,运行速度快,并可同时运行于Windows、Unix、 Linux 平台的Web后台程序。
下载地址:
1、解压缩文件至/usr/local/src/
2、进入目录
#cd /usr/local/src/php-5.0.3
3、配置
#./configure --prefix=/usr/local/php5 --with-mysql=/usr/local/mysql --with-mail --with-apxs2=/usr/local/apache/bin/apxs
4、编译
#make
5、安装
#make install
6、复制php.ini文件
#cp php.ini-dist /usr/local/lib/php.ini
7、编辑/usr/local/apache/conf/httpd.conf
(1)397附近DirectoryIndex行中加入index.php
DirectoryIndex index.php index.html index.html.var index.htm
(2)827附近的#AddType application/x-tar .tgz下方加入两行:
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
8、测试
(1)删除/var/www/html/下index.*文件,编辑index.php保存到这里,内容为:
<?
phpinfo();
?>
(2)重启web服务器
#httpd -k stop
#httpd -k start
(3)Firefox地址栏输入,回车。
看到PHP5配置表了吗?OK,稍事休息,我们还有许多工作要做呢。
RHEL AS 4下web服务器安装调试详细教程(3)
内容版权声明:除非注明,否则皆为本站原创文章。