Technology Cares

Not Just another weblog

OpenSSL support in PHP

Posted by Manish on April 10, 2009

Follow the following steps: ( I’ve xampp 1.7.0 installed in my windows XP machine for this)
1. Uncomment
extension=php_soap.dll
extension=php_openssl.dll
in the php.ini
**The thing to note here is
For PHP running under Apache, the directory from where php.ini is read is <apache dir>/bin and NOT <php dir>.

2. Copy
ssleay32.dll and
libeay32.dll
to your windows system32 directory
** The things to note here:
the system searches for the dll file using the following order:
1. The directory from which the application loaded.
2. The windows\system32 directory.
3. The windows\system directory.
4. The windows directory.
5. The current directory.
6. The directories that are listed in the PATH environment variable.

3. Reboot apache

Leave a comment