trouble uploading a mht file

See all posts See thread Reply

Re: trouble uploading a mht file new!
by colin, 15 years, 2 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