Install PHP with Microsoft Web Platform Installer 2.0

While the task of setting up PHP on IIS was not a difficult one, it anyway required a lot of manual installation and configuration steps. With the PHP 5.2.9-1 release the PHP development community has put a lot of improvements to the PHP installer to make it easy to setup PHP on IIS 5.1, IIS 6.0 and IIS 7.0. The latest PHP installer can be downloaded from the PHP community site.

Now, with the release of Microsoft Web Platform Installer 2.0 Beta (Web PI), the task of enabling PHP on Windows OS has become the easiest it has ever been. Here are the three simple steps you need to follow:

  1. Go to http://php.iis.net/
  2. Click on the big blue button “Click to Install PHP on IIS”.
    PHP on IIS7: The Official Microsoft IIS site
    This will prompt you to install Web Platform Installer 2.0 Beta if you do not have it already.
  3. After Web Platform Installer is launched the PHP option will be automatically selected. Click Install button to start the installation.
    PHP in WebPI
    Note: on a very first run of Web PI, the PHP option might be not selected automatically. In that case you can manually select it under: “Web Platform”/”Frameworks and Runtime” category.

The nice thing about this installation process is that Web PI knows about all the dependencies for PHP and it will download and install all the required components prior to installing PHP itself. For example, if you are installing PHP on Windows XP with IIS 5.1, then WebPI will download and install FastCGI extension. If PHP is being installed on Windows Server 2008, then Web PI will enable FastCGI module, which is built-in to IIS 7.

Finally Web PI will download and run the installer for non-thread-safe build of PHP 5.2.9-1 from http://windows.php.net/download/. PHP installer will perform all the necessary configurations steps in PHP, IIS and FastCGI. So by the end of the installation process you will have the IIS and PHP ready to run your PHP applications on Windows.

6,173 views

ruslany on March 26th 2009 in FastCGI, PHP

PoorFairAverageGoodExcellent (2 votes, average: 5.00 out of 5)

9 Responses to “Install PHP with Microsoft Web Platform Installer 2.0”

  1. Gravatar ImageInstall Museum » Blog Archive » Microsoft Web Platform Installer 2.0 responded on 03 Apr 2009 at 10:25 pm #

    [...] Microsoft Web Platform Installer 2.0 [...]

  2. Gravatar ImageFirst Blood Using the New Microsoft Web Platform Installer | PeterKellner.net responded on 04 Apr 2009 at 8:57 am #

    [...] Found this link:  Install PHP with Microsoft Web Platform Installer 2.0 [...]

  3. Gravatar ImageMJG responded on 20 Apr 2009 at 10:54 am #

    Didn’t work so seemlessly on my system. Left the server unable to properly parse PHP files. Have you seen this behavior before?

  4. Gravatar Imageruslany responded on 20 Apr 2009 at 7:17 pm #

    MJG, did this happen on a clean machine? Or did you have the PHP installed before in any form (e.g ISAPI or FastCGI)?

    What’s the actual error behavior that you see? Do you see any error messages?

  5. Gravatar ImageAbraham responded on 22 Jun 2009 at 8:23 pm #

    I had the same problem MJG, did u resolve it?, I installed PHP from the Platform Installer but my php files doesn’t work. Did I miss something?

    Best regards

  6. Gravatar Imageruslany responded on 24 Jun 2009 at 3:13 pm #

    To help in figuring out what went wrong, try installing PHP without Web PI. Download the non-thread-safe PHP msi. Then run it from the elevated command prompt window by using this command:

    msexec /i php-5.2.10-nts-Win32-VC6-x86.msi /l* C:\install.log

    After that, open the C:\install.log file and look for strings “error” and “fail”.

  7. Gravatar ImageJon Hart responded on 14 Jul 2009 at 11:26 am #

    The WPI package does not setup a file mapping for PHP files.
    All of the instructions I found online use the isapi dll for integration, which I was unable to find in the install. It turns out that it doesnt use isapi, but rather fastcgi.

    To get PHP working you may need to create a mapping from .php extension to fcgiext.dll

  8. Gravatar Imageruslany responded on 14 Jul 2009 at 12:51 pm #

    WPI package uses the PHP installer, which is supposed to setup script mapping for PHP files. If script mapping is not there, then you can use these instructions to set it up on IIS7 or IIS5.1 and IIS 6.0.

  9. Gravatar ImageSalman responded on 14 Nov 2009 at 2:31 am #

    Yes, it didn’t work for me too. The only reason I tried this install was to avoid any configuration but I ended up doing the configuration manually:

    In IIS Management Console:
    1. Open properties of Default Web Site.
    2. Select the Home Directory and click Configuration button.
    3. Click Add on the Mappings tab, browse for C:\WINDOWS\system32\inetsrv\fcgiext.dll, set Extension to “.php”, set Limit to “GET,HEAD,POST”, check Script engine
    4. Click OK
    5) Restart IIS

    Additionally, on IIS6 and later, you need to “enable” this CGI extension.

Trackback URI | Comments RSS

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

XML Markup: If You want to add XML code to the comment please XML encode it first, otherwise the code will not show up.

Recently Published Articles