From f2a7f230f14e0f30d9ce7ddcc6ad328ac4b0434f Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 28 Sep 2011 13:52:26 +0200 Subject: add status file. useful for external administration. show the ownClopud version at least in the config dialog. --- status.php | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 status.php (limited to 'status.php') diff --git a/status.php b/status.php new file mode 100644 index 00000000000..01b0d7244cb --- /dev/null +++ b/status.php @@ -0,0 +1,43 @@ +. +* +*/ + +$RUNTIME_NOAPPS = TRUE; //no apps, yet + +require_once('lib/base.php'); + +if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; + + +$txt=' + + '.$installed.' + '.implode('.',OC_Util::getVersion()).' + ownCloud '.OC_Util::getVersionString().' + +'; + +echo($txt); + + + +?> -- cgit v1.2.3