#!/usr/bin/python36
print ("Content-type:text/html\r\n\r\n")
print ('<html>')
print ('<head>')
print ('<title>Hello Word - First CGI Program</title>')
print ('</head>')
print ('<body>')
print ('<h2>Hello Word! This is my first CGI program</h2>')
print ('</body>')
print ('</html>')
I wrote this code as new.py into my account under /public_html/cgi-bin/
but It didn't work.
I also tried to change permission 755, and tried to #!/usr/bin/python310 instead #!/usr/bin/python36.
And tried to change Line break type: to Unix
I wr
Is Johnny server not capable with python?