You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrade I have a message .well-known URLs, failed on: /.well-known/caldav
Context
Hardware: Old laptop or computer
YunoHost version: 11.2.17.1
I have access to my server: Through SSH | through the webadmin | direct access via keyboard / screen | ...
Are you in a special context or did you perform some particular tweaking on your YunoHost instance?: yes
If yes, please explain: I have the found the issue upgrading to nextcloud 29.0.2~ynh1 (stable branch) and have try the testing branch nextcloud 29.0.3~ynh1
If upgrading, current package version: 29.0.3~ynh1 (was also with 29.0.2~ynh1)
Steps to reproduce
If you performed a command from the CLI, the command itself is enough. For example:
If the error occurs in your browser, explain what you did:
Go to ' the admin settings parameters on nextcloud
**See error Your web server is not properly set up to resolve .well-known URLs, failed on: /.well-known/caldav For more details see the [documentation ↗](https://docs.nextcloud.com/server/29/go.php?to=admin-setup-well-known-URL). **
Expected behavior
*Keep the /.well-known/caldav working after an update *
After trying a lot of things to debug, like editing the nginx nextcloud.conf, I have understood my problem is because for subfolder installations because this will be checking for /subfolder/.well-known/carddav instead of /.well-known/carddav whereas applications using WebDAV will be querying for /.well-known/carddav without the subfolder.
So this issue comes with a nextcloud installed on a subpath URL like https://mydomain.tld/nextcloud/
Be careful, it seems not been a good idea to try this patch !
The issue will be fixed in version 29.0.4
While browsing the discussion, MichaIng reports that carddav and caldav work perfectly but it is the verification mechanism that bug, that is why the fix is not considered urgent and that it must be checked that it will not break something else.
In short, modify by hand php files of such a complex application, I will avoid until the developer has not asked.
The trailing slash is now not needed anymore, but sub directories are still not supported. But a PR is open, and awaits review/suggested adjustments: nextcloud/server#46255
Describe the bug
After upgrade I have a message
.well-known URLs, failed on: /.well-known/caldav
Context
29.0.2~ynh
1 (stable branch) and have try the testing branch nextcloud29.0.3~ynh1
29.0.3~ynh1
(was also with29.0.2~ynh1
)Steps to reproduce
If you performed a command from the CLI, the command itself is enough. For example:
If the error occurs in your browser, explain what you did:
Your web server is not properly set up to resolve .well-known URLs, failed on: /.well-known/caldav For more details see the [documentation ↗](https://docs.nextcloud.com/server/29/go.php?to=admin-setup-well-known-URL).
**Expected behavior
*Keep the
/.well-known/caldav
working after an update *This issue is related there :
nextcloud/server#45033
After trying a lot of things to debug, like editing the nginx nextcloud.conf, I have understood my problem is because for subfolder installations because this will be checking for /subfolder/.well-known/carddav instead of /.well-known/carddav whereas applications using WebDAV will be querying for /.well-known/carddav without the subfolder.
So this issue comes with a nextcloud installed on a subpath URL like
https://mydomain.tld/nextcloud/
This post help me resolve the issue: nextcloud/server#45033 (comment)
So editing the file
/var/www/nextcloud/apps/settings/lib/SetupChecks/CheckServerResponseTrait.php
and change the line 64with :
The text was updated successfully, but these errors were encountered: