当前位置:Gxlcms > PHP教程 > HowtoinstallPHPISAPIonWindows2008IIS7x64<转载>

HowtoinstallPHPISAPIonWindows2008IIS7x64<转载>

时间:2021-07-01 10:21:17 帮助过:11人阅读

With the release of Windows Server 2008 and IIS 7, Microsoft has included PHP5 FASTCGI support. ISAPI is still faster in my opinion, and if used correctly, very stable. PHP uses a 32-bit DLL so it will not work with an x64 system. There are several ports of PHP to x64, but all have proved to be unstable. Below I will outline the steps to install PHP 32-bit on Windows 2008 x64 (and have it stable).

Install the PHP4 or PHP5 package (32-bit) in C:\PHP or wherever you like. Only use the Windows installer from php.com if you do not need any extensions. I would recommend downloading the PHP zip package. Update April 2010: The VC6 x86 Thread Safe package is ideal for ISAPI. If you are going to use FastCGI, download the VC6 x86 Non Thread Safe package. Open the Internet Information Services (IIS) Manager. Double-click “Handler Mappings” from the main IIS screen. Click on “Add Script Map.” Set up the handler mapping for c:\PHP\php5isapi.dll with extension *.php and check to allow the ISAPI extension and execution of scripts. Double-click “ISAPI & CGI Restrictions” on the main IIS screen. Right-click on PHP and select “Edit Feature Settings” and check “Allow unspecified ISAPI modules.” Right-click on the Default Application Pool (or the one you want to use if more than one) and select “Advanced Settings.” Change the “Enable 32-bit Applications” to True. Click OK. This spawns the App Pool in 32-bit mode, so if you have other modules that need to be run in 64-bit mode, best to separate the website into two App Pools: one 32-bit and one 64-bit. Restart the server.

人气教程排行