If the problem is having Czech letters in the links, you might want to check the regular expression for matching Wiki links... for example this has been talked about on the PhpWiki web site:
The following regexp in lib/config.php works fine for swedish characters.
http://wiki.ora.cz. It seems that it saves (into MySQL) the czech letters as "extended characters" - ampersand and a value. On the output, the ampersand is changed to ampersand and amper, and that is the trouble. The nicest would be if it didn't save it this strangely into the db :-).
Thanks for caring !
Moses
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've been experimenting a little, and it seems to work now - I changed the charset in the headers of the pages ... (i did think of it before, but forgot to change the editing page, too). sory for bothering you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i can't find where and what is done to the text of the page, but no czech letter is displayed correctly. Could there be a trouble in MySQL ?
If the problem is having Czech letters in the links, you might want to check the regular expression for matching Wiki links... for example this has been talked about on the PhpWiki web site:
The following regexp in lib/config.php works fine for swedish characters.
$WikiNameRegexp = "(?<!A-Za-z0-9?)(A-Z?a-z?+){2,}(?!A-Za-z0-9?)";
If it 's not a problem with links but with all text, could you give us a URL to a sample page?
~swain
http://wiki.ora.cz. It seems that it saves (into MySQL) the czech letters as "extended characters" - ampersand and a value. On the output, the ampersand is changed to ampersand and amper, and that is the trouble. The nicest would be if it didn't save it this strangely into the db :-).
Thanks for caring !
Moses
http://phpwiki.sourceforge.net/phpwiki/index.php?SandBox
yours does the same :-).
I've been experimenting a little, and it seems to work now - I changed the charset in the headers of the pages ... (i did think of it before, but forgot to change the editing page, too). sory for bothering you.