-
Notifications
You must be signed in to change notification settings - Fork 816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"403 Forbidden" to "MOVE" files #1293
Comments
This happens for me after upgrading the client to 2.6.0stable-Win64 (build 20190927) and upgrading server to 16.0.5. Only happens with files larger than 10MB, which require being uploaded in chunks. Most likely related to #1171 nginx logs:
update: can confirm that uploading of big files with owncloud client version 2.5.4 (build 11415) works:
|
Also see: |
Hi, I got the very same error on my Nextcloud installation and although in my case it has not been related to a bug in Nextcloud, I'm leaving a note just in case someone with the same issue arrives here looking for a piece of advice (as I did). I had the webserver (Nginx) configured to block access to hidden files and since the MOVE requests operate on a hidden file, they had been blocked. As simple as that, but took me hours to figure it out... |
Apologies for creating noise here, but... @chesio That was it! I had a config that blocked hidden files and I was so frustrated after hours of debugging! Thank you so much for having it recorded here! :) After dozens of pages I found this! |
This bug report did not receive an update in the last 4 weeks. Please take a look again and update the issue with new details, otherwise the issue will be automatically closed in 2 weeks. Thank you! |
This bug report is getting automatically closed due to no answer since the issue has been staled. Thank you! |
Did you just ignore it or did you find a way around this? |
I've added a rule to location ~ ^/remote\.php/dav/uploads/.*/\.file$ {
allow all;
} |
I was having the same issue, what solved it for me was wrong permissions : www-data was not allowed to write on my external mount. |
This was my problem and fixing the permissions solved it. |
I have been experiencing this issue in 2.5.2 and earlier: owncloud/core#33119
Could I suggest you backport the fix ?
owncloud/client#6834
Thanks
The text was updated successfully, but these errors were encountered: