<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: FeedWordPress 0.99 is hereby released; enjoy WordPress 2.2 and 2.3 compatability, bug fixes, major new features, and updates without cron</title>
	<atom:link href="http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/feed/" rel="self" type="application/rss+xml" />
	<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/</link>
	<description>the software industry of a secessionist republic of one</description>
	<pubDate>Wed, 27 Aug 2008 23:37:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Mike</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-19975</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 18 Jun 2008 23:07:08 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-19975</guid>
		<description>&lt;p&gt;Hi,
  I really like this pluggin and it works great for me.&lt;/p&gt;

&lt;p&gt;I am a little confused on what the "Custom Settings" is for.  Maybe I am just confused with what I read....completely possible.&lt;/p&gt;

&lt;p&gt;I would also like to know if there is a way to "add-on" some text to the end of the description or each post and something different for each feed?&lt;/p&gt;

&lt;p&gt;Basically I would like to have the title link to my page, but a link at the end of the description (or somewhere in the post) to the original site.&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,
  I really like this pluggin and it works great for me.</p>

<p>I am a little confused on what the &#8220;Custom Settings&#8221; is for.  Maybe I am just confused with what I read&#8230;.completely possible.</p>

<p>I would also like to know if there is a way to &#8220;add-on&#8221; some text to the end of the description or each post and something different for each feed?</p>

<p>Basically I would like to have the title link to my page, but a link at the end of the description (or somewhere in the post) to the original site.</p>

<p>Thanks!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Allen</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-12789</link>
		<dc:creator>Mark Allen</dc:creator>
		<pubDate>Sat, 05 Apr 2008 06:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-12789</guid>
		<description>&lt;p&gt;This code works much better for me in WordPress 2.3 and 0.992 of the plugin. Add at line 3722 or so. Look for '$this-&#62;post['post&lt;em&gt;modified&lt;/em&gt;gmt'] = ... before inserting this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;// DUPLICATE CHECK 
$dup_query = "SELECT ID FROM ".$wpdb-&#62;posts." WHERE post_title = '".$this-&#62;post['post_title']."' AND post_date_gmt = '".$this-&#62;post['post_date_gmt']."'";
$result_dup = @$wpdb-&#62;query($dup_query);        

if($result_dup) //Already posted: (log and) discard
{
      $handle = fopen("./dup_posts.txt", "a+");
      fprintf($handle, "%s", "POST_TITLE:".$this-&#62;post['post_title']."\n");
      fprintf($handle, "%s", "DUP_QUERY:".$dup_query."\n");
      fprintf($handle, "%s", "RESULT_DUP:".$result_dup."\n");
      fclose ($handle);       
      return;
 }
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>This code works much better for me in WordPress 2.3 and 0.992 of the plugin. Add at line 3722 or so. Look for &#8216;$this-&gt;post['post<em>modified</em>gmt'] = &#8230; before inserting this:</p>

<pre><code>// DUPLICATE CHECK 
$dup_query = "SELECT ID FROM ".$wpdb-&gt;posts." WHERE post_title = '".$this-&gt;post['post_title'].&#8221;&#8216; AND post_date_gmt = &#8216;&#8221;.$this-&gt;post['post_date_gmt'].&#8221;&#8216;&#8221;;
$result_dup = @$wpdb-&gt;query($dup_query);        

if($result_dup) //Already posted: (log and) discard
{
      $handle = fopen(&#8221;./dup_posts.txt&#8221;, &#8220;a+&#8221;);
      fprintf($handle, &#8220;%s&#8221;, &#8220;POST_TITLE:&#8221;.$this-&gt;post['post_title'].&#8221;\n&#8221;);
      fprintf($handle, &#8220;%s&#8221;, &#8220;DUP_QUERY:&#8221;.$dup_query.&#8221;\n&#8221;);
      fprintf($handle, &#8220;%s&#8221;, &#8220;RESULT_DUP:&#8221;.$result_dup.&#8221;\n&#8221;);
      fclose ($handle);       
      return;
 }
</code></pre>]]></content:encoded>
	</item>
	<item>
		<title>By: rryqs</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-11272</link>
		<dc:creator>rryqs</dc:creator>
		<pubDate>Wed, 16 Jan 2008 13:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-11272</guid>
		<description>&lt;p&gt;hi i have used this plugin for long time,great work,but now have problem in&lt;/p&gt;

&lt;p&gt;Fatal error: Cannot use object of type WP_Error as array in /wp-includes/taxonomy.php on line 1014&lt;/p&gt;

&lt;p&gt;any idea?&lt;/p&gt;

&lt;p&gt;thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi i have used this plugin for long time,great work,but now have problem in</p>

<p>Fatal error: Cannot use object of type WP_Error as array in /wp-includes/taxonomy.php on line 1014</p>

<p>any idea?</p>

<p>thanks</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rad Geek&#8217;s Projects &#187; FeedWordPress 0.991: bug fixes, reorganization, minor features added &#8212; and MU compatability</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10365</link>
		<dc:creator>Rad Geek&#8217;s Projects &#187; FeedWordPress 0.991: bug fixes, reorganization, minor features added &#8212; and MU compatability</dc:creator>
		<pubDate>Thu, 22 Nov 2007 07:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10365</guid>
		<description>&lt;p&gt;[...] have received some feature requests concerning the new updating system that I introduced in FeedWordPress 0.99. Under the old system, there was a (needlessly complicated) system for having FeedWordPress poll [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] have received some feature requests concerning the new updating system that I introduced in FeedWordPress 0.99. Under the old system, there was a (needlessly complicated) system for having FeedWordPress poll [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: max</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10083</link>
		<dc:creator>max</dc:creator>
		<pubDate>Thu, 08 Nov 2007 21:19:51 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10083</guid>
		<description>&lt;p&gt;Hi-&lt;/p&gt;

&lt;p&gt;Thanks so much for the update.&lt;/p&gt;

&lt;p&gt;I'm still having some problems with posts looking weird.  They are syndicating, but it's not getting the information correctly.  Sometimes only a single letter appears, sometimes titles are dropped, or no post content appears at all.  &lt;/p&gt;

&lt;p&gt;i have install at www.criticalbloggers.org.&lt;/p&gt;

&lt;p&gt;thanks
max&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi-</p>

<p>Thanks so much for the update.</p>

<p>I&#8217;m still having some problems with posts looking weird.  They are syndicating, but it&#8217;s not getting the information correctly.  Sometimes only a single letter appears, sometimes titles are dropped, or no post content appears at all.  </p>

<p>i have install at <a href="http://www.criticalbloggers.org" rel="nofollow">http://www.criticalbloggers.org</a>.</p>

<p>thanks
max</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Zaphod</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10081</link>
		<dc:creator>Zaphod</dc:creator>
		<pubDate>Thu, 08 Nov 2007 15:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10081</guid>
		<description>&lt;p&gt;I see that the code is hardly readable. I apologize for this. Itry to repost it using the Markdown syntax. If results are the same, given there's no preview before posting, try to fix the cose manually. I see, for example, that underscores are removed. Here it is:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/******* DUPLICATE CHECK ************/
$dup_query = "SELECT ID FROM ".$wpdb-&#62;posts." WHERE guid = \"".$dbpost['guid']."\" OR post_excerpt = \"".$dbpost['post_excerpt']."\"";
$result_dup = @$wpdb-&#62;query($dup_query);        

if($result_dup) //Already posted: (log and) discard
{
$handle = fopen("./dup_posts.txt", "a+");
fprintf($handle, "%s", "===================== DUPLICATE POST! ======================\n");
fprintf($handle, "%s", "POST_TITLE:".$dbpost['post_title']."\n");
fprintf($handle, "%s", "POST_CONTENT:".$dbpost['post_content']."\n");
fprintf($handle, "%s", "POST_GUID:".$dbpost['guid']."\n");
fprintf($handle, "%s", "DUP_QUERY:".$dup_query."\n");
fprintf($handle, "%s", "DUP_QUERY_RETURN:".$result_dup."\n");
fprintf($handle, "%s", "================================================================\n\n");
fclose ($handle);       
return;
}
/************************************/
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>I see that the code is hardly readable. I apologize for this. Itry to repost it using the Markdown syntax. If results are the same, given there&#8217;s no preview before posting, try to fix the cose manually. I see, for example, that underscores are removed. Here it is:</p>

<pre><code>/******* DUPLICATE CHECK ************/
$dup_query = "SELECT ID FROM ".$wpdb-&gt;posts." WHERE guid = \"".$dbpost['guid'].&#8221;\&#8221; OR post_excerpt = \&#8221;".$dbpost['post_excerpt'].&#8221;\&#8221;";
$result_dup = @$wpdb-&gt;query($dup_query);        

if($result_dup) //Already posted: (log and) discard
{
$handle = fopen(&#8221;./dup_posts.txt&#8221;, &#8220;a+&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;===================== DUPLICATE POST! ======================\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST_TITLE:&#8221;.$dbpost['post_title'].&#8221;\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST_CONTENT:&#8221;.$dbpost['post_content'].&#8221;\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST_GUID:&#8221;.$dbpost['guid'].&#8221;\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;DUP_QUERY:&#8221;.$dup_query.&#8221;\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;DUP_QUERY_RETURN:&#8221;.$result_dup.&#8221;\n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;================================================================\n\n&#8221;);
fclose ($handle);       
return;
}
/************************************/
</code></pre>]]></content:encoded>
	</item>
	<item>
		<title>By: Zaphod</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10080</link>
		<dc:creator>Zaphod</dc:creator>
		<pubDate>Thu, 08 Nov 2007 15:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10080</guid>
		<description>&lt;p&gt;As for the duplicate posts problem, just insert this few lines at line 2119 in 
feedwordpress.php, between "endforeach;" and "if ($this-&#62;use&lt;em&gt;api('wp&lt;/em&gt;insert_post')) :"&lt;/p&gt;

&lt;p&gt;/******* DUPLICATE CHECK ************/
$dup&lt;em&gt;query = "SELECT ID FROM ".$wpdb-&#62;posts." WHERE guid = \"".$dbpost['guid']."\" OR post&lt;/em&gt;excerpt = \"".$dbpost['post&lt;em&gt;excerpt']."\"";
$result&lt;/em&gt;dup = @$wpdb-&#62;query($dup_query);        &lt;/p&gt;

&lt;p&gt;if($result&lt;em&gt;dup) //Already posted: (log and) discard
{
$handle = fopen("./dup&lt;/em&gt;posts.txt", "a+");
fprintf($handle, "%s", "===================== DUPLICATE POST! ======================n");
fprintf($handle, "%s", "POST&lt;em&gt;TITLE:".$dbpost['post&lt;/em&gt;title']."n");
fprintf($handle, "%s", "POST&lt;em&gt;CONTENT:".$dbpost['post&lt;/em&gt;content']."n");
fprintf($handle, "%s", "POST&lt;em&gt;GUID:".$dbpost['guid']."n");
fprintf($handle, "%s", "DUP&lt;/em&gt;QUERY:".$dup&lt;em&gt;query."n");
fprintf($handle, "%s", "DUP&lt;/em&gt;QUERY&lt;em&gt;RETURN:".$result&lt;/em&gt;dup."n");
fprintf($handle, "%s", "================================================================nn");
fclose ($handle);
return;
}
/************************************/&lt;/p&gt;

&lt;p&gt;It's a quick, inelegant and dirty solution: just a query on the db to check if there are other posts with the same guid or post_excerpt. Of course you can modify it to your needs. If the query returns anything, meaning that one or more posts have been found, "return" is called and the new post is not inserted in the DB.&lt;/p&gt;

&lt;p&gt;Duplicate posts are logged into a text file called "dup_posts.txt" under your wordpress root directory. Make sure that it is writable (chmod it to 777).
If you want to disable this feature (strongly suggested once that you've verified that posts that should be filtered out are actually filtered) just comment out the fopen, fprintf and fclose instructions.&lt;/p&gt;

&lt;p&gt;I do not guarantee that this will work for any Wordpress installation and i will not answer to support requests. If the author of Feedwordpress (thank you for this great software, Rad Geek!) thinks this will not work or it can break Feedwordpress in any way, i hope he will let us know.&lt;/p&gt;

&lt;p&gt;Regards&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>As for the duplicate posts problem, just insert this few lines at line 2119 in 
feedwordpress.php, between &#8220;endforeach;&#8221; and &#8220;if ($this-&gt;use<em>api(&#8217;wp</em>insert_post&#8217;)) :&#8221;</p>

<p>/******* DUPLICATE CHECK ************/
$dup<em>query = &#8220;SELECT ID FROM &#8220;.$wpdb-&gt;posts.&#8221; WHERE guid = \&#8221;".$dbpost['guid'].&#8221;\&#8221; OR post</em>excerpt = \&#8221;".$dbpost['post<em>excerpt'].&#8221;\&#8221;";
$result</em>dup = @$wpdb-&gt;query($dup_query);        </p>

<p>if($result<em>dup) //Already posted: (log and) discard
{
$handle = fopen(&#8221;./dup</em>posts.txt&#8221;, &#8220;a+&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;===================== DUPLICATE POST! ======================n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST<em>TITLE:&#8221;.$dbpost['post</em>title'].&#8221;n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST<em>CONTENT:&#8221;.$dbpost['post</em>content'].&#8221;n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;POST<em>GUID:&#8221;.$dbpost['guid'].&#8221;n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;DUP</em>QUERY:&#8221;.$dup<em>query.&#8221;n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;DUP</em>QUERY<em>RETURN:&#8221;.$result</em>dup.&#8221;n&#8221;);
fprintf($handle, &#8220;%s&#8221;, &#8220;================================================================nn&#8221;);
fclose ($handle);
return;
}
/************************************/</p>

<p>It&#8217;s a quick, inelegant and dirty solution: just a query on the db to check if there are other posts with the same guid or post_excerpt. Of course you can modify it to your needs. If the query returns anything, meaning that one or more posts have been found, &#8220;return&#8221; is called and the new post is not inserted in the DB.</p>

<p>Duplicate posts are logged into a text file called &#8220;dup_posts.txt&#8221; under your wordpress root directory. Make sure that it is writable (chmod it to 777).
If you want to disable this feature (strongly suggested once that you&#8217;ve verified that posts that should be filtered out are actually filtered) just comment out the fopen, fprintf and fclose instructions.</p>

<p>I do not guarantee that this will work for any Wordpress installation and i will not answer to support requests. If the author of Feedwordpress (thank you for this great software, Rad Geek!) thinks this will not work or it can break Feedwordpress in any way, i hope he will let us know.</p>

<p>Regards</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Waldo Jaquith</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10073</link>
		<dc:creator>Waldo Jaquith</dc:creator>
		<pubDate>Thu, 08 Nov 2007 03:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10073</guid>
		<description>&lt;p&gt;FWIW, this duplicate posts problem is pretty severe. Looking at my log files, I see that many RSS feeds are simply being retrieved twice consecutively, with just a few seconds separating each retrieval. Each of my FeedWordPress installs is on public sites with thousands of readers and hundreds of feeds aggregated, so it's all a bit of a mess at this point.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>FWIW, this duplicate posts problem is pretty severe. Looking at my log files, I see that many RSS feeds are simply being retrieved twice consecutively, with just a few seconds separating each retrieval. Each of my FeedWordPress installs is on public sites with thousands of readers and hundreds of feeds aggregated, so it&#8217;s all a bit of a mess at this point.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: .. Minda Indra .. &#187; A</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10057</link>
		<dc:creator>.. Minda Indra .. &#187; A</dc:creator>
		<pubDate>Wed, 07 Nov 2007 04:15:49 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10057</guid>
		<description>&lt;p&gt;[...] Hmm.. mungkin sudah waktunya untuk saya meng-upgrade FeedWordPress di Planet Singapura ke versi terbaru? [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Hmm.. mungkin sudah waktunya untuk saya meng-upgrade FeedWordPress di Planet Singapura ke versi terbaru? [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Waldo Jaquith</title>
		<link>http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10030</link>
		<dc:creator>Waldo Jaquith</dc:creator>
		<pubDate>Mon, 05 Nov 2007 03:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://projects.radgeek.com/2007/09/24/feedwordpress-099-is-hereby-released-enjoy-wordpress-22-and-23-compatability-bug-fixes-major-new-features-and-updates-without-cron/#comment-10030</guid>
		<description>&lt;p&gt;All feeds that I'm syndicating from wordpress.com (the hosted WordPress install service) have the content of each post recorded as, simply, "A." This is true in the display as well as the preview, when first adding the feed. It only affects RSS feeds -- Atom works fine. Subscribing to the feed in Google Reader and NewsFire works fine, the feeds validate, and viewing the raw RSS looks just fine.&lt;/p&gt;

&lt;p&gt;I strongly suspect that the "A" is a result of PHP echoing a fragment of the word "Array," when FeedWordPress is expecting a string. At least, that's generally what's wrong with &lt;em&gt;my&lt;/em&gt; code when that happens. :)&lt;/p&gt;

&lt;p&gt;Thanks so much for FeedWordPress. It was well worth the $5 contribution, and I heartily encourage others to likewise contribute to keep the project going.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>All feeds that I&#8217;m syndicating from wordpress.com (the hosted WordPress install service) have the content of each post recorded as, simply, &#8220;A.&#8221; This is true in the display as well as the preview, when first adding the feed. It only affects RSS feeds &#8212; Atom works fine. Subscribing to the feed in Google Reader and NewsFire works fine, the feeds validate, and viewing the raw RSS looks just fine.</p>

<p>I strongly suspect that the &#8220;A&#8221; is a result of PHP echoing a fragment of the word &#8220;Array,&#8221; when FeedWordPress is expecting a string. At least, that&#8217;s generally what&#8217;s wrong with <em>my</em> code when that happens. :)</p>

<p>Thanks so much for FeedWordPress. It was well worth the $5 contribution, and I heartily encourage others to likewise contribute to keep the project going.</p>]]></content:encoded>
	</item>
</channel>
</rss>
