PHP5.3.1 不再支持ISAPI
PHP5.3.1 不再支持ISAPI
发布时间:2016-12-29 来源:查字典编辑
摘要:要在IIS6上使用高版本PHP,必须安装fastCGI扩展,MicrosoftFastCGIExtensionforIIS5.1and6.0...

要在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%system32inetsrvfcgiconfig.js -add -section:"PHP" ^

-extension:php -path:"C:PHPphp-cgi.exe"

将C:PHPphp-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 .librariesselect_lang.lib.php#147

eregi() is deprecated

Backtrace

.librariesselect_lang.lib.php#147: eregi()

.librariesselect_lang.lib.php#81: PMA_langDetect(

string zh-cn,

integer 1,

)

.librariesselect_lang.lib.php#361: PMA_langCheck()

.librariescommon.inc.php#560: require_once(.librariesselect_lang.lib.php)

.index.php#34: require_once(.librariescommon.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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类