I\'m trying to get Python scripts, called from a web browser, to work. I keep getting the error:
500 Internal Server Error
When I check my err
I had a similar problem, the problem is that you need to have two lines breaks after printing the content type. The following worked for me :
#!/usr/local/bin/python2.6 print('Content-type: text/html\r\n') print('\r\n') print('Hello, World!')