• 15-02-2007, 15:30:30
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    bazı sıtelerden vbulletıne verı çekıyorum ancak turkce karakterler çıkmıyor bu yuzden butu haberler bozu kgelıyor bunu nasıl duzeltebılırım ?
  • 06-02-2009, 09:30:18
    #2
    aynı sorunu bende yasıyorum.yokmu bılgısı olan bı babayiğit
  • 06-02-2009, 09:51:53
    #3
    Bu Dosyayı Editör Problemi İle Açın forum/includes/cron/rssposter.php
    Aşağıdaki Kodu Arayın
    PHP- Kodu:
    // ################################################## ######################
    // ######################### START MAIN SCRIPT ############################
    // ################################################## ######################
    Altına Bu Kodu Ekleyin


    function trtrans ($str)
    {
    $trans = array("ÄŸ" => "ğ",
    "Ä".chr(158) => "Ğ",
    "ı" => "ı",
    "İ" => "İ",
    "ç" => "ç",
    "Ç" => "Ç",
    "ü" => "ü",
    "Ü" => "Ü",
    "ö" => "ö",
    "Ö" => "Ö",
    "Å".chr(158) => "Ş",
    "ÅŸ" => "ş",
    "ß" => "ß",
    "ä" => "ä",
    "Ã".chr(132) => "Ä"
    );
    $out = strtr($str, $trans);
    // $out = $str;
    $badwordchars=array(
    "\xe2\x80\x98","\xe2\x80\x99","\xe2\x80\x9a",
    "\xe2\x80\x9b","\xe2\x80\xb2","\xe2\x80\xb5",
    "\xe2\x80\x9c","\xe2\x80\x9d","\xe2\x80\x9e",
    "\xe2\x80\x9f","\xe2\x80\xb3","\xe2\x80\xb6",
    "\xe2\x80\xa6","\xe2\x82\xac","\xe2\x86\x92",
    "\xe2\x86\x90","\xe2\x86\x91","\xe2\x86\x93",
    "\xe2\x80\x94"
    );
    $fixedwordchars=array(
    "‘","’","‚",
    "‛","′","‵",
    "“","”","„",
    "‟","″","‶",
    "…","€","→",
    "←","↑","↓",
    "—"
    );
    $out=str_replace($badwordchars,$fixedwordchars,$ou t);
    return $out;
    }
  • 06-02-2009, 09:53:44
    #4
    Aşağıda verilen kodlardan ikişer tane bulunmakta. Her ikisinide değiştirin.
    Aşağıdaki Kodu Bulun

    $itemdata->set('title', strip_bbcode(convert_wysiwyg_html_to_bbcode($feed['xml']->parse_template($feed['titletemplate'], $item))));
  • 06-02-2009, 09:54:22
    #5
    Altdaki Kod İle Değiştirin


    $itemdata->set('title', trtrans(strip_bbcode(convert_wysiwyg_html_to_bbcod e($feed['xml']->parse_template($feed['titletemplate'], $item)))));