I installed wampserver with Apache v2.2.17 and PHP v5.3.5.
When I use the function file_get_contents()
with the HTTPS URL as a parameter, I get the following warning:
Warning: file_get_contents() [function.file-get-contents]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\wamp\www\fbapp\index.php on line 22
Is there a way to configure wampserver to enable SSL without reinstalling it?
I looked it up and you should:
ssl_module
in the Apache modules.php_openssl
in the PHP extensions.Working! :)