From 5a92be26f7a198e051a8c53604d7d4949ba758ae Mon Sep 17 00:00:00 2001 From: j-ed Date: Wed, 28 Aug 2013 12:00:55 +0200 Subject: [PATCH 1/3] Create configuration_maintenance.rst --- .../configuration_maintenance.rst | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 admin_manual/configuration/configuration_maintenance.rst diff --git a/admin_manual/configuration/configuration_maintenance.rst b/admin_manual/configuration/configuration_maintenance.rst new file mode 100644 index 000000000..e895a8732 --- /dev/null +++ b/admin_manual/configuration/configuration_maintenance.rst @@ -0,0 +1,21 @@ +Maintenance Mode Configuration +============================== + +If you want to prevent users to login to ownCloud before you start doing +some maintenance work, you need to set the value of the **maintenance** +parameter to *true*. Please keep in mind that users who are already logged-in +are not affected by that parameter change. + + + + +Parameters +---------- + +.. code-block:: php + + false, + +This parameters can be set in the :file:`config/config.php` From 13449c701788184e506b4a0b8918c5b0078fbc6b Mon Sep 17 00:00:00 2001 From: j-ed Date: Wed, 28 Aug 2013 12:22:33 +0200 Subject: [PATCH 2/3] Create configuration_language.rst --- .../configuration/configuration_language.rst | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 admin_manual/configuration/configuration_language.rst diff --git a/admin_manual/configuration/configuration_language.rst b/admin_manual/configuration/configuration_language.rst new file mode 100644 index 000000000..386d7d8fe --- /dev/null +++ b/admin_manual/configuration/configuration_language.rst @@ -0,0 +1,24 @@ +Language Configuration +====================== + +In normal cases ownCloud will automatically detect the language of the Web-GUI. +If this doesn't work properly or you want to make sure that ownCloud always +starts with a given language, you can use the **default_language** parameter. + +Please keep in mind, that this will not effect a users language preference, +which has been configured under "personal -> language" once he has logged in. + +Please check :file:`settings/languageCodes.php` for the list of supported language +codes. + + +Parameters +---------- + +.. code-block:: php + + "en", + +This parameters can be set in the :file:`config/config.php` From d6c76784a4980b8355c9681f0e8698c0d9645e27 Mon Sep 17 00:00:00 2001 From: j-ed Date: Wed, 28 Aug 2013 13:37:49 +0200 Subject: [PATCH 3/3] added hint that this parameter will instantly come into operation --- admin_manual/configuration/configuration_maintenance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration/configuration_maintenance.rst b/admin_manual/configuration/configuration_maintenance.rst index e895a8732..7d4ff8245 100644 --- a/admin_manual/configuration/configuration_maintenance.rst +++ b/admin_manual/configuration/configuration_maintenance.rst @@ -4,7 +4,7 @@ Maintenance Mode Configuration If you want to prevent users to login to ownCloud before you start doing some maintenance work, you need to set the value of the **maintenance** parameter to *true*. Please keep in mind that users who are already logged-in -are not affected by that parameter change. +are kicked out of ownCloud instantly.