My server supports Python 2.7. It is located under /usr/bin/python2.7.
What do I have to take care of when trying to execute a cgi script ? I don't want to use Django or anything like that. I only want the script to be running and the text that was printed within the script to be shown as it was an html file.
print """<html>
<body>
Hi !
</body>
</html>"""
should be simply shown as
Hi !
in the browser.