Installing PHP4.3 on Windows XP

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Installing PHP4.3 on Windows XP

    Erm, help, chaps!

    I'm trying to get PHP 4.3 working on Windows XP with IIS as server.
    Was able to make the CGI installation program go through its hoops
    (which I've done on various platforms before now), but this one
    isn't working properly. I think the problem is that it's
    not communicating with the IIS server correctly.

    I have

    extension_dir = "c:\php"
    enable_dl = off
    cgi.force_redirect = 0

    I don't have any of the php_* extensions set. Anything with
    domain name is set to localhost.

    IIS services seem to be working. I can bring up the Microsoft
    help page, and so forth. I did set IIS to start on boot.







    JimC Guest

  2. Similar Questions and Discussions

    1. Installing CFMX7 on Windows ME
      Hi, I've tried to install CFMX7 four times now, and everytime I've run into the problem of it just stopping at 'Creating Coldfusion directory' I've...
    2. Installing PHP5 on Windows
      Hi Folks, PHP version 4 works fine but I am having problems Installing PHP5 on Windows XP Pro using IIS v5.1 hope you might be able to help? I...
    3. Installing windows from a USB HD
      Is it possible to copy the windows CD to a USB HD and then install from here to the computers internal HD. The reason for doing so is i would...
    4. installing windows xp pro.
      I need to install Windows XP Pro. on a loptop. The loptop already has Windows XP Home edition. Do I need to erase the hard drive and re-format...
    5. Help installing Ming with PHP4.3.2
      Greetings! I've installed Apache 2.0.xx and PHP 4.3.2. I want to use Ming as a module to PHP. The instructions that came with Ming say to: ...
  3. #2

    Default Re: Installing PHP4.3 on Windows XP


    "JimC" <jimc@cross-comp.com> wrote in message
    news:pF1jb.1118$7L3.1003@newssvr27.news.prodigy.co m...
    > Erm, help, chaps!
    >
    > I'm trying to get PHP 4.3 working on Windows XP with IIS as server.
    > Was able to make the CGI installation program go through its hoops
    > (which I've done on various platforms before now), but this one
    > isn't working properly. I think the problem is that it's
    > not communicating with the IIS server correctly.
    >
    > I have
    >
    > extension_dir = "c:\php"
    > enable_dl = off
    > cgi.force_redirect = 0
    >
    > I don't have any of the php_* extensions set. Anything with
    > domain name is set to localhost.
    >
    > IIS services seem to be working. I can bring up the Microsoft
    > help page, and so forth. I did set IIS to start on boot.
    >
    I figured out one way to solve this. (Again, the problem is to
    make PHP work under IIS 5 on a Windows XP platform.)

    Go to Control Panel and choose Computer Management. (Alternately,
    click right on My Computer and then select Manage.

    Under Internet Information Service, find Web Sites -> Default Web Site.
    Click right on this tab. Select Properties. Select the Home Directory
    tab. Select Configuration. You will add a file extension type. Select
    ADD. In the executable window, add the path to php.exe, which
    for many users will be in the c:\php subdirectory. For extension,
    put ".php" (without quotes), and select All Verbs. Select OK to
    save the addition. Either stop and start your IIS service, or reboot.

    The usual test is to use the phpinfo() function. That is, use Notepad
    to create a file, say phpinfo.php containing one line:

    <? phpinfo(); ?>

    and save this in the Inetpub\wwwroot directory. Open a browser
    and enter the URL

    [url]http://localhost/phpinfo.php[/url]

    and the PHP start page should come up.

    HTH!


    Jim




    JimC Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139