Yani ben sadece benim ilk RSS beslemesi yapılmış, ya da öylesine i CI ile birlikte, okutulmuştur. Şimdi benim görüşüm benim rss sayfası (Başlık ve Açıklama) en üstünü görüntülemek YAPAR, ama tüm öğeler atlanmıştır. I görünümü kaynak-> rightclick zaman öğe etiketleri içindeki tüm öğeleri içeren MU.
Herkes bana yardımcı olabilir misiniz?
Görünüm (rss.php):
<?php echo '<?xml version="1.0" encoding="'.$encoding.'"?>'."\n"; ?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title><?php echo $feed_name; ?></title>
<link><?php echo $feed_url; ?></link>
<description><?php echo $page_description; ?></description>
<dc:language><?php echo $page_language; ?></dc:language>
<dc:creator><?php echo $creator_email; ?></dc:creator>
<dc:rights>Copyright <?php echo gmdate("%Y", time()); ?></dc:rights>
<dc:date><?php echo gmdate("%Y-%m-
T;%H:%i:%s%Q", time()); ?></dc:date>
<admin:generatorAgent rdf:resource="http://www.codeigniter.com/" />
<?php foreach($items as $entry): ?>
<?php $entry_url = base_url().$this->lang->lang().$localized_news[$this->lang->lang()].'/'.print_date(strtotime($entry->published), "{year}/{month2}").'/'.$entry->slug; ?>
<item>
<title><?php echo xml_convert($entry->title); ?></title>
<link><?php echo $entry_url; ?></link>
<guid><?php echo $entry_url; ?></guid>
<description><?php echo $entry->summary; ?></description>
<pubDate><?php echo date('r', $entry->published); ?></pubDate>
</item>
<?php endforeach; ?>
</channel>
This is what the output looks like: screenshot
and in the source, every item needed to be displayed is there. with
<item> <link> <description> <guid> and <pubdate>
tags.
Ive şimdi yaklaşık 1.5 saat boyunca neden arıyor. ve ben bir şey bulamıyorum. Ben yanlış bir şey yaptım eğer birisi bana söyleyebilir misiniz? Yardım takdir!
~ Menno