Well, I was told to come here in a help desk ticket, but I still am not sure what to do. I wrote this test file and put it in my cgi-bin:
>#!/usr/bin/python
# Filename: test.py
length = 5
breadth = 2
area = length * breadth
print 'Content-Type: text/html'
print 'Area is', area
print 'Perimeter is', 2 * (length + breadth)
Whenever I try to run the file, I get a 500 Internal Server Error. I was told to try the path /user/bin/python2.2, but that didn't work either.If anybody has a solution, it would be much appreciated.