Home > Constructing SOAP with PHP 5.2.1 > Installing PHP on Windows


Installing PHP on Windows

If you are running PHP on Windows, your PHP application requires these two extensions: SOAP and OpenSSL.

  1. If an extensions directory is not already present, create an extensions directory in the php.ini file:

    extension_dir ="C:\PHP\extensions"

  2. Download the ZIP package from http://www.php.net/downloads.php.

    The Windows installer package does not include extensions.

  3. Copy php_soap.dll and php_openssl.dll from the package to the extensions directory.
  4. In the extension section of php.ini, add a reference to the DLLs:

    extension=php_soap.dll

    extension=php_openssl.dll