|
@@ -38,6 +38,35 @@ To enable it:
|
38
|
38
|
- Go to "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel".
|
39
|
39
|
- set "BasicAuthLevel" to "2".
|
40
|
40
|
|
|
41
|
+### Fix Windows Big file >50Mb file download.
|
|
42
|
+
|
|
43
|
+To avoid security problems, Windows doesn't allow to download >50Mb file
|
|
44
|
+by default from WebDAV share.
|
|
45
|
+
|
|
46
|
+To change file size limit of Windows :
|
|
47
|
+- Launch regedit.
|
|
48
|
+- Go to "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters".
|
|
49
|
+- set "FileSizeLimitInBytes" as DWORD decimal to the number of bytes needed,
|
|
50
|
+for example. 1Go is 1073741824, 500Mo is 524288000.
|
|
51
|
+
|
|
52
|
+see here for more info:
|
|
53
|
+https://support.microsoft.com/en-us/help/900900/folder-copy-error-message-when-downloading-a-file-that-is-larger-than
|
|
54
|
+
|
|
55
|
+### Fix Windows 30 Minutes timeout with big file.
|
|
56
|
+
|
|
57
|
+Windows add also a 30 minutes timeout for big file. If you want download who take
|
|
58
|
+more time, set the default timeout value.
|
|
59
|
+
|
|
60
|
+To set the default timeout value:
|
|
61
|
+- Launch regedit.
|
|
62
|
+- Go to "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MRxDAV\Parameters"
|
|
63
|
+- set "FsCtlRequestTimeoutInSec" DWORD decimal to more than 1800 second (30Min).
|
|
64
|
+for example : 3600 : 1H , 14400 : 4H , 86400 : A day (24H).
|
|
65
|
+
|
|
66
|
+see here more info:
|
|
67
|
+https://support.microsoft.com/fr-fr/help/2668751/you-cannot-download-more-than-50-mb-or-upload-large-files-when-the-upl
|
|
68
|
+
|
|
69
|
+
|
41
|
70
|
## OSX
|
42
|
71
|
|
43
|
72
|
Webdav OSX addresses are similar to:
|
|
@@ -52,6 +81,7 @@ http://<yourinstance>/webdav/ (unsecure)
|
52
|
81
|
- Your login/password will be ask. Use your Tracim credentials.
|
53
|
82
|
- After that, your webdav access should be mounted.
|
54
|
83
|
|
|
84
|
+
|
55
|
85
|
## Linux
|
56
|
86
|
|
57
|
87
|
Webdav Linux addresses are similar to:
|