<?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: Related Entries for MT</title>
	<atom:link href="http://inluminent.com/2003/04/30/related-entries-for-mt/feed/" rel="self" type="application/rss+xml" />
	<link>http://inluminent.com/2003/04/30/related-entries-for-mt/</link>
	<description>my comments on business, marketing, advertising, email, CAN-SPAM, selling as a profession, photography, computers and other stuff...</description>
	<pubDate>Fri, 21 Nov 2008 22:53:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Donncha</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-947</link>
		<dc:creator>Donncha</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-947</guid>
		<description>Hey John,



Just download b2++  and you'll have both highlighted searches and related articles!



Demos:

Related articles

Search highlights



Donncha.

PS. sorry for this completely self-promotional comment!</description>
		<content:encoded><![CDATA[<p>Hey John,</p>
<p>Just download b2++  and you&#8217;ll have both highlighted searches and related articles!</p>
<p>Demos:</p>
<p>Related articles</p>
<p>Search highlights</p>
<p>Donncha.</p>
<p>PS. sorry for this completely self-promotional comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-948</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-948</guid>
		<description>I do related entries over at MobileTracker--it works out well. The only problem is when I make a new category it looks really lame for the first post (no related articles).</description>
		<content:encoded><![CDATA[<p>I do related entries over at MobileTracker&#8211;it works out well. The only problem is when I make a new category it looks really lame for the first post (no related articles).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: seed</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-949</link>
		<dc:creator>seed</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-949</guid>
		<description>have you had any luck migrating a newly created blog to a previous set of archives? the mint400 is going through this issue now. BTW nice site.</description>
		<content:encoded><![CDATA[<p>have you had any luck migrating a newly created blog to a previous set of archives? the mint400 is going through this issue now. BTW nice site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donncha</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-950</link>
		<dc:creator>Donncha</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-950</guid>
		<description>On migrating archives - b2 has several scripts for doing such a job.

I used the Blogger one to suck all the data from &lt;a href="http://xeer.blogspot.com/"&gt;http://xeer.blogspot.com/&lt;/a&gt; to &lt;a href="http://blogs.linux.ie/xeer/."&gt;http://blogs.linux.ie/xeer/.&lt;/a&gt; Not sure if there's an MT one though.</description>
		<content:encoded><![CDATA[<p>On migrating archives - b2 has several scripts for doing such a job.</p>
<p>I used the Blogger one to suck all the data from <a href="http://xeer.blogspot.com/">http://xeer.blogspot.com/</a> to <a href="http://blogs.linux.ie/xeer/."></a><a href="http://blogs.linux.ie/xeer/" rel="nofollow">http://blogs.linux.ie/xeer/</a>. Not sure if there&#8217;s an MT one though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Kalsey</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-951</link>
		<dc:creator>Adam Kalsey</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-951</guid>
		<description>I have an MT plugin that does related entries by keyword or by category. See Related Entries for more details.



I've been working with some MySQL fulltext queries for a client recently and like Simon thought it would be interesting to try automatically classifying related articles through fulltext searches. After some experiments last week, I stopped using my own plugin and now generate related entries through a SQL query using Brad's SQL plugin.



The template code I use on my individual archive pages is...



&#60;MTSQLEntries query="SELECT entry_id, MATCH (entry_keywords, entry_title, entry_excerpt) AGAINST ('[MTEntryKeywords encode_php='q'] [MTEntryTitle encode_php='q']') AS score FROM mt_entry WHERE MATCH (entry_keywords, entry_title, entry_excerpt) AGAINST ('[MTEntryKeywords encode_php='q'] [MTEntryTitle encode_php='q']') AND entry_id != '[MTEntryID]' AND entry_blog_id = [MTBlogID] ORDER BY score DESC LIMIT 0 , 4"&#62;

    &#60;li&#62;&#60;a href="&#60;MTEntryLink&#62;"&#62;&#60;MTEntryTitle&#62;&#60;/a&#62;&#60;/li&#62;

    &#60;/MTSQLEntries&#62;



This avoids database timeouts or other issues, because the related entries are not generated with each page request. Instead, they are calculated only when the page is rebuilt.</description>
		<content:encoded><![CDATA[<p>I have an MT plugin that does related entries by keyword or by category. See Related Entries for more details.</p>
<p>I&#8217;ve been working with some MySQL fulltext queries for a client recently and like Simon thought it would be interesting to try automatically classifying related articles through fulltext searches. After some experiments last week, I stopped using my own plugin and now generate related entries through a SQL query using Brad&#8217;s SQL plugin.</p>
<p>The template code I use on my individual archive pages is&#8230;</p>
<p>&lt;MTSQLEntries query=&#8221;SELECT entry_id, MATCH (entry_keywords, entry_title, entry_excerpt) AGAINST (&#8217;[MTEntryKeywords encode_php='q'] [MTEntryTitle encode_php='q']&#8216;) AS score FROM mt_entry WHERE MATCH (entry_keywords, entry_title, entry_excerpt) AGAINST (&#8217;[MTEntryKeywords encode_php='q'] [MTEntryTitle encode_php='q']&#8216;) AND entry_id != &#8216;[MTEntryID]&#8216; AND entry_blog_id = [MTBlogID] ORDER BY score DESC LIMIT 0 , 4&#8243;&gt;</p>
<p>    &lt;li&gt;&lt;a href=&#8221;&lt;MTEntryLink&gt;&#8221;&gt;&lt;MTEntryTitle&gt;&lt;/a&gt;&lt;/li&gt;</p>
<p>    &lt;/MTSQLEntries&gt;</p>
<p>This avoids database timeouts or other issues, because the related entries are not generated with each page request. Instead, they are calculated only when the page is rebuilt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Kalsey</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-952</link>
		<dc:creator>Adam Kalsey</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-952</guid>
		<description>It's been pointed out to me that you need to create the fulltext indexes before that code will work. On my site I have a much more thorough explanation of the technique, including all the steps you need to follow to get it working.



Read Related Entries Revisted for more details.</description>
		<content:encoded><![CDATA[<p>It&#8217;s been pointed out to me that you need to create the fulltext indexes before that code will work. On my site I have a much more thorough explanation of the technique, including all the steps you need to follow to get it working.</p>
<p>Read Related Entries Revisted for more details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://inluminent.com/2003/04/30/related-entries-for-mt/#comment-953</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://inluminent.com/?p=622#comment-953</guid>
		<description>Thanks Adam!
</description>
		<content:encoded><![CDATA[<p>Thanks Adam!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
