Running PHP On IIS 5.1

Running PHP On IIS 5.1

am 18.04.2008 03:58:07 von Greg

Hi,

I've gotten to the point where I am more frustrated then anything and
just want to see this thing work. Although now I am thinking,
downloading and installing APACHE might be a 1,000,000 times faster.

Has anyone gotten PHP5.2.5 running on WinXP with IIS 5.1?

I have gone through the installer, gone through countless other
suggestions (ISAPI filter, running as a CGI).

And nothing seems to work. I finish doing the install (and
configuring and rebooting) and my php pages can run the phpinfo();
command, but anything else does not work.

When the pages do not work I get the "No input file specified" There
also seems to be some issues where the root directory will display
phpinfo(); correctly but any files under sub-directories will not.

I am not seeing any errors in my event logs... is there a PHP event
log somewhere?

Any suggestions would be great... it just seems like a lot of work do
after I have run an "installer".

Greg

Re: Running PHP On IIS 5.1

am 18.04.2008 07:02:48 von Macca

The best piece of advice you will EVER receive about running PHP with
IIS is... Don't bother!

You are right, using apache will be a million times better. More
manageable/configurable/compatible/robust/stable etc etc

Re: Running PHP On IIS 5.1

am 18.04.2008 12:18:54 von Jerry Stuckle

macca wrote:
> The best piece of advice you will EVER receive about running PHP with
> IIS is... Don't bother!
>
> You are right, using apache will be a million times better. More
> manageable/configurable/compatible/robust/stable etc etc
>

Nonsense. PHP works fine under IIS. I have it on several VPS's.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Running PHP On IIS 5.1

am 18.04.2008 12:26:10 von Jerry Stuckle

Greg wrote:
> Hi,
>
> I've gotten to the point where I am more frustrated then anything and
> just want to see this thing work. Although now I am thinking,
> downloading and installing APACHE might be a 1,000,000 times faster.
>
> Has anyone gotten PHP5.2.5 running on WinXP with IIS 5.1?
>
> I have gone through the installer, gone through countless other
> suggestions (ISAPI filter, running as a CGI).
>
> And nothing seems to work. I finish doing the install (and
> configuring and rebooting) and my php pages can run the phpinfo();
> command, but anything else does not work.
>
> When the pages do not work I get the "No input file specified" There
> also seems to be some issues where the root directory will display
> phpinfo(); correctly but any files under sub-directories will not.
>
> I am not seeing any errors in my event logs... is there a PHP event
> log somewhere?
>
> Any suggestions would be great... it just seems like a lot of work do
> after I have run an "installer".
>
> Greg
>

Greg,

I never bother with the installer. I download the .zip files and
install manually. It's not hard once you have done it a couple of times
and only takes a couple of minutes.

Sorry, I don't remember what the original site I found the instructions
on, but if you google for iis and php, you'll find several good sets of
instructions.

BTW - I prefer the isapi install.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

Re: Running PHP On IIS 5.1

am 18.04.2008 16:01:01 von Charles Calvert

On Thu, 17 Apr 2008 18:58:07 -0700 (PDT), Greg
wrote in
<1ca9f139-bf39-4907-9db2-7090da16f4e1@26g2000hsk.googlegroups.com>:

>Has anyone gotten PHP5.2.5 running on WinXP with IIS 5.1?

I got 64-bit php installed and working on W2K3 64-bit version a few
months ago. If I can make that work, you can definitely get it up and
running on XP.

I used the following guide:
. It's for W2K3 w/ IIS
6, but the process should be basically the same.

As Jerry said, use the .zip file, not the installer.
--
Charles Calvert | Software Design/Development
Celtic Wolf, Inc. | Project Management
http://www.celticwolf.com/ | Technical Writing
(703) 580-0210 | Research

Re: Running PHP On IIS 5.1

am 18.04.2008 18:58:10 von Daniel Klein

On Fri, 18 Apr 2008 06:18:54 -0400, Jerry Stuckle
wrote:

>macca wrote:
>> The best piece of advice you will EVER receive about running PHP with
>> IIS is... Don't bother!
>>
>> You are right, using apache will be a million times better. More
>> manageable/configurable/compatible/robust/stable etc etc
>>
>
>Nonsense. PHP works fine under IIS.

....until you have to use 'popen' or 'proc_open'.

Dan