I managed to get it working again by re-booting my router and getting a new IP address from my ISP.
I suspect it locked me out because I had been playing around with my .htaccess file, trying to figure out how to get a simple python script to work. Everything I tried resulted in some kind of error.
So, before I get locked out again, can you tell me how to run a Python script.
I have the following in my .htaccess file:
Code:
Options +ExecCGI
AddHandler cgi-script .py
Here's the python script:
Code:
#! /usr/bin/python
print "Hello"
The python script is in my public_html directory with permissions of 0755.
What else do I need to do to get this to work?