Running PHP On IIS 5.1

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Greg

    Running PHP On IIS 5.1

    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
  • macca

    #2
    Re: Running PHP On IIS 5.1

    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

    Comment

    • Jerry Stuckle

      #3
      Re: Running PHP On IIS 5.1

      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@attgl obal.net
      =============== ===

      Comment

      • Jerry Stuckle

        #4
        Re: Running PHP On IIS 5.1

        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@attgl obal.net
        =============== ===

        Comment

        • Charles Calvert

          #5
          Re: Running PHP On IIS 5.1

          On Thu, 17 Apr 2008 18:58:07 -0700 (PDT), Greg <grthomas@magma .ca>
          wrote in
          <1ca9f139-bf39-4907-9db2-7090da16f4e1@26 g2000hsk.google groups.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:
          <http://www.peterguy.co m/php/install_IIS6.ht ml>. 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

          Comment

          • Daniel Klein

            #6
            Re: Running PHP On IIS 5.1

            On Fri, 18 Apr 2008 06:18:54 -0400, Jerry Stuckle <jstucklex@attg lobal.net>
            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

            Comment

            Working...