It's been a while since I've installed PHP for Windows, but every guide I've seen online tells me to set IIS to recognize .PHP files with php5isapi.dll. However, I can't seem to find php5isapi.dll anywhere after installing PHP 5.3.0 and PHP 5.2.10.

If I recall correctly it should be in C:\InstallDir

Am I missing something important?

link|improve this question

feedback

5 Answers

Fastcgi replaced php5isapi.dll

link|improve this answer
1  
And why - for heaven's sake - doesn't install.txt (or any other doc for that matter) mention that with a single word? Neither the installation howto nor any other readme for PHP 5.3 says that ISAPI is replaced by CGI. So far Fastcgi was an alternative for ISAPI, or vice versa. Just omitting one doesn't make the other a replacement. – user255066 Jan 20 '10 at 16:40
1  
And here's a link to a great article on getting PHP configured on IIS6. Follow these steps and it works perfectly. learn.iis.net/page.aspx/247/… – Paul Prewett Aug 12 '11 at 17:43
I think FastCGI is a step backwards, but here is the link to them saying that it is dead: bugs.php.net/bug.php?id=48299 It is irritating that they decided to drop support, yet leave pieces parts of it around, hinting that they just forgot to compile it. – Brain2000 Mar 19 at 16:07
feedback
up vote 3 down vote accepted

I would try downloading the binaries (rather than the installer). I found php5isapi.dll in those zips, but the .exe/.msi doesn't seem to install that dll.

link|improve this answer
2  
If you download the binary zip file from windows.php.net/download the php5isapi.dll is in the 5.2.1.4 release, but seems to be missing from the 5.3.3 release. – njplumridge Aug 24 '10 at 12:52
1  
Why is this marked as the answer, the latest version (yes, of the binaries, as noted by the comment above) does not contain this .dll file. Comments below on it being replaced by "FastCGI" seem more correct than "Oh it's cool, just run an out of date version." -- Though seriously, CGI seems like a huge step backwards... – BrainSlugs83 Sep 4 '11 at 6:47
1  
I guess I could change the question title. It should really be "Where can I find php5isapi.dll? And secondarily, why is it not where the docs say it is?" At the time (2 years ago) I really didn't care about getting FastCGI to work, I just wanted IIS + PHP to work. – Brandon O'Rourke Sep 7 '11 at 21:26
feedback

Ironically, in the PHP 5.3.5 (Non Thread Safe, & Thread Safe) ZIPs you will find the "pws-php5isapi.reg" file. This registry key even mentions the php5isapi.dll file and setting it to the path of your PHP install. However, the ZIPs do not contain the dll file. Kind of an odd registry key to leave haging around if FastCGI is the only way to go now. Here's an article on Microsoft: http://technet.microsoft.com/en-us/library/dd450377(WS.10).aspx

link|improve this answer
feedback

The path is : C:\PHP\php5isapi.dll

EDIT : A step-by-step guide.

link|improve this answer
2  
It looks like the binary versions don't install php5isapi.dll, which was my problem. – Brandon O'Rourke Aug 5 '09 at 20:53
AFAIK, you can download the DLL alone. – Moayad Mardini Aug 5 '09 at 21:22
That is the path if it were there, but it is not if you had read the thread. – cazlab Mar 19 at 0:14
feedback

FastCGI 1 take option FastCGI when install php 2 start IIS, add mapping (asignacion de controladores) ext FastCGI restart

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.