class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
It looks like your system is reporting an incorrect file size for the upload file. file_src_size is equal to -195, which is weird. This explains also why the Filenfo extension reports the application/x-empty MIME: it reports the MIME type for an empty file.
Check that the upload works with your PHP setup, and that the file is actually uploaded.
Besides, if MIME detection fails, then the extension is used. But in your case, the MIME is properly detected.Reply
Check that the upload works with your PHP setup, and that the file is actually uploaded.
Besides, if MIME detection fails, then the extension is used. But in your case, the MIME is properly detected.