blob: 1352ae88b8a0cd102a5d5813c001068dafd193b4 [file]
<?php
require_once 'tutorial_autoload.php';
$server = ezcWebdavServer::getInstance();
$pathFactory = new ezcWebdavBasicPathFactory(
'http://example.com/webdav/index.php'
);
foreach ( $server->configurations as $conf )
{
$conf->pathFactory = $pathFactory;
}
$backend = new ezcWebdavFileBackend(
dirname( __FILE__ ) . '/backend'
);
$server->handle( $backend );
?>