Hey
Im trying to use the flash uploader module for uploading more than 1 file at a time in the admin area, iv been looking through the documentation but cant get it to upload more than one file at a time, any ideas on what im doing wrong?
static $has_one = array ('BigFile' => 'File');
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Content.File", new SWFUploadFileIFrameField('BigFile','Upload a file',array('file_upload_limit' => '2')));
return $fields;
}
The code doesnt seem to be triggering an error it just displays a javascript alert.
"You have attempted to queue too many files.
You may select 1"
thanks