Hello.
First of all, I wanna tell that I upgraded yesterday from SMF 1.1.10 to 2.0 RC2. With version 1.1.10 those letters were working fine and without any problems.
I'm using English-utf8 as default language, and also I have Croatian-utf8 but there is no difference if I change it. It's not working and with croatian language.
Coallition in my database is utf8_unicode_ci which I changed using this manually made script:
<?php
$db = mysql_connect('localhost','database_username','database_password');
if(!$db) echo "Cannot connect to the database - incorrect details";
mysql_select_db('database_name'); $result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key => $value) {
mysql_query("ALTER TABLE $value COLLATE utf8_unicode_ci");
}}
echo "The collation of your database has been successfully changed!";
?>Of course I replaced with my infos and it did the job.
In Settings.php is like this:
$db_character_set = 'utf8';$language = 'english-utf8'; I have searched the entire forum and I think i followed everything right but still I can't see thos letters (

are appearing instead of those letters)
The strange thing is that letters š, ž are working but not č, ć, đ.
Any reasonable solution ?