mod_wsgi not compatible with Wamp 2.4 and python 3.4.3
Posted by: asimkostas (---.syzefxis-hosting.gr)
Date: March 31, 2016 11:28AM

I am looking for the appropriate version of mod_wsgi for Wampserver 2.4 (Apache 2.4.4) and python 3.4.3 (latest ActivePython vesrion windows x86). Recently i found the following link (http://grapevine.dyndns-ip.com/download/folder.asp?eid=33&folder=%2Fdownload%2Fapache%2Fmod_wsgi-windows-4.4.6%2Fmod_wsgi-windows-4.4.6%2Fapache24-win32-vc10%2Fmodules%2F), but unfortunately it's not compatible for both Apache and python versions that i use. I always get 500 Internal Server error

The server encountered an internal error or misconfiguration and was unable to complete your request.

when i try to run the following script:

def application(environment, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/html')]
start_response(status, response_headers)
page = """
<html>
<body>
<h1>Hello world!</h1>
<p>This is being served using mod_wsgi</p>
</body>
</html>
"""
return page

Any kind of help would be convenient to me!

Regards



Edited 3 time(s). Last edit at 04/05/2016 10:44AM by asimkostas.

Options: ReplyQuote


Sorry, only registered users may post in this forum.