Joomla 2.5 中文语言包安装模板报错

       Joomla 2.5后台安装中文语言包后,想安装新模板,后台报错:Joomla 2.5 中文语言包安装模板报错:Notice: iconv() [function.iconv]: Detected an illegal character in input string in c:\syta\libraries\joomla\utilities\string.php on line 562

 

    解决方法如下:

    把string.php中eturn iconv($from_encoding, $to_encoding.'//TRANSLIT', $source);
    改为return iconv($from_encoding, 'gbk//IGNORE', $source);就可以了!

 

你可能感兴趣的:(joomla)