Hi,

I am afraid this is a dumb question, but unfortunately I wasn't able to solve it from the docs and list archives...

I need a very simple PUT support in apache to test an other application which should upload files. So I added

<Directory /PUT-test>
        Dav filesystem
        Order Deny,Allow
        <Limit PUT>
                Allow from all
        </Limit>
        Script PUT /cgi-bin/put.pl
</Directory>

(Security is not a problem here, as it's on a stand-alone box) but I still get a '405 response when I try to upload a file into this folder:

Request:
PUT /PUT-test/some-file-name.txt HTTP/1.1
[...]

Reply:
HTTP/1.1 405 Method Not Allowed
Date: Thu, 27 Oct 2005 10:28:46 GMT
Server: Apache/2.0.53 (Fedora)
Allow: GET,HEAD,POST,OPTIONS,TRACE
[...]

The confusing thing is that Apache apparently doesn't allow PUT at all - how do I enable it?

I'm running the 2.0.53 RPM's on a Fedora Core 3 box.

Thanks in advance,
Cheers,
Albrecht

--
LIOS Technology GmbH
Dr. Albrecht Dreß
Project Engineering / Software Design
Schanzenstrasse 6 - 20
D-51063 Köln
Germany

Phone +49 221 676 2742
Fax   +49 221 676 2069


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to