Reputation: 76
I Have searched a lot to find the solution but i am unable to find one
whenever i add these lines in my httpd.conf file
LoadModule wsgi_module modules/mod_wsgi.so
my wamp just don't turn online.Nor does it shows any error. I hav added the mod_wsgi.so file in the correct folder. Although i have 64 bit windows but i tried adding both 32 bit and 64 bit mod_wsgi but both didn't work.
Need a great help. PS:i just want to run a simple logic in python by taking input from a webpage and showing output on same page.If someone could suggest some other way...
Upvotes: 1
Views: 555
Reputation: 58563
All of Python, Apache and mod_wsgi.so must be either 32 bit or 64 bit. You cannot mix such that some are 32 bit and some are 64 bit. Also, the Python must be installed for all users on the system and not just the user you installed it as. The mod_wsgi.so must be compiled for the Apache version you are using.
Upvotes: 1