André Schild

Results 144 comments of André Schild

Yes, please send a merge request, I will then review it

@TobiWineKenobi What does work in your environment? continue = false, oder continue = true?

I have merged your patch request. But so far I have not been able to reproducte the problem, also not on 18.0.4 What sardine.jar version are you using? I have...

If you can give me a not working configuration of an webserver we could do real tests with it. Have you tested the uploadFile method with continueHeader true/false? Does one...

https://trac.cyberduck.io/wiki/help/en/howto/mount/issues/fastcgi#ZerobytefiletruncateissuewithNextcloudandownClouddeployedwithFastCGI

And some more https://github.com/nextcloud/server/issues/7995 Basically it's a server problem, where the webserver talks with fpm to php and the content length is not set on the put operation. Since InputStream...

The jackrabbit library uses not chunked uploads, with a known length. not sure where the length is known, since an inpurtstream can be "indefinite" length The sardine uses chunked uploads,...

The problem is not on NextCloud side, but rather the webserverPHP connection. As soon as it's using fpm or fcgi and the data is sent in chunked mode, any client...

I have added a method to upload a `File`insteand of `InputStream` This works fine, also when the server is having problems with chunked uploads. You can use the 11.3.0-SNAPSHOT to...

The 11.3.0 release deprecates the `uploadFile(Inputstream)`methods and provides an `uploadFile(File)`method which solves this problem. If someone has another idea how to work arround the server problem, feel free to post...