doc/pages/04.applications/10.docs/nextcloud_keeweb/app_nextcloud_keeweb.md
Kuba Orlik e4b42986b8
Update app_nextcloud_keeweb.md
Mention a fix for when keeweb interface does not load properly/at all
2023-12-02 19:11:17 +01:00

1.5 KiB

title template taxonomy routes
KeeWeb for Nextcloud docs
category
docs, apps
default
/app_nextcloud_keeweb

The KeeWeb application is a password manager integrated into Nextcloud. For example, it allows you to read a KeePass file (.kdbx) stored on your Nextcloud instance.

Fix: .kbdx files don't open in keeweb

Sometimes Nextcloud does not let the application support these files, which makes it impossible to read them from KeeWeb. To remedy this, a solution exists.

Go to the Nextcloud configuration directory:

cd /var/www/nextcloud/config/

If it does not exist, create the mimetypemapping.json file whose owner is the user nextcloud :

sudo su nextcloud -c "nano mimetypemapping.json"

Then add in this file the following text:

{
    "kdbx": ["x-application/kdbx"]
}

Save the file (CTRL + o) and exit nano (CTRL + c).

Then run a scan by executing next command as root:

sudo -u nextcloud php /var/www/nextcloud/occ files:scan --all

Now the problem is fixed.

Fix: the interface does not load propely

If when opening keeweb you see a glitched interface, try disabling the "Yunohost portal shortcut" in Yunohost Admin panelToolsYunohost SettingsOtherEnable the small 'YunoHost' portal shortcut square on apps (set to disabled). See https://github.com/jhass/nextcloud-keeweb/issues/143#issuecomment-1686937448