Hi there,
it is well possible that you have to create a cgi-bin and put your files there.
Try to call the script from browser - if you see the code, it only works in cgi-bin
If you see an error 500, there is a problem with the script
Finding path: many servers are set up such that you do not see full paths in ftp, only your own area.
Once you have any cgi script working on the server, you can try this one:
#!/usr/bin/perl
print "Content-type: text/plain\n\n";
foreach $k (keys %ENV)
{ print "$k => $ENV{$k}\n";
}
This will certainly have the absolute path to the script, as SCRIPT_FILENAME or PATH_TRANSLATED
Permissions: some servers refuse to run script with 777 permissions, only 755 works.
The text files should be 666 rather than 777 - once it works you may try out protection effects, though
Musicman