i am using impex to import to vb from other CMS but although our language is not latin-based after importing most of time charset error occur
i am using cleaner.php to edit this charachter problem but there are some problems like following
1- i can edit except usernames charachter problems. because thre is no username options. why? or is it possible to add this options?
2- charachters are not like i set for examle
i am setting following
but after editing
?o?ul is cogul ( this is wrong) it must be çoğul
kas?m is kasim ( this is wrong) it must be Kasım
i am using cleaner.php to edit this charachter problem but there are some problems like following
1- i can edit except usernames charachter problems. because thre is no username options. why? or is it possible to add this options?
PHP Code:
$do_posts = true;
$do_sigs = false;
$do_thread_titles = false;
$do_pm_text = false;
$do_pm_text_title = false;
i am setting following
PHP Code:
$replacer = array(
'?o?ul' => 'çoğul',
'kas?m' => 'Kasım',
);
?o?ul is cogul ( this is wrong) it must be çoğul
kas?m is kasim ( this is wrong) it must be Kasım
Comment