Setting up HTTPS support for WAMP
If you use WAMP to get local PHP server, you might run into issues to set up the HTTPS. The following step-by-step tutorial indeed helped me, and I think it would be useful to re-post it. Recently I had to run a website with several https links under local server for testing and I had to configure the Open SSL server that comes with WAMP server. I'm sure it would be helpful for you as well. First thing first, we need to create that self-signed SSL certificate, so go to DOS command prompt (Start menu -> Run -> cmd). ext, we need to navigate to the directory that contains the openssl executive file which is located in folder C:\wamp\bin\apache\apache2.2.11\bin by default. In order to go there, we need to type the command as follows. Code: Select all cd\wamp\bin\apache\apache2.2.11\bin After press Enter, your prompt should change as follows Code: Select all c:\wamp\bin\apache\apache2.2.11\bin> From there, we begin to create the self-signed SSL certificate and...