/forum/includes klasörü içindeki class_zointstags

php dosyasını bir yazı editörü ile açın ve aşağıdaki kodu bulun (274

satırda bulunur bu kod
$tags = str_replace('-', ' ', $tags);
Bu kodun altına şunları ekleyin ve dosyayı kaydedip ftpdeki yerine kopyalayın
$tags = str_replace('ı', 'i', $tags);
$tags = str_replace('İ', 'i', $tags);
$tags = str_replace('ğ', 'g', $tags);
$tags = str_replace('Ğ', 'g', $tags);
$tags = str_replace('ü', 'u', $tags);
$tags = str_replace('Ü', 'u', $tags);
$tags = str_replace('ç', 'c', $tags);
$tags = str_replace('Ç', 'c', $tags);
$tags = str_replace('Ş', 's', $tags);
$tags = str_replace('ş', 's', $tags);
$tags = str_replace('ä', 'ae', $tags);
$tags = str_replace('Ä', 'a', $tags);
$tags = str_replace('ß', 'b', $tags);
önceden böyle yapmamıştım kullanıyordum bir sorun yokturdu sonradan neden böyle bir sorun çıktı anlamadım üstteki komutu denedim ve oldu çözdüm tşkler.