7913 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Can't import files
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 843 Views |
-
Can't import files

4 November 2009 at 4:47am
Hi there
I have a problem with DOM import function - I can upload only images, not the files. When I'm trying to import files, all checkboxes are inactive (see attach).
Where could be a problem?
SS 2.3.3
latest DOM build -
Re: Can't import files

4 November 2009 at 5:24am
The import function respects your setAllowedFileTypes() list, so anything that isn't in there will be greyed out.
-
Re: Can't import files

4 November 2009 at 5:43am
Thanks for your answer. Yes, it was related to "setAllowedFileTypes". It was uppercases, because that doesnt work:
$Media->setAllowedFileTypes(array('MOV', 'MPG','AVI','FLV', 'MP3'));
Changed to:
$Media->setAllowedFileTypes(array('MOV', 'MPG','AVI','FLV', 'MP3', 'mov', 'mpg','avi','flv', 'mp3'));
and now everything works perfect!
-
Re: Can't import files

4 November 2009 at 5:57am
Ahh.. thanks. I should remove the case sensitivity. I did for uploads, but I guess imports got overlooked.
| 843 Views | ||
|
Page:
1
|
Go to Top |

