[PHP] Getting PHP to handle other HTTP methods

2003-02-19 Thread Sam Minnee
Hi, I want to get PHP to handle the HTTP methods PROPFIND, PUT, DELETE, MKCOL, RENAME, MOVE, and COPY. I've coded up a WebDAV server in PHP to do things that mod_dav cannot (store content in a database or filesystem, call event handlers, filtering the file list, more sophisticated permission conf

[PHP] HTTP_RAW_POST_DATA

2003-02-19 Thread Sam Minnee
Hi, I'm having a couple of problems getting PHP to accept my post data. Specifically, the data I am sending is not with POST, put with PUT and PROPFIND. I'm implementing WebDAV within PHP. How to I get PHP to set $HTTP_RAW_POST_DATA for all methods where content is sent, not just post? Thanks,