mirror of
https://github.com/nextcloud/documentation.git
synced 2025-10-26 11:18:02 +00:00
Merge pull request #10419 from nextcloud/branchoff/stable27
chore: Fix internal links after stable27 branch-off
This commit is contained in:
commit
9bbfe9dab1
@ -30,7 +30,7 @@ have an **Featured**-tag. See :doc:`installation/apps_supported` for a list of s
|
||||
and custom consulting for supported apps, contact our `sales team <https://nextcloud.com/enterprise/>`_.
|
||||
|
||||
.. note:: If you would like to develop your own Nextcloud app, you can find out
|
||||
more information in our `developer manual <https://docs.nextcloud.com/server/latest/go.php?to=developer-manual>`_.
|
||||
more information in our `developer manual <https://docs.nextcloud.com/server/27/go.php?to=developer-manual>`_.
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
All apps must be licensed under AGPLv3+ or any compatible license.
|
||||
|
||||
@ -43,7 +43,7 @@ relevant php.ini files) ::
|
||||
|
||||
The ``upload_max_filesize`` and ``post_max_size`` settings may not apply to file uploads
|
||||
through WebDAV single file PUT requests or `Chunked file uploads
|
||||
<https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
|
||||
<https://docs.nextcloud.com/server/27/developer_manual/client_apis/WebDAV/chunking.html>`_
|
||||
For those, PHP and webserver timeouts are the limiting factor on the upload size.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
@ -166,7 +166,7 @@ Default is 10485760 (10 MiB).
|
||||
Large file upload on object storage
|
||||
-----------------------------------
|
||||
|
||||
`Chunked file uploads <https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html>`_
|
||||
`Chunked file uploads <https://docs.nextcloud.com/server/27/developer_manual/client_apis/WebDAV/chunking.html>`_
|
||||
do have a larger space consumption on the temporary folder when processing those uploads
|
||||
on object storage as the individual chunks get downloaded from the storage and will be assembled
|
||||
to the actual file on the Nextcloud servers temporary directory. It is recommended to increase
|
||||
|
||||
@ -346,7 +346,7 @@ Sources
|
||||
-------
|
||||
|
||||
- `nextcloud-tools repository on GitHub <https://github.com/syseleven/nextcloud-tools>`_
|
||||
- `Nextcloud Encryption Configuration documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/encryption_configuration.html>`_
|
||||
- `Nextcloud Encryption Configuration documentation <https://docs.nextcloud.com/server/27/admin_manual/configuration_files/encryption_configuration.html>`_
|
||||
- `Nextcloud Help response concering the usage of version information <https://help.nextcloud.com/t/allow-file-decryption-with-only-the-files-keys-and-passwords/436/12>`_
|
||||
- `Sourcecode: Creation of the Message Authentication Code <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L504>`_
|
||||
- `Sourcecode: Derivation of the Encryption Key <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L346>`_
|
||||
|
||||
@ -79,7 +79,9 @@ forcing them.
|
||||
<https://github.com/owncloud/core/issues/7009>`_ for discussion of this.
|
||||
|
||||
.. note:: There are more sharing options on config.php level available:
|
||||
`Configuration Parameters <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#sharing>`_
|
||||
`Configuration Parameters <https://docs.nextcloud.com/server/27/admin_manual/configuration_server/config_sample_php_parameters.html#sharing>`_
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
.. _transfer_userfiles_label:
|
||||
|
||||
@ -123,7 +125,7 @@ Trashbin contents are not transferred::
|
||||
reference.)
|
||||
|
||||
Users may also transfer files or folders selectively by themselves.
|
||||
See `user documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/transfer_ownership.html>`_ for details.
|
||||
See `user documentation <https://docs.nextcloud.com/server/27/user_manual/en/files/transfer_ownership.html>`_ for details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -834,7 +834,7 @@ The command line option ``--transfer-incoming-shares`` overwrites the config.php
|
||||
sudo -u www-data php occ files:transfer-ownership --transfer-incoming-shares=0 <source-user> <destination-user>
|
||||
|
||||
Users may also transfer files or folders selectively by themselves.
|
||||
See `user documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/transfer_ownership.html>`_ for details.
|
||||
See `user documentation <https://docs.nextcloud.com/server/27/user_manual/en/files/transfer_ownership.html>`_ for details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -905,7 +905,7 @@ Verify your app::
|
||||
sudo -u www-data php occ integrity:check-app --path=/pathto/app appname
|
||||
|
||||
When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing
|
||||
<https://docs.nextcloud.com/server/latest/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
|
||||
<https://docs.nextcloud.com/server/27/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ Several 2FA apps are already available including
|
||||
a Telegram/Signal/SMS gateway and `U2F <https://en.wikipedia.org/wiki/Universal_2nd_Factor>`_.
|
||||
|
||||
|
||||
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/two-factor-provider.html>`_.
|
||||
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/27/developer_manual/digging_deeper/two-factor-provider.html>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -27,7 +27,7 @@ you want, 2FA will be installed and enabled on your Nextcloud server.
|
||||
|
||||
.. figure:: ../images/2fa-app-install.png
|
||||
|
||||
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/latest/user_manual/en/user_2fa.html>`_
|
||||
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/27/user_manual/en/user_2fa.html>`_
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ respective manuals:
|
||||
* `Nextcloud User Manual`_
|
||||
* `Nextcloud Desktop Client`_
|
||||
|
||||
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/latest/user_manual/en/
|
||||
.. _`Nextcloud User Manual`: https://docs.nextcloud.com/server/27/user_manual/en/
|
||||
.. _`Nextcloud Desktop Client`: https://docs.nextcloud.com/desktop/latest/
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -31,7 +31,7 @@ configuration report with the :ref:`occ config command
|
||||
|
||||
.. _the Nextcloud Forums: https://help.nextcloud.com
|
||||
.. _FAQ page: https://help.nextcloud.com/t/how-to-faq-wiki
|
||||
.. _bugtracker: https://docs.nextcloud.com/server/latest/developer_manual/prologue/bugtracker/index.html
|
||||
.. _bugtracker: https://docs.nextcloud.com/server/27/developer_manual/prologue/bugtracker/index.html
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -383,7 +383,9 @@ does not match the actual data stored in the user's ``data/$userId/files`` direc
|
||||
.. note::
|
||||
|
||||
Metadata, versions, trashbin and encryption keys are not counted in the used space above.
|
||||
Please refer to the `quota documentation <https://docs.nextcloud.com/server/latest/user_manual/en/files/quota.html>`_ for details.
|
||||
Please refer to the `quota documentation <https://docs.nextcloud.com/server/27/user_manual/en/files/quota.html>`_ for details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
Running the following command can help fix the sizes and quota for a given user::
|
||||
|
||||
|
||||
@ -23,10 +23,10 @@ Critical changes
|
||||
* PHP 8.2 is now supported.
|
||||
* The recommended webserver configuration has changed to no longer include a default redirect to the login page
|
||||
* For Apache this change will automatically come with the ``.htaccess`` file provided by the release
|
||||
* for nginx administrators should ensure that their config is up to date with the `documentation <https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html>`_
|
||||
* for nginx administrators should ensure that their config is up to date with the `documentation <https://docs.nextcloud.com/server/27/admin_manual/installation/nginx.html>`_
|
||||
* The relevant lines to remove are ``error_page 403 /core/templates/403.php;`` and ``error_page 404 /core/templates/404.php;``
|
||||
|
||||
You can find important documentation for app developers here: https://docs.nextcloud.com/server/latest/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.html
|
||||
You can find important documentation for app developers here: https://docs.nextcloud.com/server/27/developer_manual/app_publishing_maintenance/app_upgrade_guide/index.html
|
||||
Each document lists a link to the breaking changes of the corresponding release.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -47,7 +47,7 @@ Admin audit logging
|
||||
|
||||
If you want to log things less for system administration but for compliance reasons, e.g. who accessed which file,
|
||||
who changed the password of an item or made it public, the
|
||||
`admin audit log <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/logging_configuration.html#admin-audit-log>`_
|
||||
`admin audit log <https://docs.nextcloud.com/server/27/admin_manual/configuration_server/logging_configuration.html#admin-audit-log>`_
|
||||
is the correct place.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -110,7 +110,7 @@ The last missing part is to register both classes inside **<myapp>/appinfo/info.
|
||||
`<personal>` instead.
|
||||
|
||||
Additionally since Nextcloud 23, groups can be granted authorization to access individual
|
||||
admin settings (`see admin docs <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/admin_delegation_configuration>`_).
|
||||
admin settings (`see admin docs <https://docs.nextcloud.com/server/27/admin_manual/configuration_server/admin_delegation_configuration>`_).
|
||||
This is a feature that needs to be enabled for each admin setting class.
|
||||
To do so, the setting class needs to implement `IDelegatedSettings` instead of `ISettings`
|
||||
and implement two additional methods.
|
||||
|
||||
@ -167,7 +167,7 @@ Federated Cloud Shares
|
||||
----------------------
|
||||
|
||||
Both the sending and the receiving instance need to have federated cloud sharing
|
||||
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
|
||||
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.com/server/27/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -16,7 +16,7 @@ Please follow the steps on this page to set up your development environment manu
|
||||
Set up Web server and database
|
||||
------------------------------
|
||||
|
||||
First `set up your Web server and database <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
|
||||
First `set up your Web server and database <https://docs.nextcloud.com/server/27/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -25,7 +25,7 @@ Get the source
|
||||
|
||||
There are two ways to obtain Nextcloud sources:
|
||||
|
||||
* Using the `stable version <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_
|
||||
* Using the `stable version <https://docs.nextcloud.com/server/27/admin_manual/installation/index.html>`_
|
||||
* Using the development version from `GitHub`_ which will be explained below.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -6,7 +6,7 @@ The External Storage application allows you to mount external storage services,
|
||||
such as Amazon S3, SMB/CIFS file servers and FTP servers…
|
||||
in Nextcloud. Your Nextcloud server administrator controls which of these are
|
||||
available to you. Please see `Configuring External Storage (GUI)
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/external_storage_configuration_gui.html>`_ in the Nextcloud Administrator's
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_files/external_storage_configuration_gui.html>`_ in the Nextcloud Administrator's
|
||||
manual for configuration how-tos and examples.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -208,7 +208,7 @@ path of your certificate as in this example::
|
||||
Accessing files using macOS
|
||||
---------------------------
|
||||
|
||||
.. note:: The macOS Finder suffers from a `series of implementation problems <http://sabre.io/dav/clients/finder/>`_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck <https://cyberduck.io/>`_ (see instructions `here <https://docs.nextcloud.com/server/latest/user_manual/files/access_webdav.html#accessing-files-using-cyberduck>`_) and `Filezilla <https://filezilla-project.org>`_. Commercial clients include `Mountain Duck <https://mountainduck.io/>`_, `Forklift <https://binarynights.com/>`_, `Transmit <https://panic.com/>`_, and `Commander One <https://mac.eltima.com/>`_.
|
||||
.. note:: The macOS Finder suffers from a `series of implementation problems <http://sabre.io/dav/clients/finder/>`_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck <https://cyberduck.io/>`_ (see instructions `here <https://docs.nextcloud.com/server/27/user_manual/files/access_webdav.html#accessing-files-using-cyberduck>`_) and `Filezilla <https://filezilla-project.org>`_. Commercial clients include `Mountain Duck <https://mountainduck.io/>`_, `Forklift <https://binarynights.com/>`_, `Transmit <https://panic.com/>`_, and `Commander One <https://mac.eltima.com/>`_.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -56,6 +56,6 @@ Nextcloud will permanently delete those trashed files with the soonest expiratio
|
||||
until the space limit is met again.
|
||||
|
||||
.. note:: Your administrator may have configured the trash bin retention period
|
||||
to override the storage space management. See `admin documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin>`_ for more details.
|
||||
to override the storage space management. See `admin documentation <https://docs.nextcloud.com/server/27/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin>`_ for more details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -34,7 +34,7 @@ How can encryption be disabled?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The only way to disable encryption is to run the `"decrypt all"
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#encryption-label>`_
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_server/occ_command.html#encryption-label>`_
|
||||
script, which decrypts all files and disables encryption.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
@ -43,8 +43,8 @@ Is it possible to disable encryption with the recovery key?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Yes, *if* every user uses the `file recovery key
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_, `"decrypt all"
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#encryption-label>`_ will use it to decrypt all files.
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_, `"decrypt all"
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_server/occ_command.html#encryption-label>`_ will use it to decrypt all files.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -52,7 +52,7 @@ Can encryption be disabled without the user's password?
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
If you don't have the users password or `file recovery key
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_,
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_files/encryption_configuration.html#enabling-users-file-recovery-keys>`_,
|
||||
then there is no way to decrypt all files. What's more, running it on login
|
||||
would be dangerous, because you would most likely run into timeouts.
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ Modifying certain Nextcloud variables requires administrative access. If you req
|
||||
* Contact your administrator to request an increase in these variables
|
||||
|
||||
* Refer to the section in the `Administration Documentation
|
||||
<https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html>`_ that describes how to manage file
|
||||
<https://docs.nextcloud.com/server/27/admin_manual/configuration_files/big_file_upload_configuration.html>`_ that describes how to manage file
|
||||
upload size limits.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -29,7 +29,7 @@ deleted files exceed 50% of quota then the oldest files are removed until the
|
||||
total is below 50%.
|
||||
|
||||
.. note:: Your administrator may have configured the trash bin retention period
|
||||
to override the storage space management. See `administrator documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin>`_ for more details.
|
||||
to override the storage space management. See `administrator documentation <https://docs.nextcloud.com/server/27/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin>`_ for more details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ Nextcloud users can share files and folders. Possible targets are:
|
||||
* users or groups on federated Nextcloud servers
|
||||
|
||||
.. note:: Some options may not be available due to administrative configuration.
|
||||
See `administrator documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/file_sharing_configuration.html>`__ for details.
|
||||
See `administrator documentation <https://docs.nextcloud.com/server/27/admin_manual/configuration_files/file_sharing_configuration.html>`__ for details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -13,7 +13,7 @@ ownerships of those transferred files/folders will also be transferred.
|
||||
#. Click on *Transfer*.
|
||||
|
||||
.. note:: The username autocompletion or listing may be limited due to administrative visibility configuration.
|
||||
See `administrator documentation <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/file_sharing_configuration.html>`_ for details.
|
||||
See `administrator documentation <https://docs.nextcloud.com/server/27/admin_manual/configuration_files/file_sharing_configuration.html>`_ for details.
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ This can be done by following these steps:
|
||||
3. Enter your server URL, username and password. If you have enabled two
|
||||
factor authentification, you need to generate an app-password/token, because GNOME Online Accounts
|
||||
`doesn't support Nextcloud's webflow login yet <https://gitlab.gnome.org/GNOME/gnome-online-accounts/issues/81>`_
|
||||
(`Learn more <https://docs.nextcloud.com/server/latest/user_manual/session_management.html#managing-devices>`_):
|
||||
(`Learn more <https://docs.nextcloud.com/server/27/user_manual/session_management.html#managing-devices>`_):
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@ You should now find your contacts in the address book of your iPhone.
|
||||
|
||||
If it's still not working, have a look at `Troubleshooting Contacts & Calendar`_ or `Troubleshooting Service Discovery`_.
|
||||
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#troubleshooting-contacts-calendar
|
||||
.. _Troubleshooting Service Discovery: https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#service-discovery
|
||||
.. _Troubleshooting Contacts & Calendar: https://docs.nextcloud.com/server/27/admin_manual/issues/general_troubleshooting.html#troubleshooting-contacts-calendar
|
||||
.. _Troubleshooting Service Discovery: https://docs.nextcloud.com/server/27/admin_manual/issues/general_troubleshooting.html#service-discovery
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
@ -28,7 +28,7 @@ In Kalendar:
|
||||
|
||||
In KOrganizer and Kalendar:
|
||||
|
||||
3. Enter your username. As password, you need to generate an app-password/token (`Learn more <https://docs.nextcloud.com/server/latest/user_manual/en/session_management.html#managing-devices>`_):
|
||||
3. Enter your username. As password, you need to generate an app-password/token (`Learn more <https://docs.nextcloud.com/server/27/user_manual/en/session_management.html#managing-devices>`_):
|
||||
|
||||
.. TODO ON RELEASE: Update version number above on release
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user