mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-02 17:59:36 +07:00
22 lines
923 B
ReStructuredText
22 lines
923 B
ReStructuredText
Knowledge Base Configuration
|
|
============================
|
|
The usage of ownCloud is more or less self explaining but nevertheless a user
|
|
might run into a problem where he needs to consult the documentation or knowledge base. To ease access to the ownCloud
|
|
documentation and knowledge base, a help menu item is shown in the settings menu by default.
|
|
|
|
Parameters
|
|
----------
|
|
|
|
If you want to disable the ownCloud help menu item you can use the **knowledgebaseenabled** parameter inside the
|
|
:file:`config/config.php`. The **knowledgebaseurl** parameter is used to set the http path to the ownCloud help page.
|
|
The server should support :abbr:`OCS (Open Collaboration Services)`.
|
|
|
|
.. code-block:: php
|
|
|
|
<?php
|
|
|
|
"knowledgebaseenabled" => true,
|
|
"knowledgebaseurl" => "http://api.apps.owncloud.com/v1",
|
|
|
|
.. note:: Disabling the help menu item might increase the number of support requests you have to answer in the future
|