<?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 for FastPipe Media, Inc.</title>
	<atom:link href="http://www.fastpipe.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fastpipe.com</link>
	<description>Gasoline and Whiskey Don't Mix</description>
	<lastBuildDate>Thu, 28 Aug 2008 18:55:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Converting XDForum to BBPress by clicknathan</title>
		<link>http://www.fastpipe.com/2008/06/23/converting-xdforum-to-bbpress/comment-page-1#comment-12362</link>
		<dc:creator>clicknathan</dc:creator>
		<pubDate>Thu, 28 Aug 2008 18:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/?p=39#comment-12362</guid>
		<description>My bad, I /was/ using a 4.x version of MySQL, though the &quot;MySQL client version 5.0.41&quot; in phpMyAdmin thing was a bit of a throw off for the novice such as myself.</description>
		<content:encoded><![CDATA[<p>My bad, I /was/ using a 4.x version of MySQL, though the &#8220;MySQL client version 5.0.41&#8243; in phpMyAdmin thing was a bit of a throw off for the novice such as myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting XDForum to BBPress by clicknathan</title>
		<link>http://www.fastpipe.com/2008/06/23/converting-xdforum-to-bbpress/comment-page-1#comment-12343</link>
		<dc:creator>clicknathan</dc:creator>
		<pubDate>Thu, 28 Aug 2008 00:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/?p=39#comment-12343</guid>
		<description>The Select statement seems to work (in that it doesn&#039;t return an error).

I&#039;m using MySQL 5.0.41

I&#039;m not that schooled at SQL in general - should I be trying to run this from the main SQL tab or from inside one of the tables. (Maybe that doesn&#039;t even matter....)

Thanks for your reply!</description>
		<content:encoded><![CDATA[<p>The Select statement seems to work (in that it doesn&#8217;t return an error).</p>
<p>I&#8217;m using MySQL 5.0.41</p>
<p>I&#8217;m not that schooled at SQL in general &#8211; should I be trying to run this from the main SQL tab or from inside one of the tables. (Maybe that doesn&#8217;t even matter&#8230;.)</p>
<p>Thanks for your reply!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting XDForum to BBPress by FastPipe Media, Inc.</title>
		<link>http://www.fastpipe.com/2008/06/23/converting-xdforum-to-bbpress/comment-page-1#comment-12342</link>
		<dc:creator>FastPipe Media, Inc.</dc:creator>
		<pubDate>Thu, 28 Aug 2008 00:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/?p=39#comment-12342</guid>
		<description>It could be that your server is using an earlier version of MySQL as views were introduced in version 5.

However, the SQL statement you posted was after a view had been used earlier so probably not. Does just the select statement work for you?

&lt;code&gt;
SELECT xp_xt_id AS topic_ID, COUNT(xp_xt_id) AS my_count, xp_author_ip AS author_ip, FROM_UNIXTIME( MIN( xp_date ) ) AS post_time, FROM_UNIXTIME( MAX( xp_date ) ) AS last_post_time
FROM wp_xdforum_posts
GROUP BY xp_xt_id
ORDER BY xp_xt_id, post_time DESC
&lt;/code&gt;

If that works, then most likely you&#039;re using a version of MySQL that doesn&#039;t support subselects. If that&#039;s the case, you&#039;ll have to figure out how to recreate the view into a temporary table so you can update the counts, which is the whole purpose of the view, which just displays the number of items in the thread, the date the topic was started and the date it was last updated.</description>
		<content:encoded><![CDATA[<p>It could be that your server is using an earlier version of MySQL as views were introduced in version 5.</p>
<p>However, the SQL statement you posted was after a view had been used earlier so probably not. Does just the select statement work for you?</p>
<p><code><br />
SELECT xp_xt_id AS topic_ID, COUNT(xp_xt_id) AS my_count, xp_author_ip AS author_ip, FROM_UNIXTIME( MIN( xp_date ) ) AS post_time, FROM_UNIXTIME( MAX( xp_date ) ) AS last_post_time<br />
FROM wp_xdforum_posts<br />
GROUP BY xp_xt_id<br />
ORDER BY xp_xt_id, post_time DESC<br />
</code></p>
<p>If that works, then most likely you&#8217;re using a version of MySQL that doesn&#8217;t support subselects. If that&#8217;s the case, you&#8217;ll have to figure out how to recreate the view into a temporary table so you can update the counts, which is the whole purpose of the view, which just displays the number of items in the thread, the date the topic was started and the date it was last updated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting XDForum to BBPress by clicknathan</title>
		<link>http://www.fastpipe.com/2008/06/23/converting-xdforum-to-bbpress/comment-page-1#comment-12339</link>
		<dc:creator>clicknathan</dc:creator>
		<pubDate>Wed, 27 Aug 2008 23:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/?p=39#comment-12339</guid>
		<description>Howdy there. 

Great job sorting this out! I&#039;ve been trying to work through your instructions and got hung up on step 7. I get an SQL syntax error, which I&#039;ll paste below. 

Any chance you might know what I&#039;m doing wrong?

Error

SQL query: Documentation

CREATE VIEW topic_info AS SELECT wp_xdforum_posts.xp_xt_id AS topic_ID, COUNT( wp_xdforum_posts.xp_xt_id ) AS my_count, xp_author_ip AS author_ip, FROM_UNIXTIME( MIN( xp_date ) ) AS post_time, FROM_UNIXTIME( MAX( xp_date ) ) AS last_post_time
FROM wp_xdforum_posts
GROUP BY xp_xt_id
ORDER BY xp_xt_id, post_time DESC

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;VIEW topic_info AS SELECT wp_xdforum_posts.xp_xt_id AS topic_ID, COUNT(wp_xdforu&#039; at line 1</description>
		<content:encoded><![CDATA[<p>Howdy there. </p>
<p>Great job sorting this out! I&#8217;ve been trying to work through your instructions and got hung up on step 7. I get an SQL syntax error, which I&#8217;ll paste below. </p>
<p>Any chance you might know what I&#8217;m doing wrong?</p>
<p>Error</p>
<p>SQL query: Documentation</p>
<p>CREATE VIEW topic_info AS SELECT wp_xdforum_posts.xp_xt_id AS topic_ID, COUNT( wp_xdforum_posts.xp_xt_id ) AS my_count, xp_author_ip AS author_ip, FROM_UNIXTIME( MIN( xp_date ) ) AS post_time, FROM_UNIXTIME( MAX( xp_date ) ) AS last_post_time<br />
FROM wp_xdforum_posts<br />
GROUP BY xp_xt_id<br />
ORDER BY xp_xt_id, post_time DESC</p>
<p>MySQL said: Documentation<br />
#1064 &#8211; You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;VIEW topic_info AS SELECT wp_xdforum_posts.xp_xt_id AS topic_ID, COUNT(wp_xdforu&#8217; at line 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Cloudy Day&#8230; by HDTV In Oklahoma &#187; Putting HDTV on the Map in Oklahoma &#187; HD Time Lapse Movies</title>
		<link>http://www.fastpipe.com/2006/07/30/osu/comment-page-1#comment-5</link>
		<dc:creator>HDTV In Oklahoma &#187; Putting HDTV on the Map in Oklahoma &#187; HD Time Lapse Movies</dc:creator>
		<pubDate>Sun, 30 Jul 2006 07:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/2006/07/30/osu/#comment-5</guid>
		<description>[...] We continue experimenting with our Sony HDR-HC3 high definition camcorder. One of the things you see all the time these days are time lapse movies of clouds zooming across the sky. Although it was 104 degrees, the clouds today were perfect for capturing this kind of footage. Of course, I still haven&#8217;t found time to write a review of the camera&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] We continue experimenting with our Sony HDR-HC3 high definition camcorder. One of the things you see all the time these days are time lapse movies of clouds zooming across the sky. Although it was 104 degrees, the clouds today were perfect for capturing this kind of footage. Of course, I still haven&#8217;t found time to write a review of the camera&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on High Definition Fireworks by HDTV In Oklahoma &#187; Putting HDTV on the Map in Oklahoma &#187; HD Fireworks</title>
		<link>http://www.fastpipe.com/2006/07/06/high-def-fireworks/comment-page-1#comment-3</link>
		<dc:creator>HDTV In Oklahoma &#187; Putting HDTV on the Map in Oklahoma &#187; HD Fireworks</dc:creator>
		<pubDate>Thu, 06 Jul 2006 07:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.fastpipe.com/2006/07/06/fireworks-in-high-definition/#comment-3</guid>
		<description>[...] I&#8217;ve posted a short fireworks video on my main site that I shot using my Sony HDR-HC3 High-Definition Handycam Camcorder tonight for those of you who missed the fireworks in your own town last night. [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve posted a short fireworks video on my main site that I shot using my Sony HDR-HC3 High-Definition Handycam Camcorder tonight for those of you who missed the fireworks in your own town last night. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HDTVok.com Gets a Facelift! by Dana</title>
		<link>http://www.fastpipe.com/2006/07/02/hdtvok-gets-facelift/comment-page-1#comment-2</link>
		<dc:creator>Dana</dc:creator>
		<pubDate>Mon, 03 Jul 2006 16:18:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2</guid>
		<description>Dennis,  your site looks great.  I like the new look and features.</description>
		<content:encoded><![CDATA[<p>Dennis,  your site looks great.  I like the new look and features.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
