Typo3 multilanguage
Found in: Typo3
Easy setup for multilanguage display
Problem
How to display webpages in other languages ( not listed in Extention Manager )?
Solution
Change two files as following. Then, webpages and contents can be edited and displayed in any unicode languages:
1) localconf.php in directory typo3conf
-----------------------------------------
$TYPO3_CONF_VARS["BE"]["forceCharset"] = 'utf-8'; // Modified or inserted by TYPO3 Install Tool.
-----------------------------------------
2) template.php in directory typo3
-----------------------------------------
// INTERNAL
// var $charset = 'iso-8859-1'; // Default charset. see function initCharset()
var $charset = 'utf-8'; // charset to utf-8
------------------------------------------
Return to >> search