Back to normal view: https://oracle-base.com/articles/misc/configuration-of-php-with-iis-on-windows-2003

Configuration of PHP with IIS on Windows 2003

This article contains instructions for setting up PHP with IIS on Windows 2003.

  1. Download the Windows "zip package" of PHP. In this example I used version 5.1.4.

  2. Unzip the contents of the file into the "C:\php" directory.

  3. Add "C:\php" to the System Path.

  4. Copy the "C:\php\php.ini-recommended" file to "C:\php\php.ini".

  5. Make sure the following parameters are set correctly in the php.ini:

  6. Open the IIS Manager dialog (Start > Administration Tools > Internet Information Service (IIS) Manager).

  7. Configure up the relevant website as follows:

  8. Configure the Web Service Extensions as follows:

  9. Restart the IIS Admin Service in the "Services" dialog (Start > Administrative Tools > Services).

  10. Create a file called "C:\Inetpub\wwwroot\phpinfo.php" with the following contents.

    <?php
      phpinfo();
    ?>
  11. Then test the configuration by using this URL (http://localhost/phpinfo.php) in a browser on the server.

For more information see:

Hope this helps. Regards Tim...

Back to the Top.

Back to normal view: https://oracle-base.com/articles/misc/configuration-of-php-with-iis-on-windows-2003