Okay, so I'm sitting here bashing my head against the desk. I've been googling this for what seems the past hour. I cannot find any relative good links for making Python work with WAMP server. Yes, I understand how CGI scripts work. Unfortunately, I have no idea how to configure Apache to run with Python or anything. I have this script:
#!C:/python26/python.exe -u
print "Content-type: text/html\n"
print('''\
<html>
<head>
<title>Hello</title>
</head>
<body>
Hello world!
</body>
</html>
''')
That I want to run using WAMP. Thought it'd be simple, no? xD Anyways, can anyone give me a detailed explanation on how to get it to work? Without Mod-Python would be nice, because I have no idea what that is, and I keep hearing different thigns about it, such as you don't need it, blah blah blah. Please and thank you.