时间:2021-05-26
要在IIS6上使用高版本PHP,必须安装fastCGI扩展,
Microsoft FastCGI Extension for IIS 5.1 and 6.0
然后让你的IIS6支持fastCGI即可。
然后设定一下php.ini中的CGI and FastCGI参数:
fastcgi.impersonate = 1
fastcgi.logging = 0
cgi.fix_pathinfo=1
cgi.force_redirect =0
cgi.rfc2616_headers=1
然后制作一个批处理文件,运行一下代码:
c %windir%\system32\inetsrv\fcgiconfig.js -add -section:"PHP" ^
-extension:php -path:"C:\PHP\php-cgi.exe"
将C:\PHP\php-cgi.exe替换成自己的安装路径!
如果你在使用phpMyadmin 3.1.0rc版,需要将.libraries/select_lang.lib.php 则需要将147,148行的
if (($envType == 1 && eregi('^(' . $expr . ')(;q=[0-9]\\.[0-9])?$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $expr . ')(;|\]|\))', $str))) {
更换为:
if (($envType == 1 && preg_match('^(' . $expr . ')(;q=[0-9]\\.[0-9])?$', $str))
|| ($envType == 2 && preg_match('(\(|\[|;[[:space:]])(' . $expr . ')(;|\]|\))', $str))) {
否则会报错:
in .\libraries\select_lang.lib.php#147
eregi() is deprecated
Backtrace
.\libraries\select_lang.lib.php#147: eregi()
.\libraries\select_lang.lib.php#81: PMA_langDetect(
string zh-cn,
integer 1,
)
.\libraries\select_lang.lib.php#361: PMA_langCheck()
.\libraries\common.inc.php#560: require_once(.\libraries\select_lang.lib.php)
.\index.php#34: require_once(.\libraries\common.inc.php)
另外注意:在IIS上安装PHP5.3.1,官方推荐Non-thread-safe build of PHP
下载地址:
PHP for Windows: Binaries and Sources Releases.
详细介绍:http://www.php.net/manual/en/install.windows.iis6.php
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Phphttp://windows.php.net/downloads/releases/php-5.3.1-Win32-VC9-x86.zipApacheht
正常情况下,我们在Windows系统中部署WEB服务器(iis)支持PHP是采用ISAPI通道。参照这篇文章“IIS环境下快速安装、配置和调试PHP
使用ISAPI方式安装PHP。下载连接:http://cn2.php.net/get/php-4.4.0-Win32.zip/from/cn.php.net/m
2,查找;extension=php_mysql.dll,将前面的引号“;”去掉。3,iis加载的是不是php5isapi.dll,不是
微软内部PHP项目经理DaleHirt近日在邮件列表中宣布,Windows将不再提供PHP官方支持。目前微软在Windows上通过开发和构建PHP7.3和PHP