/usr/share/php/HTTP/WebDAV/file.php is in php-http-webdav-server 1.0.0RC6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | <?php // $Id: file.php 246152 2007-11-14 10:49:27Z hholzgra $
ini_set("include_path", ini_get("include_path").":/usr/local/apache/htdocs");
require_once "HTTP/WebDAV/Server/Filesystem.php";
$server = new HTTP_WebDAV_Server_Filesystem();
$server->ServeRequest($_SERVER["DOCUMENT_ROOT"]);
?>
|