0

I'm trying to configure my Jodit editor (v.3.0) in order to be able to upload also audio files.

I've put

$config['extensions'} = ['jpg', 'png', 'gif', 'jpeg', 'wav', 'mp3'];

in my config file and it stopped giving me the error "File type is not in white list", but it doesn't appear to execute any action.

What can I try? Thanks

4

1 回答 1

1

首先你用 } 关闭了扩展数组键,但我认为这只是一个错误类型

对于这个问题:我发现我尝试加载的 mp3 实际上是一个 mpeg 文件,即使扩展名是 .mp3

如何测试:到你的连接器,打开文件 connector>vendor>jodit>application>src>components>BaseApplication.php 并注释掉所有“文件类型不在白名单中”的“if”语句(对我来说是365 号线附近)。

现在尝试上传文件,您将看到真正的扩展名。我的是 mpeg,在删除 BaseApplication.php 文件的注释并将 mpeg 扩展名添加到 config.php 后,文件按预期上传。

希望这可以帮助你和其他人(甚至我未来的我再次搜索这个问题呵呵)

于 2021-06-29T11:35:07.997 回答