Getting the same error message since last update when saving settings…
Also the backup option seems to have been broken too.
When I make a backup with the button in the backup tab, I receive the email but there is no file created and the log indicate success for the backup process…
Anyone got the same backup issue ? Might be separated issue but happen only since the last update!
I had the same problem.
The solution i used will only work for php >= 5.3.0
You need to comment out line 73 and 74 in members-import.php :
// split into values
//$arr_values = str_replace('"', '', $row);
//$arr_values = split(",", $arr_values);
and add this line :
$arr_values = str_getcsv($row, ',', '"', '\\');