Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How i can change files types to upload? Advanced editor
vladuxa03
New
i'm trying to upload apk, and i see error.
0
Comments
It should be
$Configuration['Garden']['Upload']['AllowedFileExtensions']
.You would have to add
$Configuration['Garden']['Upload']['AllowedFileExtensions'] = array('txt', 'jpg', 'jpeg', 'gif', 'png', 'bmp', 'tiff', 'ico', 'zip', 'gz', 'tar.gz', 'tgz', 'psd', 'ai', 'fla', 'pdf', 'doc', 'xls', 'ppt', 'docx', 'xlsx', 'log', 'rar', '7z', 'apk');
to your
/conf/config.php
. You can change the content in the array to whatever you like.Thank!