Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

configuring wampserver after installation to enable ssl

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?

like image 366
Day_Dreamer Avatar asked Jan 23 '11 13:01

Day_Dreamer


People also ask

How do I make my WampServer accessible online?

Also replace all occurrences of deny all to allow from all in the httpd. conf file. Once that's done, go to the browser and type http://<your_ip> and it should be accessible from other computer in your network. If you want to bind a particular port for incoming connections to WAMP, search for Listen in httpd.

What to do after installing WampServer?

Download: Go to https://www.wampserver.com/en/ and install the version that is appropriate for your system. After installation, run the installer. During this part, you can change your default browser if you want.


1 Answers

I looked it up and you should:

  1. Check ssl_module in the Apache modules.
  2. Check php_openssl in the PHP extensions.

Working! :)

like image 55
Day_Dreamer Avatar answered Oct 21 '22 11:10

Day_Dreamer