I am trying to use the CSV Me plugin in order to let our client upload a csv file to the database. When i try to upload a file as a test i get the following error message:
Fatal error: Call to undefined function finfo_open() in /home/diamondh/public_html/wp-content/plugins/csv-me/csv_me_index.php on line 110
I took a look at the file in question and found line 110 looking like:
$finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension
As far as i know finfo_open()
is a built in part of php so why would it be undefined?
BONUS: Anyone know any better solutions for getting a csv into the wordpress database?