File blueprint: accept doesn't accept all extensions

Hi,

I’ve got the following blueprint:

# blueprints/files/document-default.yml

accept:
  extension: key, numbers, pages, 7z, rar, tar, zip, md, xlsx, xls, pptx, ppt, docx, doc, odp, odt, ods, rtf, pdf

# columns:
# ...

but not all of these files can be uploaded:

Is there anything I’m missing here?

kirby version: 3.9.2

Some of these file types are not supported out of the box, see docs for supported file types:

You can however register your own file types in a plugin:

1 Like

Ah, I was only checking the reference for files, should have looked into the guide, too.
Easy fix then! =)
Thank You Sonja!