I'am trying to run a Python cgi-script. In the first place I've tried running a bit complex python script, but it did not work properly, in fact the script didn't run at all. So the next step was to write a simple HelloWorld script like this one: #!/usr/bin/python print 'text/plain' print print 'Hello World!' Just to test if this script could run. But no, it didn't. I got an internal server error. Do I need to install something on the webserver to get the script to run? Any solutions? BTW: I saved the script in the Cgi-bin folder, and tried to run it by connecting to the adress. Typically www.yourhostname.helios.org/cgi-bin/script.cgi Thanks in advance!