problems to upload large file with webdav to networkdrive on windows
Added by escctrl almost 12 years ago
I am runnring lighttpd on my router with openwrt. To use the webdav-mod from lighttpd i had to compile lighttpd on my own in the sdk from openwrt because so i can set the "option" in the makefile from lighttpd:
--with-webdav-props \
--with-webdav-locks \
--> without that, windows cant connect to the networkdrive over webdav.
That works very great. Download files from the networkdrive to my local machine works about 25mb/s.
My Problem is:
Uploading files greater than 16 mb doesnt work. windows copy 10% and then stops. no error message or so.
uploading files smaler than 16 mb works great.
i tried several things in the config file of lighttpd:
server.kbytes-per-second=512
connection.kbytes-per-second=512
server.network-backend = "writev"
server.network-backend = "write"
without any success.
thanks for reply or help
escctrl
Replies (1)
RE: problems to upload large file with webdav to networkdrive on windows - Added by escctrl almost 12 years ago
I found the solution on my own.
I have to change in the config of lighttpd the server.upload-dirs to an folder wich has enough space for "temp":
server.upload-dirs = ( "/home/temp/" )