mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 00:52:16 -06:00
win7 webdav workarounds
This commit is contained in:
parent
fe57321853
commit
f0e98d6e0d
|
@ -723,6 +723,7 @@ known issues:
|
|||
* winxp cannot show unicode characters outside of *some range*
|
||||
* latin-1 is fine, hiragana is not (not even as shift-jis on japanese xp)
|
||||
* win7 cannot access servers which require authentication unless you use https or [enable basic authentication](./contrib/webdav-basicauth.reg) for http
|
||||
* win7 has a bug where it doesn't actually send the password to the server, so please type your password into the username field
|
||||
|
||||
|
||||
## file indexing
|
||||
|
|
|
@ -32,6 +32,9 @@ however if your copyparty is behind a reverse-proxy, you may want to use [`share
|
|||
### [`webdav-basicauth.reg`](webdav-basicauth.reg)
|
||||
* enables webdav basic-auth over plaintext http
|
||||
|
||||
### [`webdav-unlimit.bat`](webdav-unlimit.bat)
|
||||
* removes the 47.6 MiB filesize limit when downloading from webdav
|
||||
|
||||
### [`cfssl.sh`](cfssl.sh)
|
||||
* creates CA and server certificates using cfssl
|
||||
* give a 3rd argument to install it to your copyparty config
|
||||
|
|
BIN
contrib/webdav-basicauth.reg
Normal file
BIN
contrib/webdav-basicauth.reg
Normal file
Binary file not shown.
15
contrib/webdav-unlimit.bat
Normal file
15
contrib/webdav-unlimit.bat
Normal file
|
@ -0,0 +1,15 @@
|
|||
@echo off
|
||||
rem removes the 47.6 MiB filesize limit when downloading from webdav
|
||||
|
||||
at > nul
|
||||
if %errorlevel% neq 0 (
|
||||
echo you must run this as admin
|
||||
pause
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WebClient\Parameters /v FileSizeLimitInBytes /t REG_DWORD /d 0xffffffff /f
|
||||
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters /v FsCtlRequestTimeoutInSec /t REG_DWORD /d 0xffffffff /f
|
||||
net stop WEBCLIENT
|
||||
net start WEBCLIENT
|
||||
pause
|
Loading…
Reference in a new issue