Topic: Czech version - it doesn't display czech signs ěščřžýáíéů

I have installed forum at http://bohumin.php5.cz also with CZECH lang. Unfortunately, it doesn't display czech signs correctly. Those are always replace with "?" symbol. I've tried to control all setups. What to do and how to check where the fault is?
Bohumin forum

Re: Czech version - it doesn't display czech signs ěščřžýáíéů

Is cp-1250 the preferred character set for czech?

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: Czech version - it doesn't display czech signs ěščřžýáíéů

this is the error of the czech translation.

edit file lang/Czech/common.php in folder where you have punBB.

see line number 32.
there should be this:

'lang_encoding'            =>    'cp-1250',

thats it. cp-1250 is a not valid encoding for web pages.
so change it:

'lang_encoding'            =>    'windows-1250',

now should be everything OK.

4 (edited by sejrac 2006-01-05 21:09)

Re: Czech version - it doesn't display czech signs ěščřžýáíéů

Ouch... i fixed this error in my translation and sent to Rickard. Thx.