logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Third-party Modules View previous topic :: View next topic
Reply to topic   Topic: mod_wsgi Apache 2.4.4 - python 3.4.3 on Windows x86
Author
asimkon



Joined: 05 Apr 2016
Posts: 1

PostPosted: Tue 05 Apr '16 11:14    Post subject: mod_wsgi Apache 2.4.4 - python 3.4.3 on Windows x86 Reply with quote

I am using Apache to develop Python Web applications via Django. As i am new to python web development, i am having problem to find the right version for mod_wsgi.so (compiled version for Apache 2.4.4 - WampServer 2.4 - and python 3.4.3 latest version from ActivePython on Windows x86) and i get a 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

I just 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 i have got incompatibility problems with the compiled files mentioned. Any kind of help would be convenient to me.

I am looking for the compiled (.so file) version, as it will save me from a lot of trouble.

Regards
Back to top


Reply to topic   Topic: mod_wsgi Apache 2.4.4 - python 3.4.3 on Windows x86 View previous topic :: View next topic
Post new topic   Forum Index -> Third-party Modules