trouble uploading a mht file

See all posts See thread Reply

Re: trouble uploading a mht file new!
by colin, 16 years, 11 months ago
You need to add the corresponding MIME type to the list of allowed MIME types.

Here, you log shows that the file you try to upload has a MIME type which is message/rfc822

For instance, add it to the allowed parameter of the class, before you call process():
$handle->allowed[] = 'message/rfc822';
Reply