For import error from CSV file, try this:
In the addon file: Admin/Controller/AdminCP.php
Find:
protected function process_import_text_field($string)
{
$string = (string) $string;
return iconv(mb_detect_encoding($string, mb_detect_order(), true), "utf-8", $string);
}
Replace...