Código PHP:
   if(!$this->errors) {
                    $checkImageMedia = new CoreImageGetimagesize($request->getPost('media'));
                    if(    !is_array($info = $checkImageMedia->getSize())  ) {
                        $this->errors['media'] = $this->_('Invalid image type!');
                    } else {
                        $allowed = $this->getAllowedTypes();
                        if( !array_key_exists($info['mime'], $allowed) ) {
                            $this->errors['media'] = $this->_('Image type is invalid!');
                        } 
    Invalid image type!
como se activa para que pueda subir ese formato ? gracias estare esperando sus ayudas
 
 

