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
This is the exact behavior you would get if your Python script does not have the executable permission set.
Try:
chmod a+x foo.py
(where foo.py is your script name).
See the Apache tutorial for more information.