Installing PHP 5 on IIS in 5 simple steps

Categories:

Set the PHP Application Mapping in IIS

Before IIS will parse PHP scripts, you must first create an application mapping for PHP. This application mapping basically tells IIS what ISAPI dll, or CGI executable to use to process files of a certain file extension (in this case .php). There are two ways in which we can do this, via the command line or via the IIS MMC snap in. I'm going to show you how to do both.

As this is a universal PHP installation guide for IIS 5.0, 5.1 and 6.0 there are limited universal ways in which to add the PHP application mapping via the command line. What ever you do though do not use the adsutil.vbs script to try and add you PHP application mapping, at least not without understanding it's limitations. When you add/delete an application mapping with adsutil.vbs there is no way you can add/delete a single item at a time. So by using adsutil.vbs to add an application mapping you will effectively delete every other mapping at that level. However, what you can do is use David Wang's awesome chglist.vbs script to add the PHP application mapping without effecting existing mappings. You can download this script from David's old blog or from the bottom of this page. Once you have saved the script, simply open a command window and change into the directory that contains your script and type this in;

chglist.vbs W3SVC/ScriptMaps "" ".php,D:\PHP\php5isapi.dll,5" /INSERT /COMMIT

This will add the PHP ISAPI script map to the root of the IIS metabase, and any sites created after adding this script will automatically inherit it. If you want to add the PHP application mapping to a specific website then you will need to modify the W3SVC/ScriptMaps section of the command to suite. If none of this makes sense at all, don't worry because all this can be done using the GUI as well which we will cover now.

  • Open the IIS MMC and right click on the Web Sites container (or click on any specific website you wish to add PHP to) and select the properties menu item


figure 6

  • Once the Web Sites Properties window opens select the Home Directory tab and click the Configuration button as shown below in figure 7.


figure 7

  • This will bring you to the Application Configuration window. Click the Add button at the bottom to add the PHP application mapping as shown below in figure 8.


figure 8

  • In the Extension field enter .php and then click on the browse button in the top right and select the php5isapi.dll file from inside you PHP installation directory (e.g D:\PHP). The default is to accept all verbs, but if you wish you can limit the verbs to tighten security for you PHP application mapping. Ensure that the Script engine and Check that file exists options as ticked and then press ok until you exit the properties windows.


figure 9

That is it, IIS should now be configured to serve PHP content. There is one exception though and that is if you are using IIS 6 then you will also need to configure a Web Extension, so if you are using IIS 5.0 or 5.1 you can proceed onto the next section. You can set the Web extension via command line using iisext.vbs or via the Gui. Using the iisext.vbs at the command prompt you'll need to type in this, but be sure to change the path to php5isapi.dll to suit your environment ;

iisext.vbs /AddFile D:\php\php5isapi.dll 1 PHP5ISAPI 1 "PHP 5 ISAPI"

To add the extension via the GUI, read on;

  • Open the IIS MMC and expand the server tree. Right click on the Web Service Extensions option and select the Add a new Web service extension option.


figure 10

  • In the Extension name field put in a descriptive name, such as PHP 5 ISAPI as shown below in figure 11. Make sure the Set extension status to Allowed option is checked and then click the Add button.


figure 11

  • In the Add file window click the Browse button and navigate to your PHP installation directory and select the php5isapi.dll file as shown below in figure 12. Then click the ok button until you exit back into the IIS MMC.


figure 12

All done, now your IIS 6 web server is all set to serve PHP content.

Comments

Anonymous's picture

Excellent Guide

This is fourth set of instructions that I am looking at to get PHP to work. For some reason mmc.exe would stall each time I would attempt to use Window's IIS GUI to associate .php with the dll. Hence the IIS would not parse the php pages.

Running that VB script did the trick (I just had to modify the Root directory letter once the script was finished).

Thank you for such an excellent guide.

Brashquido's picture

No problem, glad it was

No problem, glad it was useful for you.

Anonymous's picture

PHP5 and MySQL5

Thanks for your good job. Your guide was a precious help. Thanks to it I could finally install PHP5 with MySQL5 on IIS. Really nice work!

Anonymous's picture

Is it just me?

Or are the graphics in this post broken?

Brashquido's picture

It's not just you, the

It's not just you, the images are not being displayed for some reason. Have a feeling that my server side HTTP cache might have an issue or two. I'll fix it tonight when I get home, so check back again in around 12 hours or so. Thanks for letting me know :)

*EDIT*

Should be working again now :)

Anonymous's picture

prompt for downloading .php file

Great tut!

but if i do all the steps and test it at the end, internet explorer prompt to download the .php file... :-S

It is in the root of the webserver, tried other locations too, but with the same result...

any explenation??

tnx

Brashquido's picture

Do you have a mime type

Do you have a mime type setup for PHP?

Anonymous's picture

To make things a little more clear

You can't do an include or a virtual include to test the php page for some reason that didn't work. Alll I did was made an <a href> tag that references the phpinfo.php page in the default.htm of the server directory and clicked on it to test the php implement.

Anonymous's picture

Spelling and Grammar

Check your spelling and grammar. Readers may loose confindence in the technical portion of the article if the non-technical language has spelling and grammars errors.

Anonymous's picture

Promt for downloading .php file

I get the same problem, I have made a href i another html file where I link to the php file, and yet it wants to download the file. I use IIS 5.1, followed all the steps.