You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
do have a larger space consumption on the temporary folder when processing those uploads
175
175
on object storage as the individual chunks get downloaded from the storage and will be assembled
176
176
to the actual file on the Nextcloud servers temporary directory. It is recommended to increase
177
177
the size of your temp directory accordingly and also ensure that request timeouts are high
178
178
enough for PHP, webservers or any load balancers involved.
179
179
180
+
.. TODO ON RELEASE: Update version number above on release
181
+
180
182
.. tip:: In more recent versions of Nextcloud Server, when uploading to S3 in *Primary Storage* mode, we use S3 `MultipartUpload`. This allows chunked upload streaming of the chunks directly to S3 so that the final MOVE request no longer needs to assemble the final file on the Nextcloud server. This requires your ``memcache.distributed`` to be set to use Redis (or Memcached), otherwise we fall back on the prior behavior which consumes space on the Nextcloud Server for file assembly (as described above).
181
183
182
184
Federated Cloud Sharing
183
185
-----------------------
184
186
185
-
If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
187
+
If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/31/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
186
188
Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds.
187
189
188
190
.. TODO ON RELEASE: Update version number above on release
- `Nextcloud Help response concerning the usage of version information <https://help.nextcloud.com/t/allow-file-decryption-with-only-the-files-keys-and-passwords/436/12>`_
351
351
- `Sourcecode: Creation of the Message Authentication Code <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L504>`_
352
352
- `Sourcecode: Derivation of the Encryption Key <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L346>`_
Copy file name to clipboardExpand all lines: admin_manual/configuration_user/two_factor-auth.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Several 2FA apps are already available including
15
15
a Telegram/Signal/SMS gateway and `U2F <https://en.wikipedia.org/wiki/Universal_2nd_Factor>`_.
16
16
17
17
18
-
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/two-factor-provider.html>`_.
18
+
Developers can `build new two-factor provider apps <https://docs.nextcloud.com/server/31/developer_manual/digging_deeper/two-factor-provider.html>`_.
19
19
20
20
.. TODO ON RELEASE: Update version number above on release
21
21
@@ -29,7 +29,7 @@ you want, 2FA will be installed and enabled on your Nextcloud server.
29
29
30
30
.. figure:: ../images/2fa-app-install.png
31
31
32
-
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>`_
32
+
Once 2FA has been enabled, users have to `activate it in their personal settings. <https://docs.nextcloud.com/server/31/user_manual/en/user_2fa.html>`_
33
33
34
34
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: admin_manual/installation/example_ubuntu.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ following commands in a terminal::
14
14
15
15
* This installs the packages for the Nextcloud core system.
16
16
If you are planning on running additional apps, keep in mind that they might
17
-
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/latest/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
17
+
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/31/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
18
18
19
19
.. TODO ON RELEASE: Update version number above on release
When it returns nothing, your app is signed correctly. When it returns a message then there is an error. See `Code Signing
1040
-
<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.
1041
+
<https://docs.nextcloud.com/server/31/developer_manual/app_publishing_maintenance/code_signing.html#how-to-get-your-app-signed>`_ in the Developer manual for more detailed information.
1041
1042
1042
1043
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: admin_manual/webhook_listeners/index.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,9 @@ Installation
18
18
Listening to events
19
19
-------------------
20
20
21
-
You can use the OCS API to add webhooks for specific events: https://docs.nextcloud.com/server/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index
21
+
You can use the OCS API to add webhooks for specific events: https://docs.nextcloud.com/31/latest/developer_manual/_static/openapi.html#/operations/webhook_listeners-webhooks-index
22
+
23
+
.. TODO ON RELEASE: Update version number above on release
22
24
23
25
Note: When authenticating with the OCS API to register webhooks the account you authenticate as must have administrator rights or delegated administrator rights.
Copy file name to clipboardExpand all lines: developer_manual/client_apis/OCS/ocs-share-api.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -227,7 +227,7 @@ Federated Cloud Shares
227
227
----------------------
228
228
229
229
Both the sending and the receiving instance need to have federated cloud sharing
230
-
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
230
+
enabled and configured. See `Configuring Federated Cloud Sharing <https://docs.nextcloud.com/server/31/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_.
231
231
232
232
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: developer_manual/client_apis/OCS/ocs-taskprocessing-api.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -8,4 +8,6 @@ OCS TaskProcessing API
8
8
9
9
The OCS Task processing API allows you to run task processing tasks, like prompting large language models implemented by apps using :ref:`the backend Task Processing API<task_processing>`.
10
10
11
-
See the relevant `OpenAPI docs <https://docs.nextcloud.com/server/latest/developer_manual/_static/openapi.html#/operations/core-task_processing_api-schedule>`_.
11
+
See the relevant `OpenAPI docs <https://docs.nextcloud.com/server/31/developer_manual/_static/openapi.html#/operations/core-task_processing_api-schedule>`_.
12
+
13
+
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: developer_manual/exapp_development/faq/DockerSocketProxy.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,9 @@ Nextcloud AIO implements its own `Docker Socket Proxy container <https://github.
28
28
you just need to tick the checkbox in the AIO configuration interface to enable it.
29
29
AppAPI automatically creates the default Deploy daemon configuration for Nextcloud AIO.
30
30
31
-
See `Nextcloud in Docker AIO (all-in-one) <https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/DeployConfigurations.html#nextcloud-in-docker-aio-all-in-one>`_ for more details.
31
+
See `Nextcloud in Docker AIO (all-in-one) <https://docs.nextcloud.com/server/31/admin_manual/exapps_management/DeployConfigurations.html#nextcloud-in-docker-aio-all-in-one>`_ for more details.
32
+
33
+
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: developer_manual/exapp_development/faq/Troubleshooting.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,11 @@ Here are some common steps to verify the network configuration:
27
27
ExApp deployment issues
28
28
-----------------------
29
29
30
-
The deployment issues questions are covered in the `Test Deploy <https://docs.nextcloud.com/server/latest/admin_manual/exapps_management/TestDeploy.html>`_ section of the administration guide.
30
+
The deployment issues questions are covered in the `Test Deploy <https://docs.nextcloud.com/server/31/admin_manual/exapps_management/TestDeploy.html>`_ section of the administration guide.
31
31
Generally speaking, there are three steps to find the proper error message to understand the problem:
32
32
33
+
.. TODO ON RELEASE: Update version number above on release
34
+
33
35
1. Check Nextcloud logs
34
36
2. Check ExApp container logs (available only if ExApp container is created and/or running)
Copy file name to clipboardExpand all lines: developer_manual/exapp_development/tech_details/Translations.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,12 @@ There is an example repository with translations: `UI example with translations
26
26
Manual install
27
27
**************
28
28
29
-
For the ``manual-install`` type, an administrator will have to manually extract to the server's `writable apps directory <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#apps-paths>`_ ``l10n`` folder of the ExApp
29
+
For the ``manual-install`` type, an administrator will have to manually extract to the server's `writable apps directory <https://docs.nextcloud.com/server/31/admin_manual/configuration_server/config_sample_php_parameters.html#apps-paths>`_ ``l10n`` folder of the ExApp
Copy file name to clipboardExpand all lines: developer_manual/exapp_development/tech_details/api/logging.rst
+3-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,9 @@ Request data
25
25
}
26
26
27
27
28
-
The possible values of ``log_lvl`` are described here: `Nextcloud Log level <https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/logging_configuration.html#log-level>`_
28
+
The possible values of ``log_lvl`` are described here: `Nextcloud Log level <https://docs.nextcloud.com/server/31/admin_manual/configuration_server/logging_configuration.html#log-level>`_
29
+
30
+
.. TODO ON RELEASE: Update version number above on release
Copy file name to clipboardExpand all lines: developer_manual/getting_started/devenv.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Please follow the steps on this page to set up your development environment manu
16
16
Set up Web server and database
17
17
------------------------------
18
18
19
-
First `set up your Web server and database <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
19
+
First `set up your Web server and database <https://docs.nextcloud.com/server/31/admin_manual/installation/index.html>`_ (**Section**: Manual Installation - Prerequisites).
20
20
21
21
.. TODO ON RELEASE: Update version number above on release
22
22
@@ -25,7 +25,7 @@ Get the source
25
25
26
26
There are two ways to obtain Nextcloud sources:
27
27
28
-
* Using the `stable version <https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html>`_
28
+
* Using the `stable version <https://docs.nextcloud.com/server/31/admin_manual/installation/index.html>`_
29
29
* Using the development version from `GitHub`_ which will be explained below.
30
30
31
31
.. TODO ON RELEASE: Update version number above on release
0 commit comments