PDA

View Full Version : Changing File Type Restrictions for Image Upload


marc38009
01-09-2010, 02:10 PM
I would like to upload .mp3s via the image upload tab of image properties. It says it is not a supported file type. Where in the files may I find the list so that I may add .mp3?

Thank you.

Eric Mittman
01-12-2010, 10:36 AM
You can add this to the list of allowed file types for the images in this file:

HTMLEditor/editor/filemanager/connectors/php/config.php

Around line 142 there is the list of allowed extensions:


$Config['AllowedExtensions']['Image'] = array('bmp','gif','jpeg','jpg','png') ;


You can just add mp3 to the list like this:


$Config['AllowedExtensions']['Image'] = array('bmp','gif','jpeg','jpg','png', 'mp3') ;