<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1038157" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1038157</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/importing-digg-rss-feed-my-homepage#comment-1218202</link>
    <description> &lt;p&gt;Well, I haven&#039;t heard back, so I&#039;m going to assume it&#039;s not a problem.  If anybody uses this snippet and gets yelled at, please let me know, &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;
&lt;p&gt;You will have to modify a few things in the script.  First, you are required to include the &lt;a href=&quot;http://www.tinybutstrong.com/&quot; class=&quot;bb-url&quot;&gt;TBS&lt;/a&gt; &amp;amp; &lt;a href=&quot;http://lastrss.oslab.net/&quot; class=&quot;bb-url&quot;&gt;lastRSS&lt;/a&gt; classes.  I don&#039;t have include statements because I make use of the &lt;a href=&quot;http://us2.php.net/manual/en/language.oop5.autoload.php&quot; class=&quot;bb-url&quot;&gt;__autoload()&lt;/a&gt; function.  Second, you will notice that I left some of my predefined constants in the script (PATH_LASTRSS_CACHE &amp;amp; PATH_TEMPLATES_WEB).  You will have to either define them or replace as necessary.&lt;/p&gt;
&lt;p&gt;PHP Script:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* Digg needs to have a user agent set */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;ini_set&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;user_agent&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;PHP&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* create the object */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rss &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;lastRSS&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;();&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* set the max number of ites we want */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rss&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;items_limit &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;10&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* set the cache directory so we don&#039;t hit the site for the feed every time we have a page load */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rss&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;cache_dir &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;PATH_LASTRSS_CACHE&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rss&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;cache_time &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;3600&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* get the feed */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rs &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rss&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;get&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;http://www.digg.com/rss/containertechnology.xml&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* create the template object */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$tbs &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= new &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;clsTinyButStrong&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;();&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* set the main tamplate file */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$tbs&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;LoadTemplate&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;PATH_TEMPLATES_WEB &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;. &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;feed_example.htm&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;false&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* merge the block for the feed items */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$tbs&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;MergeBlock&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;blkNews&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$rs&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;items&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;]);&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* parse the template */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$tbs&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;-&amp;gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;Show&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;();&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;HTML Template:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!-- Short and simple example of using a block :). --&amp;gt;&lt;br /&gt;&amp;lt;h4&amp;gt;Digg.com News&amp;lt;/h4&amp;gt;&lt;br /&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;	&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;[blkNews.link;magnet=div;block=li;noerr]&amp;quot;&amp;gt;[blkNews.title]&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;[blkNews.pubDate]&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;lt;/ul&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;I hope this is helpful!&lt;/p&gt;
 </description>
     <pubDate>Sat, 21 Apr 2007 04:44:48 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1218202 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/importing-digg-rss-feed-my-homepage#comment-1217948</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;Megan;217945 wrote:&lt;/strong&gt; Exactly, and Digg has way, way, way more page strength than you do. There is no way you could outrank them with the same content. And Google is really starting to crack down on duplicate content.&lt;/p&gt;
&lt;p&gt;It could work better with other search engines if that&#039;s what you&#039;re thinking.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Ok, then scratch the SEO.  I still would rather have the data in XML format so I can display it how I want rather than going through their styler.&lt;/p&gt;
&lt;p&gt;I use &lt;a href=&quot;http://www.tinybutstrong.com&quot; class=&quot;bb-url&quot;&gt;TBS&lt;/a&gt; for my websites, and that and lastRSS makes it easy. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/nerdy.png&quot; title=&quot;Cool&quot; alt=&quot;Cool&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Assuming I get the approval from Digg, I will post the full script on how I coded it.&lt;/p&gt;
 </description>
     <pubDate>Mon, 16 Apr 2007 15:59:19 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1217948 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/importing-digg-rss-feed-my-homepage#comment-1217945</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;JeevesBond;217938 wrote:&lt;/strong&gt; Not sure if that&#039;ll help since it&#039;s duplicate content.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Exactly, and Digg has way, way, way more page strength than you do. There is no way you could outrank them with the same content. And Google is really starting to crack down on duplicate content.&lt;/p&gt;
&lt;p&gt;It could work better with other search engines if that&#039;s what you&#039;re thinking.&lt;/p&gt;
 </description>
     <pubDate>Mon, 16 Apr 2007 15:53:38 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1217945 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/importing-digg-rss-feed-my-homepage#comment-1217943</link>
    <description> &lt;p&gt;Thanks for the advice.  I sent them an email.  We shall see what happens.&lt;/p&gt;
 </description>
     <pubDate>Mon, 16 Apr 2007 15:32:13 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1217943 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/webmasters-corner/importing-digg-rss-feed-my-homepage#comment-1217938</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: So the question is...Is it ok to do this? I didn&#039;t find anywhere in Digg&#039;s term of use that said this is not ok, plus all the links in the feed goes to the Digg page, and not directly to the story.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Hmmm, well that&#039;s difficult to say, I am not a lawyer and all that! I&#039;ve e-mailed Digg about things before and had a reply. I think you can legally cover yourself quite well by sending them an e-mail asking whether it&#039;s alright to copy their RSS feed and put something along the lines of: &#039;if no reply is received by date x I will assume your consent to use the RSS feeds from your site&#039;. Again, I am not a lawyer but you&#039;re giving them an opportunity to disagree with your usage of their &lt;em&gt;public&lt;/em&gt; services.&lt;/p&gt;
&lt;p&gt;That&#039;s an interesting code snippet though, thanks for sharing. Could you let us know what Digg says? It will be useful for anyone wanting to use that code snippet. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: Plus, the search engines pick up the content with my method.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Not sure if that&#039;ll help since it&#039;s duplicate content.&lt;/p&gt;
 </description>
     <pubDate>Mon, 16 Apr 2007 13:28:50 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1217938 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
