in reply to Method Not Allowed

Sounds like Apache to me. It is a straight CGI I assume and not a mod_perl Registry script. I'd bet on a line like
<Location />
  <Limit POST PUT DELETE>
  Deny all
  </Limit>
</Location>
in your config...

Replies are listed 'Best First'.
RE: Answer: Method Not Allowed
by Fastolfe (Vicar) on Oct 25, 2000 at 20:14 UTC
    In the case where certain methods are <Limit>ed, the message should be a stock "403 Forbidden", not a "405 Method not allowed".