The `.htaccess` rules should not have the starting slash otherwise they
will never get matched. When running the mod_rewrite in .htaccess, the
path is already sanitized and leading slashes stripped.
Document also that this is not the case when the rules are used directly
from the main apache2 configuration the leading slash is present always,
which led to some edit wars of this documentation in the past as it was
not well explained (#8093, #3811).
This matches the code shipped with the .htaccess in the nextcloud server:
https://github.com/nextcloud/server/blob/master/.htaccess
Signed-off-by: Jakub Jelen <jakuje@gmail.com>
Added information about misplaced encryption keys and how to repair them
automatically or manually when needed.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
It seems, that forum was migrated, thus old URL leaded (was redirected) to forum homepage. Fixed by searching new URL of mentioned thread.
Signed-off-by: p-bo <pavel.borecki@gmail.com>
There can be only one link (two links results in broken link) and also link to server bug tracker is part of linked list of bugtrackers, so shouldn't appear there.
Signed-off-by: p-bo <pavel.borecki@gmail.com>
64e0e45
this was necessary for me to have those rules work and also makes perfect sense as a `/` is imho always at the beginning of the path.
Signed-off-by: Joas Schilling <coding@schilljs.com>
Add Apache rewrite rules for webfinger and nodeinfo in case NC is installed in a subdirectory. This fixes#6157.
Signed-off-by: stephang <288494+stephang@users.noreply.github.com>
* Fixed help.nextcloud.org that would result in a page with a certificate issue
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Fixed broken URL
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Fixed broken link to bugtracker documentation
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Fixed broken link to how to get your app signed
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Updated stable installation URL
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Updated URL to Contacts & Calendar troubleshooting
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Fixed many URLs that pointed to nextcloud.org instead of nextcloud.com
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Update admin_manual/issues/general_troubleshooting.rst
Co-authored-by: Daniel <mail@danielkesselberg.de>
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Apply suggestions from code review
Co-authored-by: Daniel <mail@danielkesselberg.de>
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
* Reverted changes on .pot files
Signed-off-by: Juan Carlos Tello <juancarlos.tello@wazuh.com>
Co-authored-by: Daniel <mail@danielkesselberg.de>
We don't use this anymore, so let's also not send people there. The
forum is our main place to get help.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Added troubleshooting section for encryption.
Added section about the command to fix "Bad signature" errors.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
- Change all `.. figure::` elements to `.. image::`
- Add empty `:alt:` so it is clear to screen readers that the images are decorative and don’t duplicate content
- Update styleguide with that info
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
The forward slashes are only needed if the rewrite rules are being put directly into the config file of the apache virtual host. They should not be added to the .htaccess file, as in this case the redirect is not working (this has been tested by me on multiple systems).
You can also see in the discussion of the bug report #1069 after it was merged, that the reporter actually put the rules into his apache conf, instead of a .htaccess and that somebody else was reporting, that it was only working without the forward slashes in a .htaccess file.
Added a note indicating that mod_rewrite is required for .well-known redirects in the .htaccess file. I stumbled across this missing requirement when upgrading to NC 13.0.