HTTPS support for SOAP in PHP5 under Windows
April 1, 2008
If you’re seeing error messages about missing https wrappers when trying to use SOAP (”Unable to find the wrapper “https” – did you forget to enable it when you configured PHP?” or “[HTTP] SSL support is not available in this build”), you haven’t installed the SSL libraries to support secure transactions.
- Uncomment
extension=php_soap.dll
in your php.ini
- Uncomment
extension=php_openssl.dll
in your php.ini
- Copy
ssleay32.dll
and
libeay32.dll
to your windows system32 directory
- Reboot apache, et voila!