<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Live on (yet) another social site</title>
	<atom:link href="http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/</link>
	<description>tweaks and hacks, java, python, music, home and ???</description>
	<pubDate>Thu, 08 Jan 2009 12:32:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: RR</title>
		<link>http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/comment-page-1/#comment-244</link>
		<dc:creator>RR</dc:creator>
		<pubDate>Wed, 12 Sep 2007 03:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/#comment-244</guid>
		<description>Just wanted to give you a heads-up.  The newest version of the MySpace Crossposter is now available, and the changes are many.  

Everything is contained in one file.  Activation from the Plugin Options screen is enabled.  No need to edit any source files.  All configuration is done through the WordPress Options screen.  And best of all, once you "activate" and configure the plugin, it runs itself.  You press "publish", it crossposts.  Simple as that.

The older versions are still available, but the new version can be found at: &lt;a href="http://noumenon.roderickrussell.com/myspace-crossposter-v2-released" rel="nofollow"&gt;http://noumenon.roderickrussell.com/myspace-crossposter-v2-released&lt;/a&gt;

Cheers!</description>
		<content:encoded><![CDATA[<p>Just wanted to give you a heads-up.  The newest version of the MySpace Crossposter is now available, and the changes are many.  </p>
<p>Everything is contained in one file.  Activation from the Plugin Options screen is enabled.  No need to edit any source files.  All configuration is done through the WordPress Options screen.  And best of all, once you &#8220;activate&#8221; and configure the plugin, it runs itself.  You press &#8220;publish&#8221;, it crossposts.  Simple as that.</p>
<p>The older versions are still available, but the new version can be found at: <a href="http://noumenon.roderickrussell.com/myspace-crossposter-v2-released" rel="nofollow">http://noumenon.roderickrussell.com/myspace-crossposter-v2-released</a></p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian McQuay</title>
		<link>http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/comment-page-1/#comment-229</link>
		<dc:creator>Brian McQuay</dc:creator>
		<pubDate>Wed, 11 Jul 2007 20:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/#comment-229</guid>
		<description>Good post. If only I could get that damn plugin working now.</description>
		<content:encoded><![CDATA[<p>Good post. If only I could get that damn plugin working now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sjan Evardsson</title>
		<link>http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/comment-page-1/#comment-218</link>
		<dc:creator>Sjan Evardsson</dc:creator>
		<pubDate>Sun, 08 Jul 2007 22:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/#comment-218</guid>
		<description>Another followup - had I read further in Roderick Russell's original post with this tool, I would have seen that there were new versions further down the page. The pingmyspace_v1_4a.php actually fixed this problem. Doh!</description>
		<content:encoded><![CDATA[<p>Another followup - had I read further in Roderick Russell&#8217;s original post with this tool, I would have seen that there were new versions further down the page. The pingmyspace_v1_4a.php actually fixed this problem. Doh!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sjan Evardsson</title>
		<link>http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/comment-page-1/#comment-217</link>
		<dc:creator>Sjan Evardsson</dc:creator>
		<pubDate>Sun, 08 Jul 2007 21:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.evardsson.com/blog/2007/07/07/live-on-yet-another-social-site/#comment-217</guid>
		<description>&lt;p&gt;There was a minor error in the pingmyspace.php - when it generates the link to the individual post it doesn't include the /YYYY/MM/DD/ portion of the url. So I made a couple minor changes:&lt;/p&gt;
&lt;p&gt;At about line 54 you will find this:&lt;/p&gt;
&lt;pre lang="php"&gt;//FETCH THAT ROW&lt;br /&gt;
$row=mysql_fetch_array($result);&lt;br /&gt;
&lt;br /&gt;
$title=$row[5];&lt;br /&gt;
$content=$row[4];&lt;br /&gt;
$postUrl=$blogUrl.$row[12];&lt;/pre&gt;
&lt;p&gt;I changed it to this:&lt;/p&gt;
&lt;pre lang="php"&gt;//FETCH THAT ROW&lt;br /&gt;
$row=mysql_fetch_array($result);&lt;br /&gt;
&lt;br /&gt;
$title=$row[5];&lt;br /&gt;
$content=$row[4];&lt;br /&gt;
&lt;br /&gt;
//ADD THE DATE FOR THE INDIVIDUAL POST URL&lt;br /&gt;
$today=date('Y/m/d/');&lt;br /&gt;
$postUrl=$blogUrl.$today.$row[12];&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>There was a minor error in the pingmyspace.php - when it generates the link to the individual post it doesn&#8217;t include the /YYYY/MM/DD/ portion of the url. So I made a couple minor changes:</p>
<p>At about line 54 you will find this:</p>
<pre lang="php">//FETCH THAT ROW
$row=mysql_fetch_array($result);

$title=$row[5];
$content=$row[4];
$postUrl=$blogUrl.$row[12];</pre>
<p>I changed it to this:</p>
<pre lang="php">//FETCH THAT ROW
$row=mysql_fetch_array($result);

$title=$row[5];
$content=$row[4];

//ADD THE DATE FOR THE INDIVIDUAL POST URL
$today=date('Y/m/d/');
$postUrl=$blogUrl.$today.$row[12];</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
