karekter hatası rss feed poster

tarantula90128.03.2010 - 21:03
karekter hatası rss feed poster

paketi kurduysanız

Türkçe karakter sorunu yaşayacaksınız eğer Forumunuzun dil paketi utf-8 değilse çözüm için aşağıdaki yolu deneyiniz.Utf-8 kullanalar ekstra bişey yapmasınlar :

sources/subs-rss.php

bul

Kod: [Seç]
// Create the Post
$msg_title = $feed['html'] ? $context['feeditems'][$i]['title'] : strip_tags($context['feeditems'][$i]['title']);

$msg_body =  $feed['html'] ? $context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link']  : strip_tags($context['feeditems'][$i]['description'] .  "\n\n" . $context['feeditems'][$i]['link']);


bununla değiştir

Kod: [Seç]
// Create the Post
$msg_title_ = $func['htmlspecialchars'](($feed['html'] ? $context['feeditems'][$i]['title'] : strip_tags($context['feeditems'][$i]['title'])), ENT_QUOTES);
$msg_title = iconv("UTF-8", "ISO-8859-9", $msg_title_);  //// NEW added Code

$msg_body_ =  $func['htmlspecialchars'](($feed['html'] ? $context['feeditems'][$i]['description'] . "\n\n" . $context['feeditems'][$i]['link']  : strip_tags($context['feeditems'][$i]['description'] .  "\n\n" . $context['feeditems'][$i]['link'])), ENT_QUOTES);
$msg_body = iconv("UTF-8", "ISO-8859-9", $msg_body_);  //// NEW added Code

[/b]

Linkback: https://www.buyuknet.com/karekter-hatasi-rss-feed-poster-t21865.0.html

Etiket:

Bu bilgi size yardimci oldu mu?

EvetHayır
karekter hatası rss feed poster
karekter hatası rss feed poster
(Ortalama: 5 üzerinden 2.5 - 2 Oy)
2