Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

phpRiot.com:
Implementing a WebDAV filesystem with PHP and SabreDAV
Mar 29, 2010 @ 14:28:13

On phpRiot.com there's a new tutorial that will walk you through the creation of a WebDAV file system based on PHP and the SabreDAV library.

We are going to create a simple web drive that stores its files in a directory on the web server. By the end you will be able to effectively map this directory to your local computer and update files using your native operating system. Put simply, WebDAV (Web-based Distributed Authoring and Versioning) is an extension of HTTP that allows you to manage files on a remote web server. It allows you to think of files and directories on a web site as though they are local files on your computer.

Over the course of the next few pages they introduce DAV, set up your webserver to handle the requests and creates a sample script you can have set up quickly and get working. They also mention some of the additional things like locking, authentication, and working with plugins.

tagged: sabredav dav http tutorial filesystem

Link:

Evert Pot's Blog:
CalDAV Server for PHP
Feb 03, 2010 @ 13:45:29

Evert Pot has posted to his blog about a CalDAV library he's worked up to allow for read/write access to calendaring that's compatible with the normal CalDAV systems.

My main goal is to create a general-purpose CalDAV library, rather than a consumer-ready server app. I'm hoping people will be able to use this library to enable CalDAV functionality in their existing applications.

You can get more information on the installation of the library from the SabreDAV wiki and to get at the code, you'll need to do a subversion checkout to get it.

tagged: caldav library server sabredav

Link:


Trending Topics: