QUOTE(nbarten @ 3 Oct, 2007 - 10:03 AM)

QUOTE
This can be found via ls -l on a *nix OS.
What do you mean with this? I'm using Windows XP btw, not Linux or something like that (if you refer to that)
Linux, Unix, Aix...
QUOTE(nbarten @ 3 Oct, 2007 - 10:03 AM)

I tried it with 127.0.0.1... so locally i think. Does that make a difference?
You're webserver is running on 127.0.0.1?
It would make a difference if it worked locally, but not externally.
Do you have something similar to the following in your httpd.conf?
CODE
ScriptAlias /cgi-bin/ "/apache/cgi-bin/"
<Directory "/apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
AddHandler cgi-script .cgi
You may need to specify where your cgi-bin directory is located, & where your apache is allowing executable permissions of those files.