Quote:> Method not implemented
> POST to /www/cgi-bin/pw.pl not supported.
> The perl script is executable, and works with the CERN server.
> The srm.conf file has an AddHandler cgi-script .pl directive.
> Thank you for your help.
Indeed, the problem was trivial and one of my own making. The ScriptAlias
directive was correct, but the action in the html form statement was
calling the perl program with an absolute path rather than wrt to the
cgi-bin fake name.
Here is the correct form statement.
<FORM METHOD="POST" ACTION="/cgi-bin/pw.pl">.
This should have been obvious because the error message refers to an
absolute path.
Sorry to waste your time