This language issue has bothered me for a long time. I need your help.
Problem description:
My live website http://www.startmandarin.co.uk is working properly. The live environment is
Joomla: 1.0.12
MySql : 5.0.45
I also have a copy of my website on my local computer. Some unexpected characters displayed here. The local environment is:
JSAS server 1.10
PHP: 4.4.4
MySql: 4.1.14
My website has both English and Chinese characters. So, in my template folder, I have following codes in the index.php
Code: Select all
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Code: Select all
DEFINE('_ISO','charset=utf-8');
I think I have done everything to set the encoding to be UTF-8. But when I browse my website locally, the browser still picks up ISO-8859-1 as the character encoding. I open the page source, I found following codes:
Code: Select all
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Cheers