欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Windows Server 2003 IIS6.0+FastCGI+PHP

程序员文章站 2022-07-15 11:06:22
...

记录一次坑,参考了挺多文章终于搭完了

搭建环境:Windows Server 2003 SP2

Windows Server 2003 IIS6.0+FastCGI+PHP

0x01

安装完Windows Server 2003后,菜单->控制面板->添加或删除应用程序
Windows Server 2003 IIS6.0+FastCGI+PHP
选择添加/删除组件,找到应用程序服务器勾选上,然后一直下一步即可。
安装完成后在管理工具出现(IIS管理器),说明IIS安装完成

Windows Server 2003 IIS6.0+FastCGI+PHP
打开就可以看到此界面,默认时只有默认网站的,这里我添加了一个Test网站。
Windows Server 2003 IIS6.0+FastCGI+PHP

0x02

进行PHP环境配置
https://windows.php.net/downloads/releases/
自己选择想要的版本,由于是2003的服务器,所以不支持PHP5.5以上的。
这里为了方便,选择了5.3.8,因为它有msi版本,这个版本与zip其实差不多,只是zip需要手动配置php.ini,msi版本都不需要。
大概翻了一下,发现5.4以后的版本都只有zip
安装的详细过程参考https://blog.csdn.net/iteye_17726/article/details/81918595
由于我之前的就已经安装了FastCGI,所以我不知道msi版本是否有附带安装FastCGI,猜测应该是有的。
FastCGI下载:http://www.iis.net/download/fastcgi
安装完成后就可以发现,在Web服务扩展多了FastCGI Handler
Windows Server 2003 IIS6.0+FastCGI+PHP
FastCGI的默认安装路径为:C:\Windows\system32\inetsrv
找到FastCGI的配置文件:fcgiext.ini
在最后修改:

[Types]
php=PHP

[PHP]
Exepath=C:\PHP\php-cgi.exe 

Exepathphp-cgi.exe的绝对路径

0x03

最后添加环境
Windows Server 2003 IIS6.0+FastCGI+PHP
Windows Server 2003 IIS6.0+FastCGI+PHP
Windows Server 2003 IIS6.0+FastCGI+PHP
Windows Server 2003 IIS6.0+FastCGI+PHP
找到FastCGIfcgiext.dll文件
Windows Server 2003 IIS6.0+FastCGI+PHP
扩展名为.php
Windows Server 2003 IIS6.0+FastCGI+PHP
Windows Server 2003 IIS6.0+FastCGI+PHP
最后来到文档->添加->键入index.php
Windows Server 2003 IIS6.0+FastCGI+PHP
环境配置完成
Windows Server 2003 IIS6.0+FastCGI+PHP

参考文献:

https://blog.csdn.net/wudi343/article/details/9025315
https://blog.csdn.net/iteye_17726/article/details/81918595
https://www.cnblogs.com/shanyou/archive/2010/11/07/1871262.html
https://www.cnblogs.com/cblx/p/4171634.html

相关标签: 环境搭建 php