finally got it. edit /classes/Tools.php Find:
static public function iconv ( $from , $to , $string )
{
if (function_exists('iconv'))
return iconv($from, $to.'//TRANSLIT', str_replace('¬•', '¥', str_replace('¬£', '£', str_replace('‚Ǩ', '€', $string))));
return html_entity_decode(htmlentities($string, ENT_NOQUOTES, $from), ENT_NOQUOTES, $to);
return $string ;
}
Replace with:
static public function iconv ( $from , $to , $string )
{
/*if (function_exists('iconv'))
return iconv($from, $to.'//TRANSLIT', str_replace('¬•', '¥', str_replace('¬£', '£', str_replace('‚Ǩ', '€', $string))));
return html_entity_decode(htmlentities($string, ENT_NOQUOTES, $from), ENT_NOQUOTES, $to);*/
return $string ;
}