打印本文 打印本文  关闭窗口 关闭窗口
如何在98上支持cgi,php,asp,mysql
作者:采集员 文章来源:来源于网络 点击数: 更新时间:2005/9/10 13:44:50
如何在98上支持cgi,php,asp,mysql
首先安装win98的pws,在安装perl(下载perl),在安装php4(下载).asp呢?pws本身就有了.

pws,98盘中就有

eNet软件站点 全部软件

安装mysql(下载mysql)

在注册表HEKY_LOCAL_MACHINESystemCurrentControlSetServicesW3SVCparametersScript Map

中加入 .cgi "c:/perl/bin/perl.exe %s %s"
.pl "c:perlinperl.exe %s %s"
.php "c:php4sapiphp4isapi.dll"
.php3 "c:php4sapiphp4isapi.dll"
.php4 "c:php4sapiphp4isapi.dll"
.phtml "c:php4sapiphp4isapi.dll"

php4的设置:
把php4安装到c:php4目录 copy php4ts.dll c:windowssystem
更改php.ini.dist成php.ini
编辑php.ini文件,找到 doc_root=c:php4,找到extension_dir = C:php4extensions完后存盘
copy php.ini c:windows

从新启动计算机一切ok

pws属性中选高级/编辑属性,读取,执行,脚本,全打钩

测试php:编辑test.php 加入存盘到c:Inetpubwwwroot目录下,在ie中localhost/test.php能看到xiaoyuan,php4就算成功了

测试cgi:编辑test.cgi 加入#!c:/perl/bin/perl
print "Content-type:text/htmlnn";
print"恭喜!CGI程序运行成功了!";
存到c:Inetpubwwwroot目录下,在ie中localhost/test.cgi能看到恭喜!CGI程序运行成功了的字样就成功了

安装mysql:setup默认安装就行了
测试mysql,c:mysqlmysqld-shareware.exe启动mysql在敲入mysql.exe进入sql了吗?:) 



打印本文 打印本文  关闭窗口 关闭窗口