Re: PHP to implement WebDAV/CalDAV



Mark wrote:
Is it possible to use PHP to implement a WebDAV or CalDAV server?

I once wrote a WebDAV handler in PHP. PHP was running under Apache.
When requesting the URL
http://www.example.org/myscript.php/file
my script would parse the URL and serve the right file. The script was
called on any request (PUT, GET, FOO) without any special Apache or
PHP configuration. The request method is then in
$_SERVER['REQUEST_METHOD'].
.