I have a Zend_Form with a file like:
->addElement('file', 'image', array( 'required' => false, 'label' => 'Venue Image', 'validators' => array( array('IsImage', false), array('Size', false, '2097152'), array('Upload', false), ), ))
And when I use localhost, the image loads successfully. But when I switch to my hosting, a validation error is displayed for the image field. The mimetic of the file 'foto.jpg' could not be detected. What could be the reason for this?
upload zend-framework zend-form
vian
source share