配置:
page.config {
additionalHeaders = Content-Type:text/html;charset=utf-8
metaCharset = utf-8
renderCharset = utf-8
}
这就是:
page.10.marks {
FOO = TEXT
FOO.value = ÜüÖöÄäß
}
输出是“谜语”符号。也在源代码中。我需要在以后用其他语言填写特殊字符时添加更多标记。这个问题是什么?
答案 0 :(得分:1)
在localconf.php中设置:
$TYPO3_CONF_VARS['SYS']['setDBinit'] = 'SET NAMES utf8;'.chr(10).'SET SESSION character_set_server=utf8;';
$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf8';
但是,这(可能)要求将数据库表的排序规则设置为UTF8,例如,的 utf8_general_ci 即可。如果要启动项目,请设置排序规则。如果是在localconf.php中进行设置之前,它是一个正在运行的网站 convert the data 。
警告:如果是正在运行的网站,请先在副本上进行测试。
答案 1 :(得分:0)
在Installtool中,您需要启用forceCharset = utf8并在localconf.php` $ TYPO3_CONF_VARS ['SYS'] ['setDBinit'] ='set names utf8'和ini_set('default_charset = utf-8')中。来源:http://wiki.typo3.org/UTF-8_support。