No GIF create support

See all posts See thread Reply

Re: No GIF create support new!
by colin, 13 years, 4 months ago
You are uploading a zip file:
file_src_name : Zapis_ki.zip

Your system detects the MIME type as application/x-zip:
MIME type detected as application/x-zip by UNIX file() command

But in your code, you allow only images:
$handle->allowed =  $handle->allowed = array('image/jpeg','image/gif','image/png');
Reply