OwnCloud error - 405 Method Not Allowed

We had just had set-up a server for the university researches by using OwnCloud service. I had created it on rclone config by the webdav >> owncloud type, after entered the URL (link:port), ID and PASSORD for this service.

I am using the last stable RClone on Ubuntu 16.04 and have other remotes created and working fine.

rclone --version
rclone v1.52.1
- os/arch: linux/amd64
- go version: go1.14.4

The config file (removed the sensitive information) is:

[LabREI]
type = webdav
url = https://lab.university:port/login (just a example format)
vendor = owncloud
user = MY_USER
pass = MY_CRIPTED_PASS

I am not able to transfer file to this server using RClone, running rclone sync FILE REMOTE: or rclone copy FILE REMOTE:

By a verbose rclone sync FILE REMOTE: -vv I got:

020/06/10 17:22:27 DEBUG : rclone: Version "v1.52.1" starting with parameters ["rclone" "copy" "Caso03.mdl" "LabREI:" "-vv"]
2020/06/10 17:22:27 DEBUG : Using config file from "/home/h/.config/rclone/rclone.conf"
2020/06/10 17:22:27 DEBUG : fs cache: renaming cache item "Caso03.mdl" to be canonical "/home/h/Downloads"
2020/06/10 17:22:32 ERROR : Attempt 1/3 failed with 1 errors and: read metadata failed: 405 Method Not Allowed
2020/06/10 17:22:32 ERROR : Attempt 2/3 failed with 1 errors and: read metadata failed: 405 Method Not Allowed
2020/06/10 17:22:32 ERROR : Attempt 3/3 failed with 1 errors and: read metadata failed: 405 Method Not Allowed
2020/06/10 17:22:32 INFO  : 
Transferred:   	         0 / 0 Bytes, -, 0 Bytes/s, ETA -
Errors:                 1 (retrying may help)
Elapsed time:         0.0s

2020/06/10 17:22:32 DEBUG : 4 go routines active
2020/06/10 17:22:32 Failed to copy: read metadata failed: 405 Method Not Allowed
``

seems to be a permission issue with the config of your owncloud.
have you tried to search the internet for
owncloud 405 Method Not Allowed
and have you can searched this forum

Don't, until now

I had create a token at my ownCload user and added as bearer_token

[LabREI]
type = webdav
url = https://lab.university:port/login (just a example format)
vendor = owncloud
user = MY_USER
pass = MY_CRIPTED_PASS
bearer_token = LONG_TOKEN

Still have the same behavior.

i do not use owncloud myself.

perhaps a owncloud user here can help you more.

perhaps post at owncloud forum?

Fix just to report here future user, the correct URL for the service is https://lab.univesity:port/remote.php/webdav.

so your problem is solved?

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.