Problem with upload PNG images

See all posts See thread Reply

Re: Problem with upload PNG images new!
by colin, 13 years, 5 months ago
Your system's MIME detection tools are out of date or badly set up. mime_content_type should not return text/plain for an image.

If it is buggy, you can deactivate mime_content_type by setting mime_magic to false in the init() function:
$this->mime_magic               = false;
Reply