?iť?

Your IP : 3.133.153.167


Current Path : /home/scgforma/www/soctest/htdocs/includes/sabre/sabre/dav/bin/
Upload File :
Current File : /home/scgforma/www/soctest/htdocs/includes/sabre/sabre/dav/bin/sabredav.php

<?php

// SabreDAV test server.

class CliLog {

    protected $stream;

    function __construct() {

        $this->stream = fopen('php://stdout', 'w');

    }

    function log($msg) {
        fwrite($this->stream, $msg . "\n");
    }

}

$log = new CliLog();

if (php_sapi_name() !== 'cli-server') {
    die("This script is intended to run on the built-in php webserver");
}

// Finding composer


$paths = [
    __DIR__ . '/../vendor/autoload.php',
    __DIR__ . '/../../../autoload.php',
];

foreach ($paths as $path) {
    if (file_exists($path)) {
        include $path;
        break;
    }
}

use Sabre\DAV;

// Root 
$root = new DAV\FS\Directory(getcwd());

// Setting up server.
$server = new DAV\Server($root);

// Browser plugin
$server->addPlugin(new DAV\Browser\Plugin());

$server->exec();