-
Notifications
You must be signed in to change notification settings - Fork 4
FAQ
Download the Nextcloud server archive from https://download.nextcloud.com/server/releases/. Keep in mind to select the version you are currently running.
Extract the archive and copy the file core/js/mimetypelist to the same folder of your Nextloud installation.
In a console run the following command within the nextcloud root folder - it should not return any error:
php occ integrity:check-core
Please do not create a new mimetypelist using OCC after this step! This may create a mimetypelist which would not pass the integrity check.
In addition you need to delete the filetype icons:
rm core/img/filetypes/drawio.svg
rm core/img/filetypes/dwb.svg
Since there is no official way to add filetype icons in an app, older versions copied the two icons to the Nextcloud core folder core/img/filetypes/. However this will cause integrity errors, because Nextcloud does not expect these files there.
To address this, version 4.3.0 or newer will not copy the filetype any longer. This means, files with the extension .drawio or .dbw will only be displayed with the default file icon or a preview, if previews are enabled.
This may change in the future, but there is no date planned yet for this.