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);就可以了!

 

相关文章:

  • 2021-08-23
  • 2021-10-07
  • 2021-12-01
  • 2021-12-15
  • 2021-04-09
  • 2021-12-25
  • 2021-10-02
  • 2021-10-17
猜你喜欢
  • 2021-04-27
  • 2022-01-21
  • 2022-12-23
  • 2022-01-01
  • 2022-01-10
  • 2022-01-03
相关资源
相似解决方案