允许在后端的 FAL 中上传 DOCUMENT,EXCEL 中的 TYPO3 文件

Allowing to upload DOCUMENT, EXCEL files in TYPO3 in FAL in the backend

有什么方法可以让 doc 和 excel 文件在后端的 FAL 上传中?例如,我们在 TCA

中有这个
\TYPO3\CMS\Core\Resource\File::FILETYPE_AUDIO => [
    'showitem' => '
    --palette--;LLL:EXT:lang/locallang_tca.xlf:sys_file_reference.imageoverlayPalette;imageoverlayPalette,
    --palette--;;filePalette',
],

但没有FILETYPE_DOCUMENT或类似的东西

允许上传的文件类型通常在 Installtool 中调整,位于 [BE][fileDenyPattern]
在版本 8.7 中,默认条目是 \.(php[3-7]?|phpsh|phtml|pht)(\..*)?$|^\.htaccess$ 以避免访问 php 文件和 .htaccess.

有关 TCA 设置,请查看此处:https://docs.typo3.org/typo3cms/TCAReference/ColumnsConfig/Type/Input.html#linkpopup
提到通常没有配置限制。