Installing mod_wsgi on WAMP server running on Windows 7

These are the following things you need to do to setup Apache for Django. I assume you are using Python 2.7 (32-bit) on Windows (32-bit) with WAMP server (32-bits) installed. Download mod_wsgi-win32-ap22py27-3.3.so. Or download your respective .so compatible file Change its name to mod_wsgi.so and copy it to /Program Files/Apache Software Foundation/Apache22/modules on Windows. Open … Read more

Enable CORS with wamp on windows 8

I had the same problem and i solved it with these 3 steps: 1) in Apache config file (for me the path was C:\wamp\bin\apache\apache2.4.18\conf\httpd.conf) add the line: Header set Access-Control-Allow-Origin “*” in the content of the <Directory> tag: DocumentRoot “c:/wamp/www” <Directory “c:/wamp/www/”> Options +Indexes +FollowSymLinks Header set Access-Control-Allow-Origin “*” AllowOverride all Require local </Directory> 2) … Read more

How to enable SSL in Wamp Server?

STEP BY STEP tutorial Copied from the link: Enabling SSL on WAMP This step by step guide explains how you can enble SSL on WAMP. Download WampServer 2.0 from here and install it to the default location (c:\wamp). Now, we need to have a private/public key pair as well as a CA to sign our … Read more

cURL error 60: SSL certificate prblm: unable to get local issuer certificate [duplicate]

If you are on Windows using Xampp, I am stealing a better answer from here, would be helpful if Google shows you this question first. Download and extract for cacert.pem here (a clean file format/data) https://curl.haxx.se/docs/caextract.html Put it in : C:\xampp\php\extras\ssl\cacert.pem Add this line to your php.ini curl.cainfo = “C:\xampp\php\extras\ssl\cacert.pem” restart your webserver/Apache

How to install: OpenSSL + WAMP

Guide: Openssl in WampServer 2.5 Prerequisite: There is normally no need to install openssl (it comes bundled with Wamp). Apache 2.4.9 includes 1.0.1g for instance. System-Variable: Open the Windows System panel (“WIN+Q” Search: system) > Advanced System Settings > Advanced > Environment variables Add a new entry in system variables with name OPENSSL_CONF and its … Read more