I use ubb.threads for a very long time starting with a v6 version centuries ago. I life in Germany and this includes to use german special chars like öäüß (umlaute). This can you drive crazy and I like to share my experience with this and how to handle it.

If you install a brand new version 7.6.2 from stock you create a utf-8 databse, the install script create utf-8 tables and the language files (generic.php) contains the utf-8 string. All language files are in utf-8 coding. So you dont have any trouble and can use any king of char you like. It display always correct. The only thing to watch out for: while editing a language file offline use a editor (I use notepad ++) who can keep the file coding. Be carefull, check if utf-8 ist selected and not ansi or something else.

The second precaution is coding the special chars with html. Example
Code
Ä -> Ä
I alwas use the coding in my language files to avoid any surprise. But watch out for the mailer text strings! Some of them sent out in plain text and the coding will not parsed. Theses strings must contain the char itself.

Back to my old installation and the problems I encounter after updating to 7.6.2

My database runs in utf-8 but the tables was created in swedish-latin-1 long time ago. To use german chars the coding in generic.php was set to iso-8859-1. This work but if you interact with rss feeds to a utf-8 site you run in trouble. You will see ? for a special char. Sad.

Now we have to change everything. Setting the language string in generic.php to utf-8 dont fix our problem. We must digg little bit deeper. Close your forum and do a backup of the database. I use mysqldumper for this. We need it later for some steps because the tables are to big for normal importing.
After doing your backup go to phpmyadmin and watch your database tables. We have to chance the collate to utf-8. This can be done with this SQL-statement
Code
ALTER TABLE table CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
or from the options menu inside the table.
If you have done this to all tables go to your generic.php and set the language code to utf-8
Now you encounter a lot of display errors in your forum. The special chars look strange and need to convert to display properly. I go this way to do it:
Create a test post with all you chars you need to convert. View this post with phpmyadmin in uub_Post table at the end of the table. You will see the correct coding and can use it für copy/paste for the next step.
Next step: export with mysqldumper the table for posts, download it, edit it with notepad++ and do a search&replace for any special char in your test posting. Re-Upload it and do a restore of this table with mysqldumper. Repeat this with Post-Topic and both private posts tables. This will convert 99% of all chars.

After this operation your ubb runs in utf-8 and is prepared for V7.7
Please note that is my way to do it without any warrenty. You should know to handle phpmyadmin and mysqldumper

Greetings
Zarzal


my board: http://www.dragonclan-forum.de
my hobby: http://www.biker-reise.de
Ich kann bei Fragen zu UBBthreads in Deutsch weiterhelfen oder es zumindest versuchen