I am using the mime_content_type()
function for file upload, it works fine on localhost however I'm encountering the following error on my live server:
Fatal error: Call to undefined function mime_content_type()
I am using the mime_content_type()
function for file upload, it works fine on localhost however I'm encountering the following error on my live server:
Fatal error: Call to undefined function mime_content_type()
Update:
mime_content_type()
is no longer deprecated, php7 has support for this function now.
Earlier version of my answer:
mime_content_type()
is deprecated, probably because [fileinfo][1] can give you those information about the file and more.You can use finfo() like shown below,
function _mime_content_type($filename) { $result = new finfo(); if (is_resource($result) === true) { return $result->file($filename, FILEINFO_MIME_TYPE); } return false; }
You must have the mime_magic
extension on. Check your php.ini and look in phpinfo(). By the way this function has been deprecated as the PECL extension Fileinfo provides the same functionality (and more) in a much cleaner way.
Windows users must include the bundled php_fileinfo.dll DLL file in php.ini to enable this extension.
The libmagic library is bundled with PHP, but includes PHP specific changes. A patch against libmagic named libmagic.patch is maintained and may be found within the PHP fileinfo extensions source.
Edit your php.ini
file and uncomment extension=fileinfo
.
Restart your HTTP server (e.g. Apache).
echo mime_content_type($path_absolute.$file);//Outputs: application/pdf
Edit your php.ini
file and uncomment extension=php_fileinfo.dll
.
Restart your HTTP server (e.g. Apache).
echo mime_content_type($path_absolute.$file);//Outputs: application/pdf
If you are on shared hosting, chances are that the fileinfo PHP extension is either not enabled or installed.
In the case where it's not enabled, navigate to the Software section of CPanel (consult documentation of your control panel if you're not using CPanel) and click Select PHP Version (or something related to that) and enable the extension by checking its box and saving your action.
If it's not installed, the extension won't be part of the PHP extensions at cPanel > Software > Select PHP Version > Extensions
, edit your php.ini
file and uncomment extension=php_fileinfo.dll
if you're on Windows. Consult your hosting provider's docs if any of these don't work.