From ccdaec62967d4870c85434f974914440bfb93027 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 9 Jan 2013 00:37:50 +0100 Subject: webdav returns "503 Service Unavailable" in case the ownCloud server is currently in maintenance mode. --- apps/files/appinfo/remote.php | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/files') diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 1713bcc22ce..6a78a1e0d75 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -45,6 +45,7 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud')); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); +$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin()); // And off we go! $server->exec(); -- cgit v1.2.3