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 ended up being a dos2unix issue for me. Ran dos2unix test.py test.py and it worked. The \r\n combinations were the problem. Had to yum install dos2unix to get it installed.
dos2unix
dos2unix test.py test.py
\r\n
yum install dos2unix