PHP Fileinfo Is Undefined Function

Fileinfo functions not working in Xampp 1.8.2

Go to php.ini (or simply from xampp window, near Apache -> Config -> php.ini)
Find line:

;extension=php_fileinfo.dll

and uncomment it

Fileinfo not working in Xampp v3.2.1

Just go to your xampp php.ini and uncomment the line :

;extension=php_fileinfo.dll

to

extension=php_fileinfo.dll

and dont forget to restart apache

Call to undefined function finfo_open()

In your php.ini there should be something similar to ;extension=fileinfo.so or ;extension=php_fileinfo.dll. You will need to remove the ; to enable these. It looks like it's trying to call a function from the .dll but cannot find it.



Related Topics



Leave a reply



Submit