<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">

<channel>
	<title>WordPress Planet</title>
	<link>http://planet.wordpress.org/</link>
	<language>en</language>
	<description>WordPress Planet - http://planet.wordpress.org/</description>

<item>
	<title>Weblog Tools Collection: WordPress Theme Releases for 11/21</title>
	<guid>http://weblogtoolscollection.com/?p=7227</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/21/wordpress-theme-releases-for-1121-2/</link>
	<description>&lt;h4&gt;&lt;a href=&quot;http://www.thehostingfinder.com/blog/thf204/&quot;&gt;THF204&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.thehostingfinder.com/demo/index.php?wptheme=THF204&quot;&gt;&lt;img title=&quot;THF204&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/THF204.gif&quot; alt=&quot;THF204&quot; width=&quot;200&quot; height=&quot;156&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Three column, simple clean theme with two widgetised sidebars.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://websitetheme.com/archives/18-BlackLens-Wordpress-theme.html&quot;&gt;BlackLens&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://websitetheme.com/wpdemo/?themedemo=blacklens&quot;&gt;&lt;img title=&quot;BlackLenstheme&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/BlackLenstheme.jpg&quot; alt=&quot;BlackLenstheme&quot; width=&quot;200&quot; height=&quot;152&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;BlackLens is a black, white and pink theme with a floral decoration in the top right of the page. Its a two column theme with a left sidebar and support for widgets.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://fyrewurks.com/2009/11/filmix/&quot;&gt;Filmix&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://fyrewurks.com/wordpress-theme-demos/?preview_theme=Filmix&quot;&gt;&lt;img title=&quot;Filmix&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Filmix.jpg&quot; alt=&quot;Filmix&quot; width=&quot;200&quot; height=&quot;138&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It supports gravatars, is widget-ready, Adsense-ready, dark, modern and clean.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://fyrewurks.com/2009/11/tiki-time/&quot;&gt;Tiki Time&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://fyrewurks.com/wordpress-theme-demos/?preview_theme=Tiki%20Time&quot;&gt;&lt;img title=&quot;Tiki Time&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/TikiTime.jpg&quot; alt=&quot;Tiki Time&quot; width=&quot;200&quot; height=&quot;146&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;3-columns, widget-ready, Adsense-ready, and supports gravatars&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://human3rror.com/the-hives-wordpress-theme/&quot;&gt;The Hives&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;The Hives&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/TheHives.jpg&quot; alt=&quot;The Hives&quot; width=&quot;200&quot; height=&quot;120&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Three column, widget ready theme with a rotating carousel, lifestream and related posts.&lt;/p&gt;</description>
	<pubDate>Sat, 21 Nov 2009 14:12:09 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Mark Jaquith: Block-level comments trick</title>
	<guid>http://markjaquith.wordpress.com/?p=369</guid>
	<link>http://markjaquith.wordpress.com/2009/11/21/block-level-comments-trick/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;Block-level comments are useful for commenting out an entire block of code in PHP, CSS, and other code contexts.&lt;/p&gt;
&lt;pre class=&quot;brush: php;&quot;&gt;
/*
$this = 'code is deactivated';
$and = 'so is this';
*/
&lt;/pre&gt;
&lt;p&gt;The only problem with this is that when you go to re-activate this code, you have to change both the opening and closing comment markers. That&amp;#8217;s a pain.&lt;/p&gt;
&lt;p&gt;While I was at WordCamp NYC last week, I saw &lt;a href=&quot;http://wpmama.com/&quot;&gt;Daisy Olsen&lt;/a&gt; using a very clever trick in her lightning round talk.&lt;/p&gt;
&lt;pre class=&quot;brush: php;&quot;&gt;
/*
$this = 'code is deactivated';
$and = 'so is this';
/**/
&lt;/pre&gt;
&lt;p&gt;See what she did there? The closing comment marker is preceded by another opening marker. Because comment blocks can&amp;#8217;t be nested, this second opening comment marker is ignored. This enabled her to re-enable this code by removing the opening marker.&lt;/p&gt;
&lt;pre class=&quot;brush: php;&quot;&gt;
$this = 'code is reactivated';
$and = 'so is this';
/**/
&lt;/pre&gt;
&lt;p&gt;Brilliant! I can&amp;#8217;t believe I haven&amp;#8217;t seen this before. The one downside to this is that you are deleting two characters and destroying the opening marker. Here&amp;#8217;s an even better method.&lt;/p&gt;
&lt;pre class=&quot;brush: php;&quot;&gt;
//*
$this = 'code is reactivated';
$and = 'so is this';
/**/
&lt;/pre&gt;
&lt;p&gt;By adding a slash in front of the opening comment marker, I comment out the comment marker. It only takes one key press, and the corpse of the original opening marker is retained, allowing you to reinstate it with the deletion of a single character.&lt;/p&gt;
&lt;p&gt;Props to &lt;a href=&quot;http://aleembawany.com/2009/01/27/lazy-block-comment-trick/&quot;&gt;Aleem Bawany&lt;/a&gt; for the second trick (he uses &lt;code&gt;//*/&lt;/code&gt; as the closing comment, which works pretty much the same way).&lt;/p&gt;
&lt;p&gt;What other commenting tricks do you know?&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/369/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/369/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/369/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/369/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/369/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/369/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/369/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/369/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/369/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/369/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&amp;blog=316&amp;post=369&amp;subd=markjaquith&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sat, 21 Nov 2009 04:49:41 +0000</pubDate>
	<dc:creator>Mark Jaquith</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: How to Create Micro Blogs Within WordPress</title>
	<guid>http://weblogtoolscollection.com/archives/2009/11/21/how-to-create-micro-blogs-within-wordpress/</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/21/how-to-create-micro-blogs-within-wordpress/</link>
	<description>&lt;p&gt;I recently started out with a microblog on &lt;a href=&quot;http://techie-buzz.com&quot; target=&quot;_blank&quot;&gt;my site&lt;/a&gt;, where I wanted to quickly share content I find on the Internet. Before I started out I had an option of using the &lt;a href=&quot;http://p2theme.com/&quot; target=&quot;_blank&quot;&gt;P2 theme&lt;/a&gt; to post quick content on it. However, I shelved the idea since I did and do not have much time to customize the P2 theme to match the look and feel of my current site.&lt;/p&gt;
&lt;p&gt;This led to a big dilemma since I wanted 3 things:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Start a Micro Blog and post quick content on it. &lt;/li&gt;
&lt;li&gt;Make sure that Google Indexes the micro blog content as it does with the other content. &lt;/li&gt;
&lt;li&gt;Create separate feeds for the Micro Blog and the rest of the content. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Well, i was able to do all of these things without having to add new plugins or create a new blog. Here are the steps I followed to do it. Hopefully many of you will find this useful, and in turn also understand how powerful WordPress is when you want to customize it the way you want it to be.&lt;/p&gt;
&lt;h3&gt;Create Categories &amp;amp; Modify Loops to Segregate Content&lt;/h3&gt;
&lt;p&gt;The first few steps include creating a separate category for the Microblog and segregating content accordingly.&lt;/p&gt;
&lt;h4&gt;Create Category for your Microblog&lt;/h4&gt;
&lt;p&gt;The first thing I wanted to do was to segregate the main content from the micro blog content on the home page, so I went ahead and created a new category called “Microblog”, where I post all the Microblog content.&lt;/p&gt;
&lt;h4&gt;Exclude Microblog Content from Main Loop&lt;/h4&gt;
&lt;p&gt;After creating a separate category, I needed the content from this category to be displayed separately on the site and not with the regular loop. To do that, you will have to edit your template file for the home page, usually index.php in your WordPress theme directory.&lt;/p&gt;
&lt;p&gt;To do that you will need to add the code given below before checking if posts exist.&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;pre&gt;&lt;span&gt;   1:&lt;/span&gt; query_posts($query_string . &lt;span&gt;'&amp;amp;cat=-123'&lt;/span&gt;); &lt;span&gt;//excludes micro blog category&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   2:&lt;/span&gt; &lt;span&gt;//continue regular WP loop&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   3:&lt;/span&gt; &lt;span&gt;if&lt;/span&gt; (have_posts()) : &lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   4:&lt;/span&gt;   &lt;span&gt;while&lt;/span&gt; (have_posts()) : the_post();&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   5:&lt;/span&gt;       &lt;span&gt;//display posts &lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   6:&lt;/span&gt;   endwhile:&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   7:&lt;/span&gt; &lt;span&gt;else&lt;/span&gt; : &lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   8:&lt;/span&gt;     &lt;span&gt;//show errors &lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   9:&lt;/span&gt; endif;&lt;/pre&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;The code query_posts&amp;#8230; instructs WordPress to ignore categories which have an id 123.&amp;#160; Please not that you need to provide the minus(-) symbol before the category id. You will need to specify comma separated values to skip multiple categories.&lt;/p&gt;
&lt;h4&gt;Only Display Microblog Content in The Loop&lt;/h4&gt;
&lt;p&gt;Since I wanted Google to index the content from the Microblog, I wanted to display in on the home page, for this I needed to run another loop, which only displays content from the Microblog.&lt;/p&gt;
&lt;p&gt;For that you need to add the following code:&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;pre&gt;&lt;span&gt;   1:&lt;/span&gt; query_posts(&lt;span&gt;'category_name=microblog&amp;amp;posts_per_page=5'&lt;/span&gt;); &lt;span&gt;//only display microblog posts&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   2:&lt;/span&gt; &lt;span&gt;if&lt;/span&gt;(have_posts()) :&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   3:&lt;/span&gt;     &lt;span&gt;while&lt;/span&gt;(haveposts()) : the_post();&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   4:&lt;/span&gt;         &lt;span&gt;//show posts&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   5:&lt;/span&gt;     endwhile;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   6:&lt;/span&gt; &lt;span&gt;else&lt;/span&gt;:&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   7:&lt;/span&gt;     &lt;span&gt;//show errors&lt;/span&gt;&lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   8:&lt;/span&gt; endif;&lt;/pre&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In this case, the query_posts only fetched posts from a particular category we specified as the category_name and skipped the rest of it.&lt;/p&gt;
&lt;p&gt;Using the above tricks you now have different sections on your blog home page which segregates content based on categories. You can find more information about skipping and querying certain categories by visiting the &lt;a href=&quot;http://codex.wordpress.org/The_Loop&quot; target=&quot;_blank&quot;&gt;WordPress Codex entries for The Loop&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Creating Different Feeds for Main and Microblog&lt;/h3&gt;
&lt;p&gt;Now that you have been able to separate content from your main blog and the microblog, it is now time to create separate feeds for them. This is much more simpler than segregating content above and only requires few changes in your feed URL.&lt;/p&gt;
&lt;p&gt;For example if your main feed URL is &lt;strong&gt;http://example.com/feed&lt;/strong&gt; you will have to change it to &lt;strong&gt;http://example.com/feed?cat=-123&lt;/strong&gt;. Similar to the skip rule in the query above, -123 will ignore posts from the category you specify.&lt;/p&gt;
&lt;p&gt;Creating a separate feed for your Microblog is much more simpler, all you need to do is use the current URL for the Microblog category and add /feed to it. Your Microblog feed will be &lt;strong&gt;&lt;a href=&quot;http://example.com/microblog/feed&quot;&gt;http://example.com/microblog/feed&lt;/a&gt;&lt;/strong&gt;. &lt;/p&gt;
&lt;p&gt;Since you are offering multiple feeds, you might also want to add them to your header.php, so browsers with automatic feed discovery can discover all your feeds. To that, remove the regular feed/RSS link tags from your header and add this. Replace the feed URLs with your own.&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;pre&gt;&lt;span&gt;   1:&lt;/span&gt; &lt;span&gt;&amp;lt;&lt;/span&gt;&lt;span&gt;link&lt;/span&gt; &lt;span&gt;rel&lt;/span&gt;&lt;span&gt;=&quot;alternate&quot;&lt;/span&gt; &lt;span&gt;type&lt;/span&gt;&lt;span&gt;=&quot;application/rss+xml&quot;&lt;/span&gt; &lt;span&gt;title&lt;/span&gt;&lt;span&gt;=&quot;Techie Buzz RSS Feed&quot;&lt;/span&gt; &lt;span&gt;href&lt;/span&gt;&lt;span&gt;=&quot;http://feeds.techie-buzz.com/techiebuzz&quot;&lt;/span&gt; &lt;span&gt;/&amp;gt;&lt;/span&gt; &lt;/pre&gt;
&lt;pre&gt;&lt;span&gt;   2:&lt;/span&gt; &lt;span&gt;&amp;lt;&lt;/span&gt;&lt;span&gt;link&lt;/span&gt; &lt;span&gt;rel&lt;/span&gt;&lt;span&gt;=&quot;alternate&quot;&lt;/span&gt; &lt;span&gt;type&lt;/span&gt;&lt;span&gt;=&quot;application/rss+xml&quot;&lt;/span&gt; &lt;span&gt;title&lt;/span&gt;&lt;span&gt;=&quot;Techie Buzz Microblog&quot;&lt;/span&gt; &lt;span&gt;href&lt;/span&gt;&lt;span&gt;=&quot;http://feeds.techie-buzz.com/tbmicroblog&quot;&lt;/span&gt; &lt;span&gt;/&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;img title=&quot;multiple_feeds&quot; border=&quot;0&quot; alt=&quot;multiple_feeds&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/multiple_feeds.png&quot; width=&quot;214&quot; height=&quot;106&quot; /&gt; &lt;/p&gt;
&lt;p&gt;Doing this will ensure that whenever a user tries to subscribe to you feeds, they will see multiple options as shown above.&lt;/p&gt;
&lt;h3&gt;Posting Quickly to Your Microblog&lt;/h3&gt;
&lt;p&gt;Now that you have your Microblog setup and ready to go, it would be more appropriate that you can quickly post content to it.&lt;/p&gt;
&lt;p&gt;To do that change your default category for posting to “Microblog” and then drag the Quick Press bookmarklet from your Tools menu to your browser bookmarks bar and start posting. Watch the video below to see how you can use Quick Press to quickly post content to your site.&lt;/p&gt;
&lt;p align=&quot;center&quot;&gt;&lt;/p&gt;
&lt;p&gt;The above tricks will not create a &lt;em&gt;real&lt;/em&gt; Microblog, but it will eventually help you to segregate content and run multiple smaller blogs within your major blog and offer them to subscribers. I would still prefer to use the P2 theme for the above task, however customizing it to match the look and feel is a lengthy process and hopefully it should be quicker in the future.&lt;/p&gt;
&lt;p&gt;The above tricks might be good or they might not be that good. Do give me your feedback on what you think about it and whether or not your found it helpful.&lt;/p&gt;</description>
	<pubDate>Sat, 21 Nov 2009 04:01:56 +0000</pubDate>
	<dc:creator>Keith Dsouza</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: The New P2 Is Awesome</title>
	<guid>http://weblogtoolscollection.com/?p=7215</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/20/the-new-p2-is-awesome/</link>
	<description>&lt;p&gt;During WordCamp New York, I and many others had the chance to view a demo of the new P2 theme that will be released to WordPress.org users in due time. It&amp;#8217;s already live for WordPress.com users in case you use that system. The New P2 improves on the first version by adding support for custom post types. For example, the theme has built in content types for a blog post, status updates, quotes, or links. These specific content types can be designed to give each an individual style. The first thing that comes to my mind when I saw this in action was Tumblr which does a great job styling the various types of content you have to choose from. Custom post types will be available in WordPress 2.9.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/p2posttypes.png&quot; rel=&quot;thumbnail&quot;&gt;&lt;img src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/p2posttypes-300x87.png&quot; alt=&quot;p2posttypes&quot; title=&quot;p2posttypes&quot; width=&quot;300&quot; height=&quot;87&quot; class=&quot;aligncenter size-medium wp-image-7216&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The new P2 has also been reworked from the ground up so that it can be used as a parent theme and then extended with child themes. Andy Peatling says:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;This will allow theme designers to create awesome new theme designs without having to duplicate all of the existing P2 features. We’ve streamlined the HTML of the theme so that it is much more flexible for creating new designs using CSS.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Although it&amp;#8217;s not shown in the screenshots, I was told that the new P2 will contain media uploading so that images can be added to posts. This is something that was heavily requested after the first version of P2 was released. For more screenshots and to read Andy&amp;#8217;s write up, check out &lt;a href=&quot;http://en.blog.wordpress.com/2009/11/19/a-new-p2/&quot;&gt;this post on the WordPress.com blog&lt;/a&gt; and keep an eye out for the release of the new P2 on the theme repository. &lt;/p&gt;</description>
	<pubDate>Fri, 20 Nov 2009 21:56:10 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>WordPress.tv: Daryl Koopersmith: Elastic—Your Theme’s Future WYSIWYG Editor</title>
	<guid>http://wordpress.tv/?p=3021</guid>
	<link>http://wordpress.tv/2009/11/14/daryl-koopersmith-elastic-nyc09/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;ins&gt;
&lt;div class=&quot;video-player&quot; id=&quot;x-video-0&quot;&gt;
&lt;/div&gt;&lt;/ins&gt;
&lt;br /&gt;&lt;a href=&quot;http://wordpress.tv/2009/11/14/daryl-koopersmith-elastic-nyc09/&quot;&gt;&lt;img width=&quot;160&quot; height=&quot;120&quot; src=&quot;http://cdn.videos.wordpress.com/RaOFBXtA/elastic_std.original.jpg&quot; /&gt; &lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/3021/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/3021/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/3021/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/3021/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/3021/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/3021/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/3021/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/3021/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/3021/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/3021/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=wordpress.tv&amp;blog=5089392&amp;post=3021&amp;subd=wptv&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 20 Nov 2009 03:45:12 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Matt: This Week in Startups</title>
	<guid>http://ma.tt/?p=15103</guid>
	<link>http://ma.tt/2009/11/this-week-in-startups/</link>
	<description>&lt;p&gt;Last week &lt;a href=&quot;http://thisweekinstartups.com/2009/11/twist-26-with-matt-mullenweg/&quot;&gt;I was on This Week in Startups&lt;/a&gt; with &lt;a href=&quot;http://calacanis.com/&quot;&gt;Jason Calacanis&lt;/a&gt; and &lt;a href=&quot;http://www.joelonsoftware.com/&quot;&gt;Joel Spolsky&lt;/a&gt;. Here&amp;#8217;s the show:&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
	<pubDate>Thu, 19 Nov 2009 17:45:35 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>
<item>
	<title>Publisher Blog: WordPress and Windows Azure</title>
	<guid>http://publisherblog.automattic.com/?p=701</guid>
	<link>http://publisherblog.automattic.com/2009/11/19/wordpress-and-windows-azure/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;This week I had a unique opportunity to appear at Microsoft&amp;#8217;s &lt;a href=&quot;http://microsoftpdc.com/&quot;&gt;Professional Developer Conference&lt;/a&gt; in Los Angeles, to demo four open source technologies &amp;#8212; WordPress, &lt;a href=&quot;http://www.apache.org/&quot;&gt;Apache&lt;/a&gt;, &lt;a href=&quot;http://www.mysql.com/&quot;&gt;MySQL&lt;/a&gt;, &lt;a href=&quot;http://php.net/index.php&quot;&gt;PHP&lt;/a&gt; &amp;#8212; running on Microsoft&amp;#8217;s new EC2 competitor called Azure.&lt;/p&gt;
&lt;p&gt;WordPress and Windows Azure probably aren&amp;#8217;t the first two things you&amp;#8217;d think of together. WordPress has been free and open source software from the very beginning, Windows not so much, but we&amp;#8217;ve always supported as many platforms as possible and for at least 4 years now you could run WP on Windows and IIS (Internet Information Services).&lt;/p&gt;
&lt;p&gt;Choice and competition are great for spurring innovation and better for users and I believe open source software is a good thing even if it&amp;#8217;s on a proprietary platform. (Just like we have an open source &lt;a href=&quot;http://iphone.wordpress.org/&quot;&gt;iPhone application&lt;/a&gt;, or encourage people to use &lt;a href=&quot;http://www.mozilla.com/firefox/&quot;&gt;Firefox&lt;/a&gt; on Windows.)&lt;/p&gt;
&lt;p&gt;If you&amp;#8217;re interested, check out &lt;a href=&quot;http://www.microsoft.com/presspass/exec/ozzie/2009/11-17PDC.mspx&quot;&gt;the full transcript of the keynote from PDC&lt;/a&gt; or watch &lt;a href=&quot;http://microsoftpdc.com/Sessions/Key01&quot;&gt;the video of the keynote&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We also created this FAQ in case you had more questions about what was announced.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What did you announce about WordPress at Microsoft PDC 09?&lt;/strong&gt;&lt;br /&gt;
As part of the introduction of the Windows Azure platform, we announced that self-hosted WordPress can be run in an Azure environment on an open source stack of Apache, MySQL, and PHP. Showing MySQL in particular at a Microsoft conference was unusual.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Are you moving WordPress.com to Azure?&lt;/strong&gt;&lt;br /&gt;
No. &lt;a href=&quot;http://www.wordpress.com&quot;&gt;WordPress.com&lt;/a&gt;, which is Automattic&amp;#8217;s hosted blogging service, is going to stay on its existing infrastructure. Martin Cron from the Cheezburger Network launched a new blog &lt;a href=&quot;http://oddlyspecific.com/&quot;&gt;Oddly Specific&lt;/a&gt; on Azure, which some people confused with Automattic.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Do you use Azure at all?&lt;/strong&gt;&lt;br /&gt;
Yes, we&amp;#8217;ve been testing out their blob storage as an alternative to Amazon S3 and Rackspace Cloudfiles. We don&amp;#8217;t currently use it in production.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Doesn&amp;#8217;t this conflict with your open source orientation?&lt;/strong&gt;&lt;br /&gt;
No. We actually think it&amp;#8217;s going to help the spread of open source to have the Free and open Web stack get more support and deployment through Microsoft&amp;#8217;s cloud infrastructure, which they&amp;#8217;re investing quite a bit in. Besides, as I like to say, once you get a taste of Freedom it&amp;#8217;s hard to go back. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/701/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/701/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/701/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/701/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/701/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/701/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/701/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/701/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/701/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/701/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&amp;blog=1470857&amp;post=701&amp;subd=wordpresspublishers&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Thu, 19 Nov 2009 17:26:07 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Theme Releases for 11/19</title>
	<guid>http://weblogtoolscollection.com/?p=7205</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/19/wordpress-theme-releases-for-1119-2/</link>
	<description>&lt;h4&gt;&lt;a href=&quot;http://www.clickonf5.org/aureola&quot;&gt;Aureola&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.blogern.com/lifestyle/&quot;&gt;&lt;img title=&quot;Aureola&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Aureola.gif&quot; alt=&quot;Aureola&quot; width=&quot;200&quot; height=&quot;114&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A free magazine style WordPress theme to show your content on a smooth layout.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.isoftwarereviews.com/brandnew-folio-free-wordpress-theme/&quot;&gt;BrandNew Folio&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.isoftwarereviews.com/premium-theme-demo/?wptheme=BrandNew%20Folio%20-%20Custom%20Home%20Page&quot;&gt;&lt;img title=&quot;BrandNew Folio&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/BrandNewFolio.png&quot; alt=&quot;BrandNew Folio&quot; width=&quot;171&quot; height=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Two column, fixed width theme with support for gravatars, widgets and a customizable homepage.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://theme.anunciamex.com/&quot;&gt;wpClassifieds&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://theme.anunciamex.com/demo/&quot;&gt;&lt;img title=&quot;wpClassifieds&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/wpClassifieds.jpg&quot; alt=&quot;wpClassifieds&quot; width=&quot;200&quot; height=&quot;198&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;wpClassifieds is a free Wordpress theme that transform your wordpress blog into a classified ads site similar to Craigslist or OLX.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://webhostinghelpguy.inmotionhosting.com/wordpress/5-travel-inspired-wordpress-themes/&quot;&gt;5 Travel-Inspired WordPress Themes&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://webhostinghelpguy.inmotionhosting.com/demos/?wptheme=Island%20Vacation&quot;&gt;&lt;img title=&quot;article24-med-iv-cap&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/article24medivcap.jpg&quot; alt=&quot;article24-med-iv-cap&quot; width=&quot;200&quot; height=&quot;114&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Five single column and multiple column themes inspired with some things travel.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.getacustomdesign.com/news/bold-life-free-wordpress-theme-psd-included/&quot;&gt;Bold Life&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.boldlife.getacustomdesign.com/&quot;&gt;&lt;img title=&quot;Bold Life Theme&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/BoldLifeTheme.gif&quot; alt=&quot;Bold Life Theme&quot; width=&quot;200&quot; height=&quot;112&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Bold Life is 2 columns light, widget ready WordPress theme.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://blue-anvil.com/archives/minicard-theme-for-wordpress-a-cool-free-business-cardsocial-network-theme/&quot;&gt;MiniCard&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;MiniCard is a social network/business card Wordpress theme inspired by Tim Van Damme’s website. The theme lets you add links to all the social networking sites you may be a member of, and post useful information such as bio’s and contact details. It also has built in hCard support and (optionally) lets you offer a vCard for visitors to download your contact information.&lt;/p&gt;</description>
	<pubDate>Thu, 19 Nov 2009 15:56:00 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Donncha: WP Super Cache 0.9.8</title>
	<guid>http://ocaoimh.ie/?p=89495507</guid>
	<link>http://ocaoimh.ie/wp-super-cache-098/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUv&quot;&gt;WP Super Cache&lt;/a&gt; version 0.9.8 is now &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvd3Atc3VwZXItY2FjaGUv&quot;&gt;available&lt;/a&gt;. WP Super Cache is a page caching plugin for WordPress that will significantly speed up your website.&lt;/p&gt;
&lt;p&gt;New in this release are 2 translations. The Spanish translation is by &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VxdWlwYWplZGVtYW5vLmluZm8v&quot;&gt;Omi&lt;/a&gt; and the Italian by &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpZGliYW8ubmV0Lw==&quot;&gt;Gianni Diurno&lt;/a&gt;. Please, if you use their translations, drop by their sites and leave a thank you comment! They&amp;#8217;ve been very patient with me as I fixed gettext bugs and added new text. Both have blogged about the translations if you need to know more: &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2dpZGliYW8ubmV0L2luZGV4LnBocC8yMDA5LzExLzE4L3dwLXN1cGVyLWNhY2hlLWluLWl0YWxpYW5vLw==&quot;&gt;Gianni&lt;/a&gt;, &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2VxdWlwYWplZGVtYW5vLmluZm8vMTgvMTEvMjAwOS93cC1zdXBlci1jYWNoZS10cmFkdWNpZG8tYWwtY2FzdGVsbGFuby8=&quot;&gt;Omi&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The second major feature to go in is an &amp;#8220;advanced&amp;#8221; section to the debugger. This allows the plugin to check the front page every 5 minutes to make sure everything is ok. It monitors for 2 very rare problems:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt; Very very occasionally, the front page becomes a gzip file that downloads. It happened here once and I examined the cache file. There was nothing wrong with it. It was perfect. I suspect Apache and mod_rewrite got confused somehow but clearing the cache fixed it. The file generated after was exactly the same size as the old one, so no chance it got &amp;#8220;double gzipped&amp;#8221;.&lt;/li&gt;
&lt;li&gt; In &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvc3VwcG9ydC90b3BpYy8yMzc0MTU/cmVwbGllcz02MA==&quot;&gt;certain rare cases&lt;/a&gt;, where a blog has a static front page, &lt;em&gt;and&lt;/em&gt; uses a permalink structure of /%category%/%postname%/, the wrong page may be cached as the front page. Even if your blog satisfies the two conditions above it may not suffer from this problem. I tried it on this blog for a few days and couldn&amp;#8217;t reproduce it at all!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Nevertheless, if you&amp;#8217;re concerned edit your wp-cache-config.php and add this line:&lt;/p&gt;
&lt;pre class=&quot;brush: php;&quot;&gt;$wp_super_cache_advanced_debug = 1;&lt;/pre&gt;
&lt;p&gt;Reload the admin page and you&amp;#8217;ll see this added to the debug section:&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvYWR2YW5jZWQtZGVidWcucG5n&quot; rel=&quot;&quot;&gt;&lt;img src=&quot;http://ocaoimh.ie/wp-content/uploads/2009/11/advanced-debug-300x182.png&quot; alt=&quot;advanced-debug&quot; title=&quot;advanced-debug&quot; width=&quot;300&quot; height=&quot;182&quot; class=&quot;size-medium wp-image-89495508&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;If activated, it will check your front page every 5 minutes. It&amp;#8217;s not activated by default because these errors only happen to a small number of blogs. I&amp;#8217;ve also noticed that WordPress seems to randomly forget to run the page checker from time to time. I debugged it and the job simply disappears from the wp-cron system! I&amp;#8217;ve no idea why, but reloading the admin page schedules it again.&lt;br /&gt;
If you&amp;#8217;re still paranoid, set your cache expiry low so at least the cache files will be recycled quickly.&lt;/p&gt;
&lt;h4&gt;Caching, Minification and CDNs&lt;/h4&gt;
&lt;p&gt;Oh, there&amp;#8217;s a new caching plugin on the scene. &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvdzMtdG90YWwtY2FjaGUv&quot;&gt;W3 Total Cache&lt;/a&gt; works like Supercache&amp;#8217;s half-on mode but can store to memory as well as disk (like &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvYmF0Y2FjaGUv&quot;&gt;Batcache&lt;/a&gt;) but also does minification and supports CDNs. I&amp;#8217;ve been asked a few times if I&amp;#8217;ll support those features too but I don&amp;#8217;t see why as other plugins already have that covered (and frankly, I don&amp;#8217;t have time to maintain such complex features):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvd3AtbWluaWZ5Lw==&quot;&gt;WP Minify&lt;/a&gt; &amp;#8220;integrates the Minify engine into your WordPress blog. Once enabled, this plugin will combine and compress JS and CSS files to improve page load time.&amp;#8221; Thaya is very responsive and fixed a bug I reported quickly.&lt;/li&gt;
&lt;li&gt;There are any number of &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvc2VhcmNoLnBocD9xPUNETg==&quot;&gt;CDN plugins&lt;/a&gt; for WordPress. I don&amp;#8217;t use a CDN so I can&amp;#8217;t recommend one but &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZXh0ZW5kL3BsdWdpbnMvb3NzZGwtY2RuLW9mZi1saW5rZXIv&quot;&gt;OSSDL CDN Off Linker&lt;/a&gt; might be worth a shot. &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL21hcmsub3NzZGwuZGUvMjAwOS8wOC9yZXdyaXRpbmctdXJscy1mb3Itd29yZHByZXNzLWFuZC1jZG4v&quot;&gt;This post&lt;/a&gt; on it mentions Supercache plus, a fork of this plugin.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;Traffic Spikes and Benchmarks&lt;/h4&gt;
&lt;p&gt;I really should collect more of these. A few weeks ago Mark Pilgrim &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2RpdmVpbnRvbWFyay5vcmcvYXJjaGl2ZXMvMjAwOS8xMC8xOS90aGUtcG9pbnQ=&quot;&gt;blogged about&lt;/a&gt; how his book had been republished by a 3rd party and put up for sale on Amazon. His book was published under the GNU Free Documentation License so that&amp;#8217;s perfectly legal to do, even if a little unusual as it can be downloaded from Mark&amp;#8217;s website and is for sale by his publisher. The blog post generated a lot of interest and a few days later I received a donation from Mark, followed by a thank you email. I&amp;#8217;m a big fan of what Mark does, so if it had been a physical cheque or a letter I&amp;#8217;d have framed it!&lt;br /&gt;
A few days after that he &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2RpdmVpbnRvbWFyay9zdGF0dXNlcy81MTEzNjk4NzUx&quot;&gt;tweeted the following graph&lt;/a&gt;. Nice spike of traffic eh? His server held up fine with help from WP Super Cache.&lt;/p&gt;
&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvZGl2ZWludG9tYXJrLm9yZy1kYXNoYm9hcmQucG5n&quot; rel=&quot;&quot;&gt;&lt;img src=&quot;http://ocaoimh.ie/wp-content/uploads/2009/11/diveintomark.org-dashboard-300x105.png&quot; alt=&quot;diveintomark.org-dashboard&quot; title=&quot;diveintomark.org-dashboard&quot; width=&quot;300&quot; height=&quot;105&quot; class=&quot;size-medium wp-image-89495509&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;And finally, some benchmarks, in Russian unfortunately but the pages translates well.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cuc2ppbmtzLnByby93b3JkcHJlc3MvNjgzLXdwLXN1cGVyY2FjaGUtdnMtaHlwZXJjYWNoZS12cy13My10b3RhbC1jYWNoZS12cy1tYXhzaXRlLWNhY2hlLw==&quot;&gt;WP Super Cache vs HyperCache vs W3 Total Cache vs MaxSite Cache&lt;/a&gt; (&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYW5zbGF0ZS5nb29nbGV1c2VyY29udGVudC5jb20vdHJhbnNsYXRlX2M/aGw9ZW4mIzAzODtpZT1VVEYtOCYjMDM4O3NsPXJ1JiMwMzg7dGw9ZW4mIzAzODt1PWh0dHA6Ly9ibG9nLnNqaW5rcy5wcm8vd29yZHByZXNzLzY4My13cC1zdXBlcmNhY2hlLXZzLWh5cGVyY2FjaGUtdnMtdzMtdG90YWwtY2FjaGUtdnMtbWF4c2l0ZS1jYWNoZS8mIzAzODtydXJsPXRyYW5zbGF0ZS5nb29nbGUuaWUmIzAzODt0d3U9MSYjMDM4O3VzZz1BTGtKcmhnQi1RcG02U0RYSDJRRzBvLWZCTGJWbE9zb0ln&quot;&gt;translation&lt;/a&gt;) shows Supercache doing 106154.90 requests a second, but that&amp;#8217;s thanks to using Nginx too.&lt;/li&gt;
&lt;li&gt; &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL2Jsb2cuc2ppbmtzLnByby93b3JkcHJlc3MvNjg5LXdwLXN1cGVyLWNhY2hlLXZzLW1heHNpdGUtY2FjaGUtcGFydC0xLw==&quot;&gt;WP Super Cache vs MaxSite Cache: Part 1&lt;/a&gt; (&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYW5zbGF0ZS5nb29nbGV1c2VyY29udGVudC5jb20vdHJhbnNsYXRlX2M/aGw9ZW4mIzAzODtpZT1VVEYtOCYjMDM4O3NsPXJ1JiMwMzg7dGw9ZW4mIzAzODt1PWh0dHA6Ly9ibG9nLnNqaW5rcy5wcm8vd29yZHByZXNzLzY4OS13cC1zdXBlci1jYWNoZS12cy1tYXhzaXRlLWNhY2hlLXBhcnQtMS8mIzAzODtwcmV2PV90JiMwMzg7cnVybD10cmFuc2xhdGUuZ29vZ2xlLmllJiMwMzg7dHd1PTEmIzAzODt1c2c9QUxrSnJoZ3J1MXZZMGpYeVRxaWlRVlQtRTdMZkt5YnhXQQ==&quot;&gt;translation&lt;/a&gt;) shows a tight race between Supercache and a plugin called Max Cache Lite, probably because he used Apache this time.&lt;/li&gt;
&lt;/ul&gt;
&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3AtY29udGVudC91cGxvYWRzLzIwMDkvMTEvY2FjaGluZy1iZW5jaG1hcmtzLmdpZg==&quot; rel=&quot;&quot;&gt;&lt;img src=&quot;http://ocaoimh.ie/wp-content/uploads/2009/11/caching-benchmarks-300x92.gif&quot; alt=&quot;caching-benchmarks&quot; title=&quot;caching-benchmarks&quot; width=&quot;300&quot; height=&quot;92&quot; class=&quot;aligncenter size-medium wp-image-89495516&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;Summary of changes in 0.9.8:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added Spanish translation by Omi.&lt;/li&gt;
&lt;li&gt;Added Italian translation by Gianni Diurno.&lt;/li&gt;
&lt;li&gt;Addded advanced debug code to check front page for category problem. Enable by setting $wp_super_cache_advanced_debug to 1 in the config file.&lt;/li&gt;
&lt;li&gt;Fixed wordpress vs wordpress_logged_in cookie mismatch in cookie checking function.&lt;/li&gt;
&lt;li&gt;Correctly check if WP_CACHE is set or not. PHP is weird.&lt;/li&gt;
&lt;li&gt;Added wp_cache_clear_cache() to clear out cache directory.&lt;/li&gt;
&lt;li&gt;Only show logged in message when debugging enabled.&lt;/li&gt;
&lt;li&gt;Added troubleshooting point 20. PHP vs Apache user.&lt;/li&gt;
&lt;li&gt;Fixed problem deleting cache file.&lt;/li&gt;
&lt;li&gt;Don&amp;#8217;t delete cache files when moderated comments are deleted.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;PS. &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy53b3JkY2FtcGlyZWxhbmQuY29tLw==&quot;&gt;WordCamp Ireland&lt;/a&gt; is on in early March next year in picturesque Kilkenny. Here&amp;#8217;s &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3d3dy5zYWJyaW5hZGVudC5jb20vMjAwOS8xMS8xOS9zaXRlLWxhdW5jaC13b3JkY2FtcC1pcmVsYW5kLw==&quot;&gt;Sabrina&amp;#8217;s launch post&lt;/a&gt;. Sign up! I&amp;#8217;ll be going!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Related Posts&lt;/strong&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg0LXRoZS1nYXJiYWdlLWNvbGxlY3Rvci8=&quot; rel=&quot;&quot;&gt;WP Super Cache 0.8.4, the garbage collector&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtMDg3Lw==&quot; rel=&quot;&quot;&gt;WP Super Cache 0.8.7&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd3Atc3VwZXItY2FjaGUtZGV2ZWxvcGVyLWRvY3VtZW50YXRpb24v&quot; rel=&quot;&quot;&gt;WP Super Cache Developer Documentation&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt; &lt;img src=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?view=1&amp;post_id=89495507&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Thu, 19 Nov 2009 14:20:27 +0000</pubDate>
	<dc:creator>Donncha</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Wins Best Open Source CMS Award for 2009</title>
	<guid>http://weblogtoolscollection.com/archives/2009/11/18/wordpress-wins-best-open-source-cms-award-for-2009-2/</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/18/wordpress-wins-best-open-source-cms-award-for-2009-2/</link>
	<description>&lt;p&gt;WordPress has always been one of the best open source software available for blogging and managing websites, corporate or otherwise. To better that, WordPress has been awarded the &lt;a href=&quot;http://www.packtpub.com/award&quot; target=&quot;_blank&quot;&gt;Best Open Source CMS Award for 2009&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;We are pleased to announce that WordPress has won the Overall Best Open Source CMS Award in the 2009 Open Source CMS Awards. WordPress has won this Award for the first time in the past four years, earning itself a place in the Hall of Fame category for the Award next year.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Three cheers to the most wonderful platform I have ever used, and will continue to use, thanks to the innovations and continued development of WordPress by the Automattic team.&lt;/p&gt;
&lt;p&gt;What do you think about this award? Feel free to let your congratulations and thoughts flow through the comments form.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; WordPress was also named the first runner-up in the Best Open Source PHP CMS Software. Read Matt Mullenweg’s Official announcement &lt;a href=&quot;http://wordpress.org/development/2009/11/wordpress-wins-cms-award/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Thu, 19 Nov 2009 02:50:37 +0000</pubDate>
	<dc:creator>Keith Dsouza</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: Is Automattic Evil?</title>
	<guid>http://weblogtoolscollection.com/?p=7209</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/18/is-automattic-evil/</link>
	<description>&lt;p&gt;&lt;img src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/automatticlogo-300x38.png&quot; alt=&quot;automatticlogo&quot; title=&quot;automatticlogo&quot; width=&quot;300&quot; height=&quot;38&quot; class=&quot;alignright size-medium wp-image-7208&quot; /&gt;Stick around the WordPress community for a period of time and you&amp;#8217;re bound to come across a few folks who say Automattic is an evil company or Matt Mullenweg is evil in the way in which he runs WordPress.org. The more time I spend talking to Matt and with other employees of Automattic, the more I don&amp;#8217;t understand where these thoughts and feelings of &lt;i&gt;evilness&lt;/i&gt; come from. Sure, there is a decision made from time to time that a vocal group of people disagree with but you can&amp;#8217;t make the right decision 100% of the time. Let&amp;#8217;s take a closer look at Automattic as it relates to WordPress.&lt;/p&gt;
&lt;p&gt;When I interviewed Matt at WordCamp New York, one of the things I asked him to address is the notion that Automattic commercially benefits from those who work for free. This indeed happens but on the flip side, Automattic gives a ton back to the project and to the community. For example, I think there is a lot that can be said for the progression of WordPress thanks to the resources that Automattic has been able to provide due to their funding. It&amp;#8217;s also worth mentioning that Automattic pays a couple of folks to work on WordPress the majority of their time such as Ryan Boren who is always slaving away committing code and Jane Wells who works on the usability front. &lt;/p&gt;
&lt;p&gt;It&amp;#8217;s not like Automattic hoards the contributions to the project and gives nothing back. Matt said something during the interview that really stuck a chord with me and that is &amp;#8220;&lt;i&gt;Automattic is just one member of the WordPress community. We are a huge contributor. Myself, Jane everyone involved tries to give as much back to the WordPress community as possible.&lt;/i&gt;&amp;#8221; So far, I can&amp;#8217;t see anything that portrays the individuals or the company as evil. &lt;/p&gt;
&lt;p&gt;Throughout the history of Automattic, they have developed and released a number of WordPress plugins to the community. They have also taken some of their paid offerings such as VideoPress and released those to the public as well. The entire VideoPress framework to be exact. They don&amp;#8217;t have to do this but they do so because Matt wants Automattic to be an excellent example of an Open Source based company. Not everything is open because hosted services do not have to abide by the GPL since there is no distribution taking place. It&amp;#8217;s also worth noting that Automattic has a system in place now so that when they build in a cool new feature for WordPress.com such as &lt;a href=&quot;http://en.blog.wordpress.com/2009/11/12/a-blog-near-you/&quot; target=&quot;_blank&quot;&gt;Geotagging&lt;/a&gt; they also build a plugin to release for the WordPress.org side of things granted, the release isn&amp;#8217;t always immediate. &lt;/p&gt;
&lt;h2&gt;Verdict:&lt;/h2&gt;
&lt;p&gt;It&amp;#8217;s my opinion that neither Matt Mullenweg or Automattic is evil. They don&amp;#8217;t have evil tendencies and they are not out to screw people. If that were the case, I can&amp;#8217;t see how WordPress could become the piece of software it is today. So my question to you is, do you think either is evil and if so, why? &lt;/p&gt;</description>
	<pubDate>Thu, 19 Nov 2009 01:03:51 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>Alex King: WPWeekly Episode 79 – Alex King And WPHelpCenter</title>
	<guid>http://alexking.org/?p=3790</guid>
	<link>http://www.wptavern.com/wpweekly-episode-79-%E2%80%93-alex-king-and-wphelpcenter</link>
	<description>&lt;p&gt;I enjoyed &lt;a href=&quot;http://www.wptavern.com/wpweekly-episode-79-%e2%80%93-alex-king-and-wphelpcenter&quot; rel=&quot;external&quot;&gt;my podcast with Jeff last night&lt;/a&gt; on &lt;a href=&quot;http://www.wptavern.com/category/wordpress-weekly&quot; rel=&quot;external&quot;&gt;WordPress Weekly&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We discussed the &lt;a href=&quot;http://wphelpcenter.com&quot;&gt;WordPress HelpCenter&lt;/a&gt;, the &lt;a href=&quot;http://carringtontheme.com&quot;&gt;Carrington CMS theme framework&lt;/a&gt; and a little about Open Source business models.&lt;/p&gt;
&lt;p&gt;You can &lt;a href=&quot;http://recordings.talkshoe.com/TC-34224/TS-293892.mp3&quot; rel=&quot;external&quot;&gt;download the MP3 file here&lt;/a&gt;.
&lt;p&gt;&lt;a href=&quot;http://alexking.org/blog/2009/11/18/wpweekly-episode-79-%e2%80%93-alex-king-and-wphelpcenter&quot;&gt;#&lt;/a&gt; | &lt;a href=&quot;http://www.wptavern.com/wpweekly-episode-79-%E2%80%93-alex-king-and-wphelpcenter&quot;&gt;Visit Site &amp;raquo;&lt;/a&gt;&lt;/p&gt;
&lt;img src=&quot;http://alexking.org/wp/?ak_action=api_record_view&amp;id=3790&amp;type=feed&quot; alt=&quot;&quot; /&gt;</description>
	<pubDate>Wed, 18 Nov 2009 18:16:52 +0000</pubDate>
	<dc:creator>Alex</dc:creator>
</item>
<item>
	<title>Donncha: WordPress MU 2.8.6</title>
	<guid>http://ocaoimh.ie/?p=89495504</guid>
	<link>http://ocaoimh.ie/wordpress-mu-286/</link>
	<description>&lt;p&gt;WordPress MU 2.8.6 has just been released and may be &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL211LndvcmRwcmVzcy5vcmcvZG93bmxvYWQv&quot;&gt;downloaded&lt;/a&gt; immediately.&lt;/p&gt;
&lt;p&gt;This is a security release with the same &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3dvcmRwcmVzcy5vcmcvZGV2ZWxvcG1lbnQvMjAwOS8xMS93b3JkcHJlc3MtMi04LTYtc2VjdXJpdHktcmVsZWFzZS8=&quot;&gt;fixes as WordPress 2.8.6&lt;/a&gt; plus quite a few MU specific &lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL3RyYWMubXUud29yZHByZXNzLm9yZy90aW1lbGluZQ==&quot;&gt;bug fixes&lt;/a&gt; too.&lt;/p&gt;
&lt;p&gt;Please upgrade as soon as you can.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Related Posts&lt;/strong&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTI3Lw==&quot; rel=&quot;&quot;&gt;WordPress MU 2.7&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTI2MS8=&quot; rel=&quot;&quot;&gt;WordPress MU 2.6.1&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?url=aHR0cDovL29jYW9pbWguaWUvd29yZHByZXNzLW11LTItOC0xLw==&quot; rel=&quot;&quot;&gt;WordPress MU 2.8.1&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt; &lt;img src=&quot;http://ocaoimh.ie/wp-content/plugins/feed-statistics.php?view=1&amp;post_id=89495504&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</description>
	<pubDate>Wed, 18 Nov 2009 15:20:32 +0000</pubDate>
	<dc:creator>Donncha</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: How Do You Do That?</title>
	<guid>http://weblogtoolscollection.com/?p=7131</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/18/how-do-you-do-that/</link>
	<description>&lt;p&gt;Ever wanted to do something in WordPress but just wasn&amp;#8217;t sure how? In my experience this happens quite often, mostly with people new to WordPress. But, even the experts run into trouble sometimes. Today I thought I&amp;#8217;d start a series of posts which will aim to explain how to do certain things in WordPress. Hopefully this will cover anything from quick tips and simple little functions, all the way up to more complex custom code and the like. So, stick around and you just might learn something. &lt;img src=&quot;http://weblogtoolscollection.com/wp-includes/images/smilies/icon_wink.gif&quot; alt=&quot;;)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;p&gt;I think I&amp;#8217;ll kick off the series with a couple simple ones&amp;#8230;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;h5&gt;Why isn&amp;#8217;t this plugin working with my theme?&lt;/h5&gt;
&lt;p&gt;This is probably one of the most common issues I read about regarding WordPress. Sometimes even more experienced WP&lt;em&gt;ers&lt;/em&gt; can get this one wrong. Now, I&amp;#8217;m not saying this is the solution to &lt;strong&gt;all&lt;/strong&gt; problems between plugins and themes. Its just that this little bugger is often the culprit.&lt;/p&gt;
&lt;p&gt;Try ensuring that your theme has &lt;code&gt;&amp;lt;?php &lt;a href=&quot;http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks&quot;&gt;wp_head&lt;/a&gt;() ?&amp;gt;&lt;/code&gt; somewhere inside the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; section of the document. Also, for that matter, make sure it has &lt;code&gt;&amp;lt;?php &lt;a href=&quot;http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks&quot;&gt;wp_footer&lt;/a&gt;() ?&amp;gt;&lt;/code&gt; somewhere in the foot of the document; Before the &lt;code&gt;&amp;lt;/body&amp;gt;&lt;/code&gt; tag.&lt;/p&gt;
&lt;p&gt;If your theme lacks these function calls many plugins that manipulate your theme will not be able to hook into the required areas. This can cause many headaches.&lt;/p&gt;
&lt;p&gt;If you have no idea what I&amp;#8217;m talking about, you may be better off having a coder buddy take a look at the theme for you. Or you can also contact the theme author, if the theme you use was created by someone else.&lt;/li&gt;
&lt;li&gt;
&lt;h5&gt;How come my URLs are yucky?&lt;/h5&gt;
&lt;p&gt;Or, &amp;#8220;&lt;em&gt;How come my URLs look like &lt;code&gt;www.mysite.com?p=123&lt;/code&gt; instead of &lt;code&gt;www&amp;#8203;.mysite.&amp;#8203;com&amp;#8203;/my-&amp;#8203;sample-&amp;#8203;post/&lt;/code&gt;?&lt;/em&gt;&amp;#8221;&lt;/p&gt;
&lt;p&gt;This one is right up there with the previous question. I see it all the time. However, more and more web hosts these days support the &amp;#8220;&lt;em&gt;nice&lt;/em&gt;&amp;#8221; URLs by default without requiring any extra effort. So, its just a matter of going into the WordPress control panel, changing your Permalink Settings and then saving. Unfortunately, we&amp;#8217;re not all this lucky&amp;#8230;&lt;/p&gt;
&lt;p&gt;The first thing to try would be to contact your web host support and make sure they have whats known as &lt;code&gt;mod_rewrite&lt;/code&gt; &lt;em&gt;(or similar functionality)&lt;/em&gt; enabled on your account. If such functionality is not available on your web host, and you really need this feature, you may need to upgrade to a new host that does support it.&lt;/p&gt;
&lt;p&gt;If your host does support it and has it enabled on your account, but it still doesn&amp;#8217;t work, you can check that WordPress is able to write to the &lt;code&gt;.htaccess&lt;/code&gt; file &lt;em&gt;(which is where all the &amp;#8220;nice&amp;#8221; URL magic happens)&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;For WordPress, on Unix-based systems, the htaccess file should be &amp;#8220;&lt;em&gt;&lt;code&gt;&lt;a href=&quot;http://codex.wordpress.org/Changing_File_Permissions#About_Chmod&quot;&gt;CHMOD&lt;/a&gt;&lt;/code&gt;ed&lt;/em&gt;&amp;#8221; to at least &lt;code&gt;666&lt;/code&gt;. On Windows-based systems the procedure is a bit different. It can be different depending on your particular setup so I won&amp;#8217;t go into that.&lt;/p&gt;
&lt;p&gt;Basically, as was the case with the previous question, you may need to seek help to figure this out. If you don&amp;#8217;t have a code buddy, get one! They are really great to have around. Just make sure you buy them a nice gift for their trouble. &lt;img src=&quot;http://weblogtoolscollection.com/wp-includes/images/smilies/icon_biggrin.gif&quot; alt=&quot;:D&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/li&gt;
&lt;li&gt;
&lt;h5&gt;Can I have a link to login to WordPress somewhere in my theme?&lt;/h5&gt;
&lt;p&gt;Sure! It&amp;#8217;s actually easier than you might think&amp;#8230;&lt;/p&gt;
&lt;p&gt;Some themes have a link for that already. But, there are also some that seem to lack this obvious and simple feature. You can easily add this to any theme yourself. No need for any programming knowledge. Simply add &lt;code&gt;&amp;lt;?php &lt;a href=&quot;http://codex.wordpress.org/Function_Reference/wp_loginout&quot;&gt;wp_loginout&lt;/a&gt;() ?&amp;gt;&lt;/code&gt; somewhere in your theme and you&amp;#8217;re done. Easy right?&lt;/p&gt;
&lt;p&gt;Another nice function along the same lines is &lt;code&gt;&amp;lt;?php &lt;a href=&quot;http://codex.wordpress.org/Function_Reference/wp_register&quot;&gt;wp_register&lt;/a&gt;() ?&amp;gt;&lt;/code&gt;, which will show a link to your registration page &lt;em&gt;(if your settings allow users to register)&lt;/em&gt;, or a link to the WordPress control panel if you are already logged in.&lt;/p&gt;
&lt;p&gt;Do note though that by default the link will be output wrapped inside &lt;code&gt;&amp;lt;li&amp;gt;&lt;/code&gt; tags. This is so you can include the link in a list of other links, like a &amp;#8220;&lt;em&gt;meta&lt;/em&gt;&amp;#8221; section. If, however, that is not how you want it to be output you can use the function like &lt;code&gt;&amp;lt;?php wp_register('', '') ?&amp;gt;&lt;/code&gt;. That will simply output the link and nothing else.&lt;/p&gt;
&lt;p&gt;An example of how to customize that is something like &lt;code&gt;&amp;lt;?php wp_register('&amp;lt;p&amp;gt;', '&amp;lt;/p&amp;gt;') ?&amp;gt;&lt;/code&gt;, which will output the link wrapped in its own paragraph. Just change the opening and closing tags in the function to make it output how you want. Dead simple!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That&amp;#8217;s all for now&amp;#8230; I hope it helps!&lt;/p&gt;
&lt;p&gt;Do you have a question about WordPress? Want to see it answered here on Weblog Tools Collection? If so, please &lt;a href=&quot;http://weblogtoolscollection.com/archives/2007/02/06/contact-me/&quot;&gt;send us an E-Mail&lt;/a&gt; or drop a comment here. Your question just might be featured in the series!&lt;/p&gt;</description>
	<pubDate>Wed, 18 Nov 2009 12:55:08 +0000</pubDate>
	<dc:creator>James Dimick</dc:creator>
</item>
<item>
	<title>Dev Blog: WordPress Wins CMS Award</title>
	<guid>http://wordpress.org/development/?p=978</guid>
	<link>http://wordpress.org/development/2009/11/wordpress-wins-cms-award/</link>
	<description>&lt;p&gt;I was very excited last week to learn that WordPress has been awarded the Overall Best Open Source CMS Award in the &lt;a href=&quot;http://www.packtpub.com/award&quot;&gt;2009 Open Source CMS Awards&lt;/a&gt;. This is a landmark for us, as it is the first time we&amp;#8217;ve won this award, and it marks a shift in the public perception of WordPress, from blog software to full-featured CMS. No small contest, the Open Source CMS Awards received over 12,000 nominations and more than 23,000 votes across five categories. &lt;/p&gt;
&lt;p&gt;As Hiro Nakamura said when he first bent time and space to land in Times Square: &amp;#8220;Yatta!&amp;#8221;&lt;/p&gt;
&lt;p&gt;In addition to winning in the Overall Best Open Source CMS category, WordPress was named first runner-up in the Best Open Source PHP CMS category. This is significant because we weren&amp;#8217;t even in the top 5 last year, and now we&amp;#8217;re #2, ahead of Joomla! As is stated on the Award site, &amp;#8220;WordPress made its way into the top five for the first time. The fact that it was outranked by Drupal by a very slight margin indicates how popular it has become with users as well as developers over the past year.&amp;#8221;&lt;/p&gt;
&lt;p&gt;Every day thousands of new people are embracing WordPress to power not just their blogs but entire sites and communities without compromising on usability or scalability (as would be the case with a legacy CMS). Every member of the WordPress community, from core developer to beginning user, should be proud to be part of this momentum: congratulations to us all!&lt;/p&gt;</description>
	<pubDate>Wed, 18 Nov 2009 03:48:04 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Plugin Releases for 11/17</title>
	<guid>http://weblogtoolscollection.com/?p=7127</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/17/wordpress-plugin-releases-for-1117/</link>
	<description>&lt;h3&gt;New Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.slimmity.com/2009/11/wp-plugin-url-redirector/&quot;&gt;URL Redirector&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;URL Redirector allows you to create shorter URL&amp;#8217;s and keeps track of how many times a link has been clicked. It&amp;#8217;s useful for managing downloads, keeping track of outbound links and for masking URL&amp;#8217;s.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/query-multiple-taxonomies&quot;&gt;Query Multiple Taxonomies&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A WordPress plugin that allows you to filter posts through multiple custom taxonomies&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.checkfront.com/extend/wordpress&quot;&gt;Checkfront Online Booking Plugin&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Checkfront is an online availability, reservation and booking engine. This plugin connects your Wordpress site to your Checkfront, and provides a powerful embedded booking interface within your site.&lt;/p&gt;
&lt;p&gt;This plugin requires a Checkfront account (available for free).&lt;/p&gt;
&lt;h3&gt;Updated Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://crunchmeme.com/wp-archive-sitemap-generator-plugin/&quot;&gt;WP Archive-Sitemap Generator&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;WP Archive-Sitemap Generator plugin generates simple Archives/Sitemap based on your sites/blogs posts and pages. This is not another XML sitemap plugin, but rather a nice sitemap generator.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://crunchmeme.com/arpitshah-twitter-goodies-plugins/&quot;&gt;Twitter Goodies&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Twitter Goodies plugin will show your tweets under Sidebar Area (Widget), Post and/or Pages. REFRESH AUTOMATICALLY and you have 5 different Color Option.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://markbeljaars.com/plugins/tocc-plugin/&quot;&gt;Table of Contents Creator&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Table of Contents Creator automatically generates a complete table of contents for your site, including pages, posts and forum comments. The table of contents is generated each time the page is displayed therefore ensuring it is always up to date.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/merge-tags&quot;&gt;Merge Tags&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A simple WordPress plugin that allows you to combine tags easily.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://soledadpenades.com/projects/wordpress/delicatessen/&quot;&gt;Delicatessen&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A plug-in for finding out who has bookmarked your posts and pages in delicious.com, as well as the tags they used and the notes they wrote about your pages (if there are notes!).&lt;/p&gt;</description>
	<pubDate>Tue, 17 Nov 2009 20:41:09 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: Download WordPress 2.9 Beta 1</title>
	<guid>http://weblogtoolscollection.com/archives/2009/11/17/download-wordpress-2-9-beta-1/</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/17/download-wordpress-2-9-beta-1/</link>
	<description>&lt;p&gt;WordPress 2.9 Beta 1 is now available for downloads. If you are looking forward to test out the new features in WordPress 2.9, head to the &lt;a href=&quot;http://wpdevel.wordpress.com/2009/11/16/wordpress-2-9-beta-1-is-available-get-i/&quot; target=&quot;_blank&quot;&gt;development update blog&lt;/a&gt; to find links to download and try out WordPress 2.9 beta 1.&lt;/p&gt;
&lt;p&gt;WordPress 2.9 is still in beta, you can use it to test it and report bugs back to WordPress development team. However, do not use it on a production blog yet.&lt;/p&gt;</description>
	<pubDate>Tue, 17 Nov 2009 20:00:18 +0000</pubDate>
	<dc:creator>Keith Dsouza</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: How to Create an Author Info Section in WordPress</title>
	<guid>http://weblogtoolscollection.com/?p=7119</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/17/how-to-create-an-author-info-section-in-wordpress/</link>
	<description>&lt;div id=&quot;attachment_7121&quot; class=&quot;wp-caption alignleft&quot;&gt;&lt;a href=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/1.jpg&quot; rel=&quot;thumbnail&quot;&gt;&lt;img class=&quot;size-thumbnail wp-image-7121&quot; title=&quot;Author Info&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/1-150x150.jpg&quot; alt=&quot;Author Info&quot; width=&quot;105&quot; height=&quot;105&quot; /&gt;&lt;/a&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;Author Info Section &lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://line25.com/tutorials/how-to-create-an-author-info-section-in-wordpress&quot;&gt;How to Create an Author Info Section in WordPress&lt;/a&gt;: Chris has put together a nice tutorial on how to create an author info section on your WordPress blog. I am sure you have seen these in the past on multi-author blogs. They normally tend to be displayed at thebottom of single posts and Chris provides details, code and styling for various features that can be added to this section. I also think this would make for a very nice and simple plugin. So if you would like to set one of these up for your own blog and increase visitor stickiness, head over to the tutorial.&lt;/p&gt;</description>
	<pubDate>Tue, 17 Nov 2009 16:43:27 +0000</pubDate>
	<dc:creator>Mark Ghosh</dc:creator>
</item>
<item>
	<title>Dev Blog: Core Contributors at WordCamp NYC</title>
	<guid>http://wordpress.org/development/?p=971</guid>
	<link>http://wordpress.org/development/2009/11/core-wordcamp-nyc/</link>
	<description>&lt;p&gt;WordCamp NYC was last weekend, and it was crazy awesome to have so many WordPress users and developers together in one place (final numbers to come, but looks like over 700). One of my favorite moments was right at the end, when someone suggested getting a picture of the core contributors (I&amp;#8217;d asked them all to stand so people could applaud them when we were doing the closing remarks). Some of them were camera shy and kept out of the happysnap, but here&amp;#8217;s a handful of the people who make WordPress what it is.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://jane.wordpress.com/files/2009/11/core-contributors.jpg&quot;&gt;&lt;img title=&quot;Core Contributors at WordCamp NYC&quot; src=&quot;http://jane.wordpress.com/files/2009/11/core-contributors.jpg&quot; alt=&quot;Core Contributors at WordCamp NYC&quot; width=&quot;649&quot; height=&quot;295&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
From left: &lt;a href=&quot;http://sivel.net/&quot;&gt;Matt Martz&lt;/a&gt; (sivel), &lt;a href=&quot;http://simianuprising.com/ &quot;&gt;Jeremy Clarke&lt;/a&gt;, &lt;a href=&quot;http://bugssite.org/&quot;&gt;Shane Froebel&lt;/a&gt; (^BuGs^), &lt;a href=&quot;http://jane.wordpress.com&quot;&gt;Jane Wells&lt;/a&gt;, &lt;a href=&quot;http://ma.tt&quot;&gt;Matt Mullenweg&lt;/a&gt;, &lt;a href=&quot;http://markjaquith.com/&quot;&gt;Mark Jaquith&lt;/a&gt;, &lt;a href=&quot;http://dentedreality.com.au&quot;&gt;Beau Lebens&lt;/a&gt;, &lt;a href=&quot;http://apeatling.wordpress.com/&quot;&gt;Andy Peatling&lt;/a&gt;, &lt;a href=&quot;http://johnjamesjacoby.com/&quot;&gt;John James Jacoby&lt;/a&gt; (jjj).&lt;br /&gt;
&lt;em&gt;Photo by &lt;a href=&quot;http://www.nothingcliche.com/&quot;&gt;Chris Cochran&lt;/a&gt;&lt;/em&gt;.&lt;/p&gt;</description>
	<pubDate>Tue, 17 Nov 2009 13:14:57 +0000</pubDate>
	<dc:creator>Jane Wells</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress 2.9’s post image feature</title>
	<guid>http://weblogtoolscollection.com/?p=7113</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/16/wordpress-2-9%e2%80%99s-post-image-feature/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://justintadlock.com/archives/2009/11/16/everything-you-need-to-know-about-wordpress-2-9s-post-image-feature&quot;&gt;Everything you need to know about WordPress 2.9’s post image feature&lt;/a&gt;:  Justin gives everyone an in depth look into the post thumbnail or image thumbnail features built into WordPress 2.9 &lt;a href=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/post_image.PNG&quot; rel=&quot;thumbnail&quot;&gt;&lt;img class=&quot;size-thumbnail wp-image-7115 alignleft&quot; title=&quot;post_image&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/post_image-150x150.PNG&quot; alt=&quot;post_image&quot; width=&quot;84&quot; height=&quot;84&quot; /&gt;&lt;/a&gt;Jeff already makes liberal use of post images in all his posts. Also included, for the benefit of theme authors, are detailed instructions on how to add post image features to your WordPress theme and create various feature sets around this core concept.&lt;/p&gt;</description>
	<pubDate>Mon, 16 Nov 2009 20:29:05 +0000</pubDate>
	<dc:creator>Mark Ghosh</dc:creator>
</item>
<item>
	<title>WordPress.tv: This (Past) Week on WordPress.tv: Nov 8—Nov 14</title>
	<guid>http://blog.wordpress.tv/?p=98</guid>
	<link>http://blog.wordpress.tv/2009/11/16/this-past-week-on-wordpress-tv-nov-8%e2%80%94nov-14/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;I&amp;#8217;m a little late to the party this weekend with last week&amp;#8217;s recap, but we have a special request for all you viewers, so let&amp;#8217;s get down to it.&lt;/p&gt;
&lt;p&gt;This week we published one WordCamp video and one tutorial—a little light considering recent weeks, but this week also saw a great livestream from &lt;a href=&quot;http://phxwordcamp.com/&quot;&gt;WordCamp Phoenix&lt;/a&gt;. I hope you were able to watch it—there were some great sessions included and we&amp;#8217;re hoping to have them available on WordPress.tv soon.&lt;/p&gt;
&lt;p&gt;The WordCamp video from was WordCamp Netherlands: &lt;a href=&quot;http://www.successful-blog.com/&quot;&gt;Liz Strauss&lt;/a&gt;&amp;#8217;s presentation entitled &amp;#8220;&lt;a href=&quot;http://wordpress.tv/2009/10/31/liz-strauss-identity-netherlands09/&quot;&gt;Meeting Your Audience Where They Are&lt;/a&gt;.&amp;#8221; If you&amp;#8217;re interested in community-building or in building a personal brand, it&amp;#8217;s definitely worth a look.&lt;/p&gt;
&lt;p&gt;On the tutorial side, we published a run-through by &lt;a href=&quot;http://idratherbewriting.com/&quot;&gt;Tom Johnson&lt;/a&gt; on &lt;a href=&quot;http://wordpress.tv/2009/11/12/installing-wordpress-locally-using-wampserver/&quot;&gt;running a local copy of WordPress using WampServer&lt;/a&gt;. Local copies can have tremendous development potential; if you regularly develop themes or plugins, or just like to tinker with WordPress, local installation can be a great help.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;So here&amp;#8217;s the special request:&lt;/strong&gt; I&amp;#8217;d like you to take a moment and think up one thing—&lt;em&gt;just one thing&lt;/em&gt;—you&amp;#8217;d like to see covered in a video tutorial here at WordPress.tv. It can be anything WordPress-related, but here&amp;#8217;s an exercise to focus your thinking.&lt;/p&gt;
&lt;p&gt;Think of questions like: What do I wish someone had told me when I started using WordPress? What kinds of things seem hard at first but really aren&amp;#8217;t once you get down to it? What feature of WordPress do I wish more people knew about and used? What&amp;#8217;s the feature, plugin, or whatever that gives me an awesome productivity boost or makes me a better WordPress user?&lt;/p&gt;
&lt;p&gt;Come up with one thing you&amp;#8217;d like to see covered in a future video tutorial, and then &lt;a href=&quot;http://wordpress.tv/contact&quot;&gt;send us an email using our handy contact form&lt;/a&gt;. We&amp;#8217;ll take a look at those suggestions and report on them in a future week&amp;#8217;s recap so you know what your fellow community members are asking for.&lt;/p&gt;
&lt;p&gt;Until then, stay tuned for more WordPress.tv!&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/98/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/98/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptvblog.wordpress.com/98/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptvblog.wordpress.com/98/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptvblog.wordpress.com/98/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptvblog.wordpress.com/98/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptvblog.wordpress.com/98/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptvblog.wordpress.com/98/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptvblog.wordpress.com/98/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptvblog.wordpress.com/98/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=blog.wordpress.tv&amp;blog=5310177&amp;post=98&amp;subd=wptvblog&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Mon, 16 Nov 2009 09:15:19 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Dougal Campbell: Server Reconfig</title>
	<guid>http://dougal.gunters.org/?p=1865</guid>
	<link>http://dougal.gunters.org/blog/2009/11/13/server-reconfig?utm_source=rss&amp;amp;utm_medium=rss&amp;amp;utm_campaign=rss</link>
	<description>&lt;div&gt;&lt;img width=&quot;150&quot; height=&quot;150&quot; src=&quot;http://dougal.gunters.org/wordpress/wp-content/uploads/2008/11/wplogo-notext-rgb-150x150.png&quot; class=&quot;attachment-thumbnail wp-post-image&quot; alt=&quot;&quot; title=&quot;WordPress&quot; /&gt;&lt;/div&gt;&lt;p&gt;This blog will be moving to a new server very soon. If all goes well, you shouldn&amp;#8217;t notice a thing. But just in case, I figured I&amp;#8217;d give a warning, so that if you try to visit and you get an error, or the site won&amp;#8217;t come up, you&amp;#8217;ll know to just come back again later instead of thinking that my site was an early victim of the &lt;a href=&quot;http://en.wikipedia.org/wiki/2012_phenomenon&quot;&gt;2012 apocalypse&lt;/a&gt; or something.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m doing more than just moving onto a new server though. I&amp;#8217;m moving to a new hosting provider, and I&amp;#8217;m reconfiguring many aspects of how my services are set up. If you&amp;#8217;re interested in the technical nitty-gritty, read on.&lt;/p&gt;
&lt;p&gt;&lt;span id=&quot;more-1865&quot;&gt;&lt;/span&gt;&lt;br /&gt;
Some of you might recall that a little over a year ago, I moved from my original hosting onto Slicehost. I am now moving again, to a service called prgmr.com. I&amp;#8217;ve had no problems with Slicehost, but the pricing for prgmr.com is lower, which made it possible for me to expand from 2 servers to 4 servers for less money.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.slicehost.com/&quot;&gt;Slicehost VPS hosting&lt;/a&gt; is pretty no-frills. You get a server with an initial OS installed on it, and a web-based management tool with some &lt;acronym title=&quot;Domain Name System&quot;&gt;&lt;span class=&quot;caps&quot;&gt;DNS&lt;/span&gt;&lt;/acronym&gt; tools and a Java applet console. With &lt;a href=&quot;http://prgmr.com/xen/&quot;&gt;prgmr.com&lt;/a&gt;, it&amp;#8217;s even more no-frills, because the console isn&amp;#8217;t web-based. It&amp;#8217;s SSH all the way, baby. It&amp;#8217;s not for everybody, but it suits me fine. And even though I have more servers, it reduces my monthly hosting costs by about 40%. That said, I&amp;#8217;m also reducing my virtual &lt;acronym title=&quot;Central Processing Unit&quot;&gt;&lt;span class=&quot;caps&quot;&gt;CPU&lt;/span&gt;&lt;/acronym&gt; power and disk space a little bit, and Slicehost has multiple facility locations, which might be factors for someone else shopping for hosting. For me, the ability to afford more servers was pretty high up.&lt;/p&gt;
&lt;p&gt;So, that said, let&amp;#8217;s look at what I&amp;#8217;m changing in my setup, and why I felt it was important to move up to 4 servers.&lt;/p&gt;
&lt;p&gt;All along, even before Slicehost, I have had trouble dealing with traffic spikes on my web server. I&amp;#8217;ve used &lt;a href=&quot;http://wordpress.org/extend/plugins/wp-super-cache/&quot;&gt;WP Super Cache&lt;/a&gt; and &lt;a href=&quot;http://wordpress.org/extend/plugins/w3-total-cache/&quot;&gt;W3 Total Cache&lt;/a&gt;. I&amp;#8217;ve used &lt;a href=&quot;http://xcache.lighttpd.net/&quot;&gt;XCache&lt;/a&gt; for &lt;acronym title=&quot;Php Hypertext Processor&quot;&gt;&lt;span class=&quot;caps&quot;&gt;PHP&lt;/span&gt;&lt;/acronym&gt; code caching, and for my &lt;a href=&quot;http://dougal.gunters.org/blog/2008/08/29/xcache-object-cache-plugin-for-wordpress-25&quot;&gt;WordPress object cache&lt;/a&gt;. I&amp;#8217;ve configured Apache to set caching headers for static files using &lt;a href=&quot;http://httpd.apache.org/docs/2.0/mod/mod_expires.html&quot;&gt;mod_expires&lt;/a&gt; to reduce requests. But I still get load and memory spikes that grind my server into dust. That shouldn&amp;#8217;t happen with only 200 visitors per hour (granted, a page view can generate about 50 HTTP requests). Obviously, I&amp;#8217;ve configured my server poorly.&lt;/p&gt;
&lt;p&gt;Like many large &lt;a href=&quot;http://php.net/&quot;&gt;&lt;acronym title=&quot;Php Hypertext Processor&quot;&gt;&lt;span class=&quot;caps&quot;&gt;PHP&lt;/span&gt;&lt;/acronym&gt;&lt;/a&gt; applications, &lt;a href=&quot;http://wordpress.org/&quot;&gt;WordPress&lt;/a&gt; can be a bit hungry for memory. So when it fights against &lt;a href=&quot;http://mysql.com/&quot;&gt;MySQL&lt;/a&gt; and an in-memory object cache for resources, things can start to get dicey. And of course, I&amp;#8217;ve got a few other things on the server. When I get hit by a traffic spike (popular article, spammer runs, errant search spiders, etc), memory goes away fast. The machine starts to swap, things get slow, load average spikes as processes begin to wait for resources, and it all snowballs. I&amp;#8217;ve got some homemade scripts that keep an eye on things and attempt to restart various services in order to force things back into line, but it&amp;#8217;s a pretty heavy-handed way to deal with the problem.&lt;/p&gt;
&lt;p&gt;In my new setup, here&amp;#8217;s what I&amp;#8217;m doing to fix it:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I&amp;#8217;ll be running Apache, MySQL, and Memcached all on separate servers, instead of together on one host.&lt;/li&gt;
&lt;li&gt;I&amp;#8217;m switching from the Apache pre-forking model to the threaded worker model.&lt;/li&gt;
&lt;li&gt;I&amp;#8217;m switching from mod_php to FastCGI (&lt;a href=&quot;http://httpd.apache.org/mod_fcgid/&quot;&gt;mod_fcgid&lt;/a&gt;) and php-cgi.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There will probably be other tweaks, as well, but those are the biggies. I&amp;#8217;m expecting this new setup to handle waaaay more requests than the old one. Oh, and I&amp;#8217;m definitely open to any pointers from performance tuning gurus. Please share links and tips!&lt;/p&gt;
&lt;p&gt;When the switch-over happens, there might be a period of transition while the &lt;acronym title=&quot;Domain Name System&quot;&gt;&lt;span class=&quot;caps&quot;&gt;DNS&lt;/span&gt;&lt;/acronym&gt; changes propagate. I don&amp;#8217;t plan to post again until I&amp;#8217;ve moved this blog fully to the new host. So you&amp;#8217;ll know it&amp;#8217;s happened when a new article appears here.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://dougal.gunters.org/blog/2008/03/13/roadwork-next-15-miles&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: Roadwork Next 15 Miles&quot;&gt;Roadwork Next 15 Miles&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://dougal.gunters.org/blog/2005/04/22/server-problems&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: Server problems&quot;&gt;Server problems&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://dougal.gunters.org/blog/2008/04/21/now-on-slicehost&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link: Now on Slicehost: Me!&quot;&gt;Now on Slicehost: Me!&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/p&gt;</description>
	<pubDate>Fri, 13 Nov 2009 21:48:13 +0000</pubDate>
	<dc:creator>Dougal</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Theme Releases for 11/14</title>
	<guid>http://weblogtoolscollection.com/?p=7111</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/13/wordpress-theme-releases-for-1114-2/</link>
	<description>&lt;h4&gt;&lt;a href=&quot;http://human3rror.com/base-portfolio-wordpress-theme-released/&quot;&gt;Base&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;Base&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Base.jpg&quot; alt=&quot;Base&quot; width=&quot;200&quot; height=&quot;121&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Simple two column theme with shades of blue that you can use to customize your site&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.martialartsdaily.com/wordpress-theme/&quot;&gt;Martial Arts Lover&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;martial&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/martial.png&quot; alt=&quot;martial&quot; width=&quot;200&quot; height=&quot;137&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A nice, clean, dark and simple wordpress theme with one right sidebar.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://webhostinghelpguy.inmotionhosting.com/wordpress/5-girl-inspired-free-wordpress-themes/&quot;&gt;5 Girl-Inspired Free WordPress Themes&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;Doodles&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Doodles.png&quot; alt=&quot;Doodles&quot; width=&quot;200&quot; height=&quot;114&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Set of five two column, widget ready themes&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.wpcontempo.com/wp-commerce-flex-new-affiliate-shopping-free-wordpress-theme/&quot;&gt;WP Commerce Flex&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://demo.wpcontempo.com/?wptheme=wp_commerce_flex&quot;&gt;&lt;img title=&quot;wp-commerce-flex&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/wpcommerceflex.gif&quot; alt=&quot;wp-commerce-flex&quot; width=&quot;200&quot; height=&quot;134&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It features a variety of options, solid SEO-friendly CSS layout that is easily customizable, and built for seamless integration with &lt;a href=&quot;http://www.phpbay.com/affiliates/jrox.php?id=1624&quot;&gt;PHPbay&lt;/a&gt; and PHPZon.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://fyrewurks.com/2009/11/polka-dots-wordpress-theme/&quot;&gt;Polka Dots&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://fyrewurks.com/wordpress-theme-demos/?preview_theme=Polka%20Dots&quot;&gt;&lt;img title=&quot;Polka Dots&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/PolkaDots.jpg&quot; alt=&quot;Polka Dots&quot; width=&quot;200&quot; height=&quot;146&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It’s widget-ready, adsense-ready, and 3-columns.  Colors: brown, white, aqua, green, chartreuse, yellow, orange, red.&lt;/p&gt;</description>
	<pubDate>Fri, 13 Nov 2009 20:44:40 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Peter Westwood: Beta Testing in your language</title>
	<guid>http://westi.wordpress.com/?p=126</guid>
	<link>http://westi.wordpress.com/2009/11/13/beta-testing-in-your-language/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;Thanks to &lt;a href=&quot;http://blog.detlog.org/&quot;&gt;Naoko McCracken&lt;/a&gt; the &lt;a href=&quot;http://wordpress.org/extend/plugins/wordpress-beta-tester/&quot;&gt;WordPress Beta Tester&lt;/a&gt; plugin is now fully translatable and also has a Japanese translation out of the box.&lt;/p&gt;
&lt;div id=&quot;attachment_127&quot; class=&quot;wp-caption aligncenter&quot;&gt;&lt;img class=&quot;size-full wp-image-127&quot; title=&quot;WordPress Beta Tester with Japanese translation enabled&quot; src=&quot;http://westi.files.wordpress.com/2009/11/wordpress-beta-tester-ja.png?w=700&amp;#038;h=435&quot; alt=&quot;WordPress Beta Tester with Japanese translation enabled&quot; width=&quot;700&quot; height=&quot;435&quot; /&gt;&lt;p class=&quot;wp-caption-text&quot;&gt;WordPress Beta Tester with Japanese translation enabled&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;Hopefully this will make it easy for Japanese WordPress users to get involved in the Beta Testing of WordPress 2.9 in the coming weeks. If you would like to submit a translation for your language then you can download the pot file from the WordPress plugins Subversion repository here: &lt;a href=&quot;http://plugins.svn.wordpress.org/wordpress-beta-tester/trunk/languages/wp-beta-tester.pot&quot;&gt;wp-beta-tester.pot&lt;/a&gt;. If you send me the po and mo files I will add them to the repository and release an updated version of the plugin.&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/westi.wordpress.com/126/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/westi.wordpress.com/126/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/westi.wordpress.com/126/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/westi.wordpress.com/126/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/westi.wordpress.com/126/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/westi.wordpress.com/126/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/westi.wordpress.com/126/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/westi.wordpress.com/126/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/westi.wordpress.com/126/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/westi.wordpress.com/126/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=westi.wordpress.com&amp;blog=15396&amp;post=126&amp;subd=westi&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 13 Nov 2009 18:13:59 +0000</pubDate>
	<dc:creator>Peter Westwood</dc:creator>
</item>
<item>
	<title>Alex King: Appearing on WordPress Weekly (next week)</title>
	<guid>http://alexking.org/?p=3766</guid>
	<link>http://alexking.org/blog/2009/11/12/appearing-on-wordpress-weekly-next-week</link>
	<description>&lt;p&gt;I&amp;#8217;m going to be on the &lt;a href=&quot;http://www.wptavern.com/wordpress-weekly&quot; rel=&quot;external&quot;&gt;WordPress Weekly&lt;/a&gt; podcast next Tuesday (dialing in from the Bay Area, hopefully will find a spot for the interview that will work OK). There is a thread at WP Tavern for people to &lt;a href=&quot;http://www.wptavern.com/forum/general-wordpress/993-help-me-interview-alex-king.html&quot; rel=&quot;external&quot;&gt;post questions they&amp;#8217;d like to hear me discuss&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I think there are a lot of very interesting things to cover about the new &lt;a href=&quot;http://alexking.org/blog/2009/10/28/wordpress-helpcenter-affiliate-program&quot;&gt;affiliate program from the WordPress HelpCenter&lt;/a&gt;, monetization and supporting the WordPress development community. So far it looks like some folks would like to hear about &lt;a href=&quot;http://carringtontheme.com&quot;&gt;Carrington&lt;/a&gt; as well &amp;#8211; I&amp;#8217;ll be happy to try cover that as well.&lt;/p&gt;
&lt;p&gt;Feel free to post questions in the comments here if you like and I&amp;#8217;ll pass them along.&lt;/p&gt;
&lt;img src=&quot;http://alexking.org/wp/?ak_action=api_record_view&amp;id=3766&amp;type=feed&quot; alt=&quot;&quot; /&gt;</description>
	<pubDate>Fri, 13 Nov 2009 05:22:48 +0000</pubDate>
	<dc:creator>Alex</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: I Wish I Was At WordCamp</title>
	<guid>http://weblogtoolscollection.com/?p=7103</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/12/i-wish-i-was-at-wordcamp/</link>
	<description>&lt;p&gt;If you&amp;#8217;re looking for a cool way to keep tabs on what&amp;#8217;s shaking at WordCamp New York this weekend, check out this site created by &lt;a href=&quot;http://twitter.com/dimensionmedia&quot;&gt;DimensionMedia&lt;/a&gt; called &lt;a href=&quot;http://iwishiwasatwordcamp.com/nyc-2009/&quot;&gt;IWishIWasAtWordCamp.com&lt;/a&gt;. The site contains feeds from a few notable Twitter accounts that will be tweeting during the event as well as the important hashtag Twitter widget which goes above and beyond single accounts. Near the center of the site is a collection of photos published to Flickr but some of the photos are from the wrong WordCamp. This should be fixed by only aggregating photos that are using a unique tag such as the event Twitter hashtag. Near the bottom are even more Twitter accounts. The only bad thing about this page is that asides from the hashtag widget at the top, the rest of the page requires refreshing in order to see new information. Hopefully, Dimension has a decent server to put up with the load but I would have used the cool new Twitter widgets to see updates as they happen. &lt;/p&gt;
&lt;p&gt;If you have any feedback, let him know in the comments!&lt;/p&gt;</description>
	<pubDate>Thu, 12 Nov 2009 20:58:05 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>Dev Blog: WordPress 2.8.6 Security Release</title>
	<guid>http://wordpress.org/development/?p=966</guid>
	<link>http://wordpress.org/development/2009/11/wordpress-2-8-6-security-release/</link>
	<description>&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/download/&quot;&gt;Get WordPress 2.8.6&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Thu, 12 Nov 2009 19:17:20 +0000</pubDate>
	<dc:creator>Ryan Boren</dc:creator>
</item>
<item>
	<title>WordPress.tv: Installing WordPress Locally Using WampServer</title>
	<guid>http://wordpress.tv/?p=2999</guid>
	<link>http://wordpress.tv/2009/11/12/installing-wordpress-locally-using-wampserver/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;ins&gt;
&lt;div class=&quot;video-player&quot; id=&quot;x-video-1&quot;&gt;
&lt;/div&gt;&lt;/ins&gt;
&lt;br /&gt;&lt;a href=&quot;http://wordpress.tv/2009/11/12/installing-wordpress-locally-using-wampserver/&quot;&gt;&lt;img width=&quot;160&quot; height=&quot;120&quot; src=&quot;http://cdn.videos.wordpress.com/ejd3ak8p/installwordpresslocally_html_std.original.jpg&quot; /&gt; &lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/2999/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/2999/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/2999/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/2999/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/2999/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/2999/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/2999/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/2999/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/2999/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/2999/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=wordpress.tv&amp;blog=5089392&amp;post=2999&amp;subd=wptv&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Thu, 12 Nov 2009 05:40:00 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordCamp Phoenix Live Video Stream</title>
	<guid>http://weblogtoolscollection.com/?p=7097</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/11/wordcamp-phoenix-live-video-stream/</link>
	<description>&lt;p&gt;This weekend will be packed with WordCamp goodness starting with &lt;a href=&quot;http://phxwordcamp.com&quot;&gt;WordCamp Phoenix&lt;/a&gt; on Friday the 13th and &lt;a href=&quot;http://2009.newyork.wordcamp.org/&quot;&gt;WordCamp New York&lt;/a&gt; on Saturday the 14th as well as Sunday the 15th, both of which still have tickets available. However, if you can not make it to WordCamp Phoenix, the great news is that it will be live video streamed in its entirety thanks to their sponsorship with GoDaddy. Simply point your browsers to their &lt;a href=&quot;http://www.godaddy.com/hosting/word-camp.aspx&quot;&gt;Live Video page&lt;/a&gt; and the event will be streamed starting at 9AM Mountain time. Also check out the &lt;a href=&quot;http://phxwordcamp.com/schedule/&quot;&gt;schedule of events&lt;/a&gt; in case you only want to tune in during a certain session.&lt;/p&gt;
&lt;p&gt;Because of a lack of WiFi and bandwidth at WordCamp New York, there will be no live audio or video streams. &lt;/p&gt;
&lt;p&gt;*&lt;strong&gt;UPDATE&lt;/strong&gt;* Just found out that &lt;a href=&quot;http://www.wordcampvictoria.ca/&quot;&gt;WordCamp Victoria&lt;/a&gt; in Canada is also this weekend. &lt;/p&gt;</description>
	<pubDate>Thu, 12 Nov 2009 00:07:34 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>WP Blackberry: Speed Improvement, UI Enhancements, and Video Library Support</title>
	<guid>http://blackberry.wordpress.org/?p=161</guid>
	<link>http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;We are inching ever so close to the 1.0 release, with today&amp;#8217;s beta version 0.9.0.169 update available at &lt;a href=&quot;http://blackberry.wordpress.org/install&quot;&gt;http://blackberry.wordpress.org/install&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Here is what&amp;#8217;s new:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt; Based on all the great feedback, we reworked much of the UI layout for the main view, blog view, and media view&lt;/li&gt;
&lt;li&gt; Ability to upload videos from your media library&lt;/li&gt;
&lt;li&gt; New option to set media file properties (filename, caption, title, and position)&lt;/li&gt;
&lt;li&gt; Created a new file browser that resembles the native BlackBerry file browser&lt;/li&gt;
&lt;li&gt; Big improvements in the speed at which you can view and manage comments&lt;/li&gt;
&lt;li&gt; Lots of optimizations for uploading photos and videos using base64 encoding&lt;/li&gt;
&lt;li&gt; Indonesian language support updated thanks to &lt;a href=&quot;http://pixert.com/&quot;&gt;Kate of Pixel Insert&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; Improved French language support thanks to &lt;a href=&quot;http://blog.onbebop.net&quot;&gt;Yann Nave of blog.onbebop.net&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here are a few screenshots of the new beta:&lt;br /&gt;

&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/01-mainscreen-full-device-2/&quot; title=&quot;01 - MainScreen - Full Device&quot;&gt;&lt;img width=&quot;87&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/01-mainscreen-full-device1.png?w=87&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;01 - MainScreen - Full Device&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/02-mainscreen-full-storm-device-2/&quot; title=&quot;02 - MainScreen - Full Storm Device&quot;&gt;&lt;img width=&quot;92&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/02-mainscreen-full-storm-device1.png?w=92&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;02 - MainScreen - Full Storm Device&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/03-mainscreen-lcd-only-2/&quot; title=&quot;03 - MainScreen - LCD only&quot;&gt;&lt;img width=&quot;150&quot; height=&quot;112&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/03-mainscreen-lcd-only1.png?w=150&amp;#038;h=112&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;03 - MainScreen - LCD only&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/04-mainscreen-storm-lcd-only-2/&quot; title=&quot;04 - MainScreen - Storm LCD only&quot;&gt;&lt;img width=&quot;112&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/04-mainscreen-storm-lcd-only1.png?w=112&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;04 - MainScreen - Storm LCD only&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/05-blog-screen-full-storm-device-2/&quot; title=&quot;05 - Blog Screen - Full Storm Device&quot;&gt;&lt;img width=&quot;92&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/05-blog-screen-full-storm-device1.png?w=92&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;05 - Blog Screen - Full Storm Device&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/06-blog-screen-storm-lcd-only-2/&quot; title=&quot;06 - Blog Screen - Storm LCD only&quot;&gt;&lt;img width=&quot;112&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/06-blog-screen-storm-lcd-only1.png?w=112&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;06 - Blog Screen - Storm LCD only&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/07-media-screen-full-storm-device-2/&quot; title=&quot;07 - Media Screen - Full Storm Device&quot;&gt;&lt;img width=&quot;92&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/07-media-screen-full-storm-device1.png?w=92&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;07 - Media Screen - Full Storm Device&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/08-media-screen-storm-lcd-only-2/&quot; title=&quot;08 - Media Screen -  Storm LCD only&quot;&gt;&lt;img width=&quot;112&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/08-media-screen-storm-lcd-only1.png?w=112&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;08 - Media Screen -  Storm LCD only&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/09-media-properties-full-storm-device-2/&quot; title=&quot;09- Media Properties - Full Storm Device&quot;&gt;&lt;img width=&quot;92&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/09-media-properties-full-storm-device1.png?w=92&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;09- Media Properties - Full Storm Device&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;http://blackberry.wordpress.org/2009/11/11/beta-0-9-0-169/10-media-properties-storm-lcd-only-2/&quot; title=&quot;10 - Media Properties -  Storm LCD only&quot;&gt;&lt;img width=&quot;112&quot; height=&quot;150&quot; src=&quot;http://wpblackberry.files.wordpress.com/2009/11/10-media-properties-storm-lcd-only1.png?w=112&amp;#038;h=150&quot; class=&quot;attachment-thumbnail&quot; alt=&quot;&quot; title=&quot;10 - Media Properties -  Storm LCD only&quot; /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;If you are running one of the latest versions of the app, it should prompt you to upgrade. If not, you can always download the latest version by pointing your mobile browser to: &lt;a href=&quot;http://blackberry.wordpress.org/install&quot;&gt;http://blackberry.wordpress.org/install&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And always, if you have any issues, please post to the forums so we can effectively track and respond to the issue:  &lt;a href=&quot;http://blackberry.forums.wordpress.org/&quot;&gt;http://blackberry.forums.wordpress.org/ &lt;/a&gt;&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wpblackberry.wordpress.com/161/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wpblackberry.wordpress.com/161/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wpblackberry.wordpress.com/161/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wpblackberry.wordpress.com/161/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wpblackberry.wordpress.com/161/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wpblackberry.wordpress.com/161/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wpblackberry.wordpress.com/161/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wpblackberry.wordpress.com/161/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wpblackberry.wordpress.com/161/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wpblackberry.wordpress.com/161/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=blackberry.wordpress.org&amp;blog=8247031&amp;post=161&amp;subd=wpblackberry&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 11 Nov 2009 20:58:40 +0000</pubDate>
	<dc:creator>Raanan Bar-Cohen</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Plugin Releases for 11/11</title>
	<guid>http://weblogtoolscollection.com/?p=7095</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/11/wordpress-plugin-releases-for-1111-3/</link>
	<description>&lt;h4&gt;New Plugins&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.cssjockey.com/wordpress-plugins/custom-coming-soon-pages-wordpress-plugin&quot;&gt;Custom Coming Soon Pages&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Custom Coming Soon Pages WordPress Plugin allows you to display a Customized Coming Soon Page or Under Construction page to normal visitors or regular members of your WordPress based website or Blog – while the Site Administrators see the fully functional website with the applied theme and active plugins as well as a fully functional Dashboard.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.viper007bond.com/wordpress-plugins/syntaxhighlighter/&quot;&gt;SyntaxHighlighter Evolved&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;SyntaxHighlighter Evolved allows you to easily post syntax-highlighted code to your site without loosing it’s formatting or making any manual changes.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.anieto2k.com/2009/11/07/wp-answers-crea-una-comunidad-de-preguntas-y-respuestas-con-wordpress/&quot;&gt;WP Answers&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Using a comments vote system you can order the comments by votes getting the focus to the most voted comment by the users. &lt;em&gt;Page in Spanish&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.finethemes.com/ImageMation/&quot;&gt;ImageMation&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;ImageMation lets you put a set of sliding images with captions on any of your webpage. Moving images interact with the direction of mouse movement.&lt;/p&gt;
&lt;h4&gt;Updated Plugins&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://ajaydsouza.com/wordpress/plugins/wp-ajax-edit-comments/&quot;&gt;Ajax Edit Comments&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The most powerful comment editing solution for WordPress. Users can edit their own comments for a limited time, while admins can edit all comments. Check out the video demonstrating the &lt;a href=&quot;http://www.youtube.com/watch?v=b5-ViKb4hfY&amp;amp;fmt=22&quot;&gt;new admin features&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/comment-autogrow&quot;&gt;Comment Autogrow&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A WordPress plugin that makes the comment textarea expand in height automatically&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://digitalcortex.net/plugins/&quot;&gt;Subscription Options&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It adds 4 subscription options for readers with related feed icons for an RSS feed URL; a FeedBurner Email Service URL, a Twitter Stream URL and now, by popular demand, a Facebook Page URL. It&amp;#8217;s totally user-defined, looks cool and it&amp;#8217;s very simple.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.blogsdna.com/5038/wp-thumbie-wordpress-plugin-from-blogsdna-lab.htm&quot;&gt;Wp-Thumbie&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Wp-thumbie is wordpress plugin to display thumbnail related posts. You can select the number of posts to be display in your content / feed.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/smart-archives-reloaded&quot;&gt;Smart Archives Reloaded&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Gives you an elegant and easy way to present your posts. See a &lt;a href=&quot;http://scribu.net/archive&quot;&gt;demo&lt;/a&gt; on the author&amp;#8217;s site.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.wpveda.com/buddypress-kaltura-media-component/&quot;&gt;BuddyPress-Kaltura&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This BuddyPress-Kaltura media component adds features like photos, videos and audio upload to BuddyPress. These features are essential for building a social network around BuddyPress.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Nov 2009 19:00:33 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Matt: Published on CNN</title>
	<guid>http://ma.tt/?p=15098</guid>
	<link>http://ma.tt/2009/11/published-on-cnn/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.cnn.com/2009/TECH/11/11/wordpress.blog.mullenweg/index.html&quot;&gt;&lt;img class=&quot;alignright size-full wp-image-15099&quot; title=&quot;cnn&quot; src=&quot;http://s.ma.tt/files/2009/11/cnn.PNG&quot; alt=&quot;&quot; width=&quot;303&quot; height=&quot;311&quot; /&gt;Today a short piece &amp;#8220;10 blogs to make you think&amp;#8221; I wrote for CNN.com was published&lt;/a&gt;. I&amp;#8217;m pretty excited about this and I also hope it drives a new audience to the blogs I mentioned, though to be fair if you&amp;#8217;re not fascinated by how technology is changing society my picks might not be interesting. It&amp;#8217;s a short piece in a &amp;#8220;top ten&amp;#8221; format, but I put a lot of thought into curating the picks.&lt;/p&gt;
&lt;p&gt;I started blogging because I love writing. While the nature of Automattic is such that I&amp;#8217;m writing all day long to communicate with my colleagues but writing for communication is different from the state of mind you&amp;#8217;re in when you sit down to tell a story or change someone&amp;#8217;s perspective. (Though perhaps it shouldn&amp;#8217;t be.)&lt;/p&gt;
&lt;p&gt;I started blogging for writing, I kept blogging for comments. It turns out what I love isn&amp;#8217;t the act of writing itself, which has never come easy to me, but the conversation that happens afterward. Collectively in tech we become infatuated with each new medium be it blogs, widgets, social networks, micro-blogs, but in the end it always comes back to people talking to each other and eventually the novelty of the format fades.&lt;/p&gt;
&lt;p&gt;As a final note when I write now I go into the WordPress editor because I know the auto-save will make sure my text is always safe, it produces clean and simple HTML, and I lean on &lt;a href=&quot;http://afterthedeadline.com/&quot;&gt;After the Deadline&lt;/a&gt;. (Which now helps you &lt;a href=&quot;http://blog.afterthedeadline.com/2009/11/10/accent-your-writing-with-atd/&quot;&gt;rock the diaeresis New Yorker-style&lt;/a&gt;.)&lt;/p&gt;</description>
	<pubDate>Wed, 11 Nov 2009 17:45:31 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>
<item>
	<title>Matt: First Impressions of Sony X</title>
	<guid>http://ma.tt/?p=15092</guid>
	<link>http://ma.tt/2009/11/sony-x1/</link>
	<description>&lt;p&gt;&lt;img class=&quot;alignright size-full wp-image-15095&quot; title=&quot;173338-sony_vaio_x_original&quot; src=&quot;http://s.ma.tt/files/2009/11/173338-sony_vaio_x_original-350x421.jpg&quot; alt=&quot;&quot; width=&quot;210&quot; height=&quot;253&quot; /&gt;I&amp;#8217;m a little addicted to gadgets, especially Sony laptops which have served as my primary on-the-go machines for the past few years because of their power and portability. &lt;a href=&quot;http://www.engadget.com/2009/09/02/sony-announces-vaio-x-ultraportable/&quot;&gt;When I first saw the Vaio X&lt;/a&gt;, Sony&amp;#8217;s new ultra-thin and ultra-light laptop, I was taken aback. It looked beautiful, but so was &lt;a href=&quot;http://gizmodo.com/395419/voodoos-envy-133-is-thinnest-notebook-alive-based-on-intel-metro-concept-laptop&quot;&gt;the Envy 133&lt;/a&gt; and the Envy was a complete waste of time and money due to a really bad trackpad and performance. Anyway, I&amp;#8217;ve been playing with the X1 for 5-6 hours now, and here are some unordered thoughts:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;It is the sexiest and most elegant laptop I&amp;#8217;ve held or seen. Feels like it&amp;#8217;s from the future.&lt;/li&gt;
&lt;li&gt;It feels almost too light, I actually threw it up and caught it, particularly with the normal-sized battery.&lt;/li&gt;
&lt;li&gt;I got the champagne color, which was a good choice.&lt;/li&gt;
&lt;li&gt;The ethernet port works in a really interesting way.&lt;/li&gt;
&lt;li&gt;Speed of browsing, installing, everything feels pretty good with Windows 7, but it&amp;#8217;s obvious the graphics card is pretty underpowered. The moment you turn transparency on or get a flash video on Blip going it starts to stutter a bit.&lt;/li&gt;
&lt;li&gt;That said, I could imagine using this as my primary machine for short and medium trips.&lt;/li&gt;
&lt;li&gt;The keyboard takes a bit of getting used to in a way I haven&amp;#8217;t run into before: the space bar is hard to hit. The keyboard is very compressed in vertical space so your thumb falls below where the space bar is, and you have to retrain your hand to be in a different position which isn&amp;#8217;t as comfortable. The shift button can be hard to hit but that&amp;#8217;s much easier to get used to, I&amp;#8217;ve done it on other small keyboards. I&amp;#8217;m not sure why they made it so small, it feels like it could stretch out a bit more.&lt;/li&gt;
&lt;li&gt;Other big annoyance is the trackpad &amp;#8212; it&amp;#8217;s really narrow. Windows machines do the trackpad scroll on the right and bottom edges of the pad and I find myself triggering that accidentally because the tracking area is so tiny. Again, lots of apparent space toward the bottom of the laptop just a really narrow tracking area. This is easier to get used to than the keyboard, though, and the trackpad feels nice like most Vaios and unlike the Voodoo Envy.&lt;/li&gt;
&lt;li&gt;I love that it has two USB ports, and a regular VGA connector instead of some weird micro-display-port you need a dongle for. (An Apple decision that bugs me almost as much as the recessed headphone connector on the original iPhone.)&lt;/li&gt;
&lt;li&gt;Screen is gorgeous, like all recent Vaios.&lt;/li&gt;
&lt;li&gt;Did I mention it&amp;#8217;s drop-dead gorgeous? It&amp;#8217;s the first laptop I&amp;#8217;ve had in 5 years that I don&amp;#8217;t want to put stickers on.&lt;/li&gt;
&lt;li&gt;Hardware-wise, way better than the Air.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So while it won&amp;#8217;t be replacing my Z890 as primary workhorse for now, the X is so light I might take it on my next few trips and use it as a day-top. I&amp;#8217;m especially excited by the prospect of the 14 hour battery life (probably 10 in real life use) giving me freedom from power cords through even a whole day at a WordCamp. We&amp;#8217;ll see in a week or two if I&amp;#8217;m able to comfortably adjust to the too-small keyboard and trackpad.&lt;/p&gt;</description>
	<pubDate>Wed, 11 Nov 2009 08:16:55 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>
<item>
	<title>WordPress.tv: Liz Strauss: Meeting Your Audience Where They Are</title>
	<guid>http://wordpress.tv/?p=2994</guid>
	<link>http://wordpress.tv/2009/10/31/liz-strauss-identity-netherlands09/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;ins&gt;
&lt;div class=&quot;video-player&quot; id=&quot;x-video-5&quot;&gt;
&lt;/div&gt;&lt;/ins&gt;
&lt;br /&gt;&lt;a href=&quot;http://wordpress.tv/2009/10/31/liz-strauss-identity-netherlands09/&quot;&gt;&lt;img width=&quot;160&quot; height=&quot;120&quot; src=&quot;http://cdn.videos.wordpress.com/chAEmmdV/wordcamp-nl-1_std.original.jpg&quot; /&gt; &lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/2994/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/2994/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/2994/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/2994/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/2994/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/2994/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/2994/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/2994/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/2994/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/2994/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=wordpress.tv&amp;blog=5089392&amp;post=2994&amp;subd=wptv&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Wed, 11 Nov 2009 05:15:12 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Publisher Blog: WordCamp NYC 2009</title>
	<guid>http://publisherblog.automattic.com/?p=695</guid>
	<link>http://publisherblog.automattic.com/2009/11/09/wordcamp-nyc-2009/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://2009.newyork.wordcamp.org/&quot;&gt;WordCamp NYC&lt;/a&gt; will be held this weekend, November 14th and 15th.  It&amp;#8217;s a great get together for the New York, and the extended, community of WordPress-loving bloggers and developers:&lt;br /&gt;
&lt;a href=&quot;http://2009.newyork.wordcamp.org/&quot;&gt;&lt;img src=&quot;http://wordpresspublishers.files.wordpress.com/2009/11/wordcamp-nyc-2009.png?w=640&amp;#038;h=299&quot; alt=&quot;wordcamp-nyc-2009&quot; title=&quot;wordcamp-nyc-2009&quot; class=&quot;alignnone size-full wp-image-698&quot; width=&quot;640&quot; height=&quot;299&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;With an amazing &lt;a href=&quot;http://2009.newyork.wordcamp.org/speakers/&quot;&gt;lineup of speakers&lt;/a&gt;, over &lt;a href=&quot;http://2009.newyork.wordcamp.org/attendees/&quot;&gt;525 people already registered&lt;/a&gt;, and &lt;a href=&quot;http://2009.newyork.wordcamp.org/saturday-sessions/&quot;&gt;8 session tracks&lt;/a&gt; &amp;#8211; there is something for everyone.&lt;/p&gt;
&lt;p&gt;Myself and several colleagues from Automattic are flying in for this event, and I&amp;#8217;m personally excited to see the track devoted to CMS use featuring case studies of current publishers.&lt;/p&gt;
&lt;p&gt;If you haven&amp;#8217;t &lt;a href=&quot;http://2009.newyork.wordcamp.org/tickets/&quot;&gt;signed up&lt;/a&gt; yet, it&amp;#8217;s $45 for both days, or just $25 for Sunday.  More details available on &lt;a href=&quot;http://2009.newyork.wordcamp.org/tickets/&quot;&gt;2009.newyork.wordcamp.org&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;[ Visit &lt;a href=&quot;http://2009.newyork.wordcamp.org/tickets/&quot;&gt;WordCamp NYC 2009&lt;/a&gt; and &lt;a href=&quot;http://central.wordcamp.org/&quot;&gt;WordCamp.org&lt;/a&gt; for other WordCamps happening all over the world ]&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/695/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/695/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/695/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/695/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/695/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/695/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/695/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/695/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/695/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/695/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&amp;blog=1470857&amp;post=695&amp;subd=wordpresspublishers&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Tue, 10 Nov 2009 01:04:06 +0000</pubDate>
	<dc:creator>Raanan Bar-Cohen</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: For Our Canadian Friends</title>
	<guid>http://weblogtoolscollection.com/?p=7091</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/09/for-our-canadian-friends/</link>
	<description>&lt;p&gt;&lt;img src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/mapleleaf.png&quot; alt=&quot;mapleleaf&quot; title=&quot;mapleleaf&quot; width=&quot;116&quot; height=&quot;95&quot; class=&quot;alignright size-full wp-image-7092&quot; /&gt;Just wanted to pass along another WordPress resource site to put in your bookmarks or RSS feed, especially if you&amp;#8217;re Canadian called &lt;a href=&quot;http://wpcanada.ca/&quot; target=&quot;_blank&quot;&gt;WordPress Canada&lt;/a&gt;. The site is managed by Len Kutchma, the same person who has been doing a great job providing feedback and even testing some of the themes being submitted to the &lt;a href=&quot;http://weblogtoolscollection.com/news/forum/new-wordpress-themes&quot;&gt;New Theme release&lt;/a&gt; section of the WeblogToolsCollection forums. The site aims to bring you all the goodness happening throughout the world of WordPress albeit with a Canadian twist. If you feel like traveling a bit of Canada through WordPress news, be sure to check out &lt;a href=&quot;http://www.planetwp.ca/&quot; target=&quot;_blank&quot;&gt;Planet WordPress Canada&lt;/a&gt; which Len is a member of. &lt;/p&gt;</description>
	<pubDate>Mon, 09 Nov 2009 20:07:43 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Theme Releases for 11/09</title>
	<guid>http://weblogtoolscollection.com/?p=7089</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/09/wordpress-theme-releases-for-1109/</link>
	<description>&lt;h4&gt;&lt;a href=&quot;http://www.smashingmagazine.com/2009/11/07/glassical-a-free-wordpress-theme/&quot;&gt;Glassical&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;Glassical&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Glassical.jpg&quot; alt=&quot;Glassical&quot; width=&quot;200&quot; height=&quot;122&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Two column, fixed width theme with support for the WP Pagenavi plugin. This theme was designed with the main focus being on typography, clean look and simplicity.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://premiummod.com/coffee-lite/&quot;&gt;Coffee Lite&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img title=&quot;Coffee Lite&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/CoffeeLite.png&quot; alt=&quot;Coffee Lite&quot; width=&quot;200&quot; height=&quot;167&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Coffee Lite Theme is a minimalist blogging theme modded from the popular premium theme&lt;a href=&quot;http://www.woothemes.com/2009/08/coffee-break/&quot;&gt; Coffee Break&lt;/a&gt; from &lt;a href=&quot;http://woothemes.com&quot;&gt;WooThemes&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.wpskinner.com/2009/11/03/new-york-free-wordpress-theme-release/&quot;&gt;New York&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://wpcodex.com/demo/?themedemo=new-york&quot;&gt;&lt;img title=&quot;New York&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/NewYork.jpg&quot; alt=&quot;New York&quot; width=&quot;200&quot; height=&quot;116&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Two column, fixed width, widget ready theme with inbuilt support for Twitter and 125&amp;#215;125 ads with a theme options page&lt;/p&gt;
&lt;h4&gt;&lt;a href=&quot;http://www.colixiodesign.com/en/2009/greenxi-tema-wordpress-pagina-opzioni-struttura-fluida-a-due-colonne/&quot;&gt;Greenxi&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href=&quot;http://www.colixiodesign.com/themes/?preview_theme=Greenxi&quot;&gt;&lt;img title=&quot;Greenxi&quot; src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/Greenxi.png&quot; alt=&quot;Greenxi&quot; width=&quot;200&quot; height=&quot;152&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Two columns, flexible width, base colors green and white, custom gravatar, widget ready (sidebar and footer)&lt;/p&gt;</description>
	<pubDate>Mon, 09 Nov 2009 18:45:17 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: Darn You WordPress!!</title>
	<guid>http://weblogtoolscollection.com/?p=7063</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/08/darn-you-wordpress/</link>
	<description>&lt;p&gt;WordPress &lt;strong&gt;rocks!&lt;/strong&gt; &lt;small&gt;(Most of the time&amp;#8230;)&lt;/small&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Sometimes though it can make you want to pull your hair out. Today I want to talk about that. Those times when you wish you could take a machete to it. I&amp;#8217;ve had my share of such situations several times in the past.&lt;/p&gt;
&lt;p&gt;Now, I don&amp;#8217;t mean plugins, or themes, or anything external like that. I mean the &lt;strong&gt;core&lt;/strong&gt; of WordPress itself. Sometimes it seems WordPress just comes up short. It can be anything from a simple little inconvenience to a total show-stopper.&lt;/p&gt;
&lt;p&gt;I think hearing peoples gripes about WordPress would be a nice contrast to the almost constant good things you hear about it. It might also help to get more attention on the issues. Don&amp;#8217;t forget that someone may come across this post, read a gripe, and possibly provide a solution. We can all help each other!&lt;/p&gt;
&lt;p&gt;So, lets get it started&amp;#8230;&lt;/p&gt;
&lt;p&gt;One of the issues I always seem to run into has to do with the way some core functions output their code. A lot of the functions in WordPress provide a method for either outputting the code &lt;em&gt;(echo)&lt;/em&gt; or returning it for you to handle and probably eventually echo yourself.&lt;/p&gt;
&lt;p&gt;Unfortunately not all functions currently in WordPress are like this. Some only allow for echoing the code. This can be quite the inconvenience for some of us. The only way to usually get around this is to capture the output with a buffering function &lt;strong&gt;&lt;em&gt;(ick!)&lt;/em&gt;&lt;/strong&gt; or to copy what the function does into a function of our own to do what we need. However, this is less than ideal. What if the core version of that function changes some time in the future? That leaves us in a situation where we have to also update our version of the function. That&amp;#8217;s not very nice&amp;#8230;&lt;/p&gt;
&lt;p&gt;An easy fix? &lt;em&gt;Probably&amp;#8230;&lt;/em&gt; Will it be addressed in future versions of WordPress? &lt;em&gt;I hope so!&lt;/em&gt; Is it a critical issue? &lt;em&gt;No.&lt;/em&gt; But, not all WordPress gripes are. This is just one of those things that has bugged me for some time.&lt;/p&gt;
&lt;p&gt;So, how about you? What bugs you about WordPress?&lt;/p&gt;</description>
	<pubDate>Mon, 09 Nov 2009 00:20:18 +0000</pubDate>
	<dc:creator>James Dimick</dc:creator>
</item>
<item>
	<title>WordPress.tv: This Week on WordPress.tv: Nov 1—Nov 7</title>
	<guid>http://blog.wordpress.tv/?p=95</guid>
	<link>http://blog.wordpress.tv/2009/11/08/this-week-on-wordpress-tv-nov-1%e2%80%94nov-7/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;This week was a light one compared to the last four, with a break in the stream of WordCamp videos. We&amp;#8217;re eagerly awaiting the arrival of a fresh batch of WordCamp video, with more sessions from the great speakers lined up for WordCamps both from the last few weeks and also from the next couple of weeks in November.&lt;/p&gt;
&lt;p&gt;There were a handful of videos published this week:&lt;/p&gt;
&lt;p&gt;We &lt;a href=&quot;http://wordpress.tv/2009/11/07/wordpress-for-iphone-2-0/&quot;&gt;announced the arrival of the new WordPress for iPhone 2.0&lt;/a&gt; with a brief overview of its features and quick introduction, and published &lt;a href=&quot;http://wordpress.tv/2009/11/04/the-astickypostorderer-plugin-overview/&quot;&gt;a great plugin tutorial from Adam W. Warner&lt;/a&gt; on the AStickyPostOrderER plugin.&lt;/p&gt;
&lt;p&gt;We also received and published yet another fantastic French-language tutorial from WordPress Channel: &lt;a href=&quot;http://wordpress.tv/2009/11/03/effectuer-une-mise-a-jour-de-wordpress/&quot;&gt;Effectuer une mise à jour de WordPress&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Next week will see the first videos from WordCamp Netherlands, and we hope to get you back up to a daily dose of WordPress video starting on Monday.&lt;/p&gt;
&lt;p&gt;Off-weeks don&amp;#8217;t have to be light like this! We&amp;#8217;re always looking for new videos from the community—this is &lt;em&gt;your&lt;/em&gt; resource. A great example is Adam&amp;#8217;s plugin tutorial from this week. Is there a plugin that you absolutely can&amp;#8217;t live without? One that you think more people should be using? &lt;a href=&quot;http://blog.wordpress.tv/2009/01/29/screencasting-resources-part-one/&quot;&gt;Check out this list of screencasting resources&lt;/a&gt; and put together a quick tutorial. It&amp;#8217;s really quite easy to get the hang of it.&lt;/p&gt;
&lt;p&gt;Then &lt;a href=&quot;http://wordpress.tv/contact&quot;&gt;drop us a line here at WordPress.tv&lt;/a&gt; and let us know about your great tutorial!&lt;/p&gt;
&lt;p&gt;Have a great weekend, and we&amp;#8217;ll see you on Monday.&lt;/p&gt;
  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptvblog.wordpress.com/95/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptvblog.wordpress.com/95/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptvblog.wordpress.com/95/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptvblog.wordpress.com/95/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptvblog.wordpress.com/95/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptvblog.wordpress.com/95/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptvblog.wordpress.com/95/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptvblog.wordpress.com/95/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptvblog.wordpress.com/95/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptvblog.wordpress.com/95/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=blog.wordpress.tv&amp;blog=5310177&amp;post=95&amp;subd=wptvblog&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sun, 08 Nov 2009 02:45:38 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Plugin Releases for 11/07</title>
	<guid>http://weblogtoolscollection.com/?p=7059</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/07/wordpress-plugin-releases-for-1107/</link>
	<description>&lt;h3&gt;New Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/ecwid-shopping-cart/&quot;&gt;Ecwid Shopping Cart&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Ecwid is free full-fledged shopping cart that can be easily add to any blog. It offers the performance and flexibility you need, with none of the hassles you don&amp;#8217;t.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.coma.sg/odds-and-ends/let-it-snow/&quot;&gt;Let it Snow&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Display falling snow on your blog&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.checkfront.com/extend/wordpress&quot;&gt;Checkfront Booking&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A plugin that connects your Wordpress blog to the Checkfront™ Booking platform.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://netweblogic.com/wordpress/twitter-goodies-widgets/&quot;&gt;Twitter Goodies Widgets&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Uses the twitter goodies widgets API to create offical twitter widgets (profiles, lists, faves and search) straight from your control panel.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/wp-ttfgen/&quot;&gt;WP-TTFGen&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;TTFGen allows you to embed fonts on your website by generating static images from your own CSS parameters. TTFGen is 100% cross browser compatible.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://andreapernici.com/wordpress/google-news-sitemap/&quot;&gt;Google-News-Sitemap&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Automatically generate sitemap for inclusion in Google News. &lt;em&gt;Page not in English&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/post-ordering/&quot;&gt;Post Ordering&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;With this plugin you can sort and order posts under a category manually.&lt;/p&gt;
&lt;h3&gt;Updated Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://xentek.net/code/wordpress/plugins/wp-orphanage/&quot;&gt;WP-Orphanage&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Users who have not been assigned any &lt;a href=&quot;http://codex.wordpress.org/Roles_and_Capabilities&quot;&gt;Roles or Capabilities&lt;/a&gt; are called “orphans”. When using the &lt;a href=&quot;http://xentek.net/articles/528/implementing-the-wordpress-shared-users-table-trick/&quot;&gt;shared users table trick&lt;/a&gt; to link up multiple WordPress installations, users who register on one of your blogs, are not given any privileges on the other blogs in the network. WP-Orphanage is a plugin that automatically adopts your orphan users by promoting them to the Role of your choosing.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://thecuriousfrog.com/projects/k2-style-switcher/&quot;&gt;K2 Style Switcher&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This plugin includes a style picker widget that allows site visitors to choose the K2 style that is applied during their visit. The list of available styles, type of widget and default style and footer can all be customised. The plugin also allows for certain base styles to be applied in all cases, these save the administrator copying the same CSS snippets into each selectable K2 style.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://redlettersstudio.com/wordpress-custom-admin-branding/&quot;&gt;Custom Admin Branding&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Custom Admin Branding Plugin allows you to brand and customize the WordPress administration area for clients or for personal use. You can display custom images and styles for the login screen, admin header and footer.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/comment-autogrow&quot;&gt;Comment Autogrow&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A small plugin that makes the comment textarea expand in height automatically. Version 1.1 fixes problems with IE.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/front-end-editor&quot;&gt;Front-end Editor&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enables “edit in place” functionality on your site. Edit posts, text widgets etc. without going to the admin area.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/google-transliteration/&quot;&gt;Google Transliteration&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A plug-in that implements Google Transliteration API for wordpress.&lt;/p&gt;</description>
	<pubDate>Sat, 07 Nov 2009 20:30:48 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>WordPress.tv: WordPress for iPhone 2.0</title>
	<guid>http://wordpress.tv/?p=2986</guid>
	<link>http://wordpress.tv/2009/11/07/wordpress-for-iphone-2-0/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;ins&gt;
&lt;div class=&quot;video-player&quot; id=&quot;x-video-2&quot;&gt;
&lt;/div&gt;&lt;/ins&gt;
&lt;br /&gt;&lt;a href=&quot;http://wordpress.tv/2009/11/07/wordpress-for-iphone-2-0/&quot;&gt;&lt;img width=&quot;160&quot; height=&quot;120&quot; src=&quot;http://cdn.videos.wordpress.com/Bh7FJ4Qg/iphone2web2_scruberthumbnail_0.jpg&quot; /&gt; &lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/2986/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/2986/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/2986/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/2986/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/2986/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/2986/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/2986/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/2986/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/2986/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/2986/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=wordpress.tv&amp;blog=5089392&amp;post=2986&amp;subd=wptv&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Sat, 07 Nov 2009 05:03:36 +0000</pubDate>
	<dc:creator>Ryan Markel</dc:creator>
</item>
<item>
	<title>Dev Blog: Bug Hunt in Progress!</title>
	<guid>http://wordpress.org/development/2009/11/bug-hunt-in-progress/</guid>
	<link>http://wordpress.org/development/2009/11/bug-hunt-in-progress/</link>
	<description>&lt;p&gt;Just in case anyone forgot, the first of the &lt;a href=&quot;http://wordpress.org/development/2009/10/upcoming-bug-hunts/&quot;&gt;November bug hunts&lt;/a&gt; for version 2.9 is now in progress, and will last another day. If you&amp;#8217;ve got a dev environment set up, please consider pitching in to run some tests and help get us closer to the 2.9 milestone release. &lt;/p&gt;</description>
	<pubDate>Sat, 07 Nov 2009 00:50:39 +0000</pubDate>
	<dc:creator>Jane Wells</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: Watch Out For The Gumblar Botnet</title>
	<guid>http://weblogtoolscollection.com/?p=7054</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/06/watch-out-for-the-gumblar-botnet/</link>
	<description>&lt;p&gt;According to the blog Unmask Parasites, there is a &lt;a href=&quot;http://blog.unmaskparasites.com/2009/11/04/gumblar-breaks-wordpress-blogs-and-other-complex-php-sites/&quot;&gt;new version of the Gumblar botnet&lt;/a&gt; making the rounds on PHP based websites. Back in May of this year, this malicious botnet was responsible for infecting a large number of websites in a short period of time. This time around however, the Gumblar botnet has buggy code which is leading to a number of infected WordPress sites breaking.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;WordPress is a complex web application that comprises more than 200 .php files. When you open any page, WordPress loads index.php which, in turn, loads many other .php files using the require() function. WordPress admin interface also relies on multiple .php files. In all cases, WordPress loads wp-config.php file which contains database credentials and other important information required for normal operation.&lt;/p&gt;
&lt;p&gt;So what happens if both index.php and wp-config.php are infected with the gumblar backdoor scripts? Since Gumblar injects identical backdoor scripts into files on the same site, they’ll have declarations of identically named functions, which PHP doesn’t allow. Hence the “cannot redeclare zsmh() …” error.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;One thing not mentioned in the Unmasked Parasites post is information regarding which specific versions of WordPress are at risk or are safe to use. I&amp;#8217;ve left a comment on the blog post to try and get an answer but until then, Denis Sinegubko provides &lt;a href=&quot;http://blog.unmaskparasites.com/2009/10/23/revenge-of-gumblar-zombies/&quot;&gt;detection and removal instructions&lt;/a&gt; while also suggesting the use of the &lt;a href=&quot;http://ocaoimh.ie/exploit-scanner/&quot;&gt;WordPress Exploit Scanner&lt;/a&gt; which scans for WordPress files for signs of suspicious activity. &lt;/p&gt;
&lt;p&gt;Based on the reports of infection, this does not appear to be a WordPress centric issue pointing to a problem with the software. &lt;/p&gt;</description>
	<pubDate>Fri, 06 Nov 2009 15:18:01 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>WP iPhone: 20,000 downloads of WordPress for iPhone 2</title>
	<guid>http://iphone.wordpress.org/?p=506</guid>
	<link>http://iphone.wordpress.org/2009/11/06/20000-downloads/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;It&amp;#8217;s been just over a week since WordPress for iPhone 2 was released on the App Store. In that time, you&amp;#8217;ve downloaded the app onto over 20,000 iPhones and iPods. We&amp;#8217;re really pleased to see how many people are interested in the app, especially those who are able to use it for the first time with version 2.0. To mark the occasion, we wanted to show you our new video introduction for the app, take the time to share some data with you, and answer a few questions we&amp;#8217;ve been seeing.&lt;/p&gt;
&lt;ins&gt;
&lt;div class=&quot;video-player&quot; id=&quot;x-video-0&quot;&gt;
&lt;/div&gt;&lt;/ins&gt;
&lt;p&gt;We&amp;#8217;re also keeping track of downloads by country and by iPhone OS version. This helps us identify the languages to focus on once we begin translating the app, and helps us plan for which new OS features we can count on our users having available.&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;alignnone size-full wp-image-540&quot; title=&quot;charts&quot; src=&quot;http://wpiphone.files.wordpress.com/2009/11/charts1.png?w=571&amp;#038;h=485&quot; alt=&quot;charts&quot; width=&quot;571&quot; height=&quot;485&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As happy as we are with the reception for 2.0, we continue working hard to make it even better. We&amp;#8217;ve identified a few recurring questions that we&amp;#8217;d like to answer for everyone.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q. Why is this a new app? I don&amp;#8217;t want to re-enter my blog settings.&lt;/strong&gt;&lt;br /&gt;
A. Previous versions of WordPress for iPhone were uploaded to the App Store by a contracted developer. To make it easier for us to test new features, fix bugs, and update the app more often, that task will now be handled by those of us developing the app at Automattic. Apple’s only method for changing the “ownership” of an app in the store is to release a completely new version, as we&amp;#8217;ve done here. It&amp;#8217;s a bit painful, we know, but we should be set now for all future releases.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q. Why did you remove landscape mode?&lt;br /&gt;
&lt;/strong&gt;A. It&amp;#8217;s still there. Bring up the on-screen keyboard to start editing a post, then rotate the device. Apple doesn&amp;#8217;t support landscape mode in some areas, particularly the photo picker and the date selection wheel. Having landscape mode turned on for every section was causing bugs that were impossible to fix (while still using Apple&amp;#8217;s standard user interface elements).  So we&amp;#8217;ve removed it from the areas of the app where it didn&amp;#8217;t work well, and kept it in the writing interface, where it&amp;#8217;s really useful.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Q. I can&amp;#8217;t log in!&lt;br /&gt;
&lt;/strong&gt;A. Ok, not quite a question, but we&amp;#8217;ve seen this one a few times on iTunes. However, we haven&amp;#8217;t yet had a report of this in the &lt;a href=&quot;http://iphone.forums.wordpress.org&quot;&gt;forums&lt;/a&gt;, the only place we&amp;#8217;re able to provide hands-on assistance with the app. If you&amp;#8217;re sure that you&amp;#8217;re entering your URL, username, and password correctly and are still unable to connect, please let us know in the forums. (A quick hint for connection issues: Make sure you&amp;#8217;re using the latest version of WordPress, 2.8.5, and try temporarily disabling any plugins you have installed). We&amp;#8217;ve done lots of work in version 2.0 to eliminate connection problems for the vast majority of blog setups. We&amp;#8217;d like to make it work for everyone, but can only help when you work with us to troubleshoot the problem you&amp;#8217;re having.&lt;/p&gt;
&lt;p&gt;We&amp;#8217;ve already begun working on issues identified since the release of 2.0, and are looking forward to being able to provide more timely updates for you going forward. You can track the progress of the project&amp;#8217;s development in &lt;a href=&quot;http://iphone.trac.wordpress.org&quot;&gt;Trac&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Once again, if you need help using the app or would just like to offer a suggestion, please visit the &lt;a href=&quot;http://iphone.forums.wordpress.org&quot;&gt;WordPress for iPhone forums&lt;/a&gt;. You can stay up to date with our progress by visiting our development blog, &lt;em&gt;&lt;a href=&quot;http://iphonedev.wordpress.org&quot;&gt;Making WordPress for iPhone&lt;/a&gt;&lt;/em&gt;. And of course, if you&amp;#8217;re thrilled with the app, we&amp;#8217;d love for you to review it on the &lt;a href=&quot;http://itunes.com/app/wordpress2&quot;&gt;App Store&lt;/a&gt;. &lt;img src=&quot;http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;br /&gt;&lt;a href=&quot;http://iphone.wordpress.org/2009/11/06/20000-downloads/&quot;&gt;&lt;img width=&quot;160&quot; height=&quot;120&quot; src=&quot;http://cdn.videos.wordpress.com/G78ldCQw/freakish_std.original.jpg&quot; /&gt; &lt;/a&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/wpiphone.wordpress.com/506/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/wpiphone.wordpress.com/506/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/wpiphone.wordpress.com/506/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/wpiphone.wordpress.com/506/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/wpiphone.wordpress.com/506/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/wpiphone.wordpress.com/506/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/wpiphone.wordpress.com/506/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/wpiphone.wordpress.com/506/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/wpiphone.wordpress.com/506/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/wpiphone.wordpress.com/506/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=iphone.wordpress.org&amp;blog=3882653&amp;post=506&amp;subd=wpiphone&amp;ref=&amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Fri, 06 Nov 2009 14:00:13 +0000</pubDate>
	<dc:creator>MT</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: The Best-Of Series: Download Managers</title>
	<guid>http://weblogtoolscollection.com/?p=7031</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/06/the-best-of-series-download-managers/</link>
	<description>&lt;p&gt;We continue our Best-Of Series today with download managers. Or, plugins for WordPress that will allow you to provide various files to your website visitors for download. Over the years I&amp;#8217;ve gone through many. Everyone will have a different preference but, here is a list of my top plugins for managing downloads with WordPress&amp;#8230;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/drain-hole/&quot;&gt;Drain Hole&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
I&amp;#8217;ve been using Drain Hole on &lt;a href=&quot;http://www.jamesdimick.com/&quot;&gt;my personal site&lt;/a&gt; to serve up my files for a couple years now. So far it is the best download manager plugin I&amp;#8217;ve been able to find. It does everything it advertises and does it well. I&amp;#8217;ve not yet had any issues with this plugin. I highly recommend it!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/wp-downloadmanager/&quot;&gt;WP-DownloadManager&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
Before I found Drain Hole I used WP-DownloadManager exclusively. It did what I wanted and didn&amp;#8217;t seem to have many problems. It has the features most would expect in such a plugin. It also has some you might not. Such things as custom templates, categories, RSS feeds, and more.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/wp-filebase/&quot;&gt;WP-Filebase&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
I actually just recently learned of WP-Filebase. I can&amp;#8217;t speak from personal experience but from the research I&amp;#8217;ve done on it I think it would be one of the best options. It has the obvious features you expect from a download manager. Some of the highlights are quick tags, top downloads widget, extensive file details, and even download pausing.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/download-monitor/&quot;&gt;Wordpress Download Monitor&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
I really like the interface of Wordpress Download Monitor. It&amp;#8217;s simple yet complete. It does its job as a download manager and keeps it simple at the same time. Some of the attraction points of this plugin are: simple custom download URLs, custom error pages, download mirrors, and even custom fields for all files.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/simple-download-monitor/&quot;&gt;Simple Download Monitor&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
What&amp;#8217;s great about Simple Download Monitor is right in its name. It&amp;#8217;s simple! To quote the author of the plugin &amp;#8220;&lt;em&gt;&amp;#8230;I wanted to monitor the number of downloads of my files without having to maintain any kind of database or making any special download links. I just wanted to upload a file to a designated directory using FTP, provide a direct link to it and once in a while check the number of downloads&lt;/em&gt;&amp;#8220;. This plugin also allows advanced logging.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What I think is especially nice is that all these plugins seem to be compatible with the upcoming WordPress 2.9. That means that they are future-proof for at least the foreseeable future. I took time to test each one of these plugins during the writing of this post. But, feel free to let me know if you have experienced anything to the contrary with any of them.&lt;/p&gt;
&lt;p&gt;Well, that&amp;#8217;s all for now. I hope you enjoyed the post and I hope you might be able to get something useful out of this list.&lt;/p&gt;
&lt;p&gt;Do you have a good idea for the next article in the Best-Of series? Drop a comment here or &lt;a href=&quot;http://weblogtoolscollection.com/archives/2007/02/06/contact-me/&quot;&gt;contact us&lt;/a&gt; and your idea just might be next in the series!&lt;/p&gt;</description>
	<pubDate>Fri, 06 Nov 2009 12:38:58 +0000</pubDate>
	<dc:creator>James Dimick</dc:creator>
</item>
<item>
	<title>Dev Blog: Upcoming WordCamps</title>
	<guid>http://wordpress.org/development/?p=960</guid>
	<link>http://wordpress.org/development/2009/11/upcoming-wordcamps-3/</link>
	<description>&lt;p&gt;There are six WordCamps coming up before the end of the year, and since I like to make sure people know about it when there&amp;#8217;s a &lt;a href=&quot;http://central.wordcamp.org/&quot;&gt;WordCamp&lt;/a&gt; near them, here&amp;#8217;s the list, with some personal commentary thrown in. If you just want the list without my asides, check out the full schedule at &lt;a href=&quot;http://wordcamp.org&quot;&gt;WordCamp.org&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://phxwordcamp.com/&quot;&gt;WordCamp Phoenix&lt;/a&gt; is first up, on November 13. I&amp;#8217;d planned on attending this one myself before they changed the date (it was originally scheduled for the 7th), but will sadly have to miss it as it conflicts with WordCamp NYC. If you, like me, can&amp;#8217;t make it to Phoenix, be sure to check their web site for information on the &lt;a href=&quot;http://phxwordcamp.com/live-video-stream/&quot;&gt;live stream&lt;/a&gt; they&amp;#8217;re planning to provide. If it&amp;#8217;s anywhere near the quality of the stream from Portland or Seattle earlier this fall, it&amp;#8217;ll be just like being there, but without a t-shirt to show for it (and theirs has stripes, so if you&amp;#8217;re local, you should go!). My only consolation in missing this WordCamp is that I&amp;#8217;ve seen about half of the &lt;a href=&quot;http://phxwordcamp.com/speakers/&quot;&gt;speakers&lt;/a&gt; before. If you&amp;#8217;re going, don&amp;#8217;t miss the session by &lt;a href=&quot;http://johnhawkinsunrated.com&quot;&gt;John Hawkins&lt;/a&gt; on &lt;a href=&quot;http://wordpress.tv/2009/09/20/john-hawkins-plugin-building-portland09/&quot;&gt;&lt;em&gt;Building a WordPress Plugin&lt;/em&gt;&lt;/a&gt;; it got me to write my first plugin in Portland! &lt;a href=&quot;http://ma.tt&quot;&gt;Matt&lt;/a&gt;&amp;#8216;ll be there, will you?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.wordcampvictoria.ca/agenda/&quot;&gt;WordCamp Victoria&lt;/a&gt; is next, on November 14. This is another one I&amp;#8217;d love to go to, but can&amp;#8217;t because it&amp;#8217;s at the same time as New York&amp;#8217;s. I would especially have liked to go because it looks like the &lt;a href=&quot;http://www.wordcampvictoria.ca/speaker-biographies/&quot;&gt;speakers&lt;/a&gt; are all local, and I haven&amp;#8217;t seen any of them speak before. Occasionally WordCamps lose a little of the local feeling by focusing on visiting speakers, so it&amp;#8217;s nice to see so many Vancouverites on the list. They&amp;#8217;ll have a Blogger track and a Technical track running concurrently, so there should a little something for everyone. No word on a live stream, but hopefully they&amp;#8217;ll be able to catch some of the presentations on video and post them to &lt;a href=&quot;http://WordPress.tv&quot;&gt;WordPress.tv&lt;/a&gt; after the event.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordcamp.kapook.com/en/&quot;&gt;WordCamp Bangkok&lt;/a&gt; is scheduled for November 15. I have to admit that the first thing that catches my eye on their agenda is &amp;#8220;WordPress Band.&amp;#8221; I&amp;#8217;ve known WordCamps to have &lt;a href=&quot;http://wordpress.tv/2008/10/31/wordcamp-sf-2008-andy-skelton-deserve/&quot;&gt;people&lt;/a&gt; &lt;a href=&quot;http://wordpress.tv/2008/10/31/wordcamp-sf-2008-chuck-lewis-the-seo-rapper/&quot;&gt;performing&lt;/a&gt; &lt;a href=&quot;http://vimeo.com/5354329&quot;&gt;songs&lt;/a&gt; before, but a whole band? Might be a first. I hope they&amp;#8217;ll post the video to WordPress.tv, too.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://2009.newyork.wordcamp.org/&quot;&gt;WordCamp New York City&lt;/a&gt; is the same weekend as the previous three, on November 14-15. In the interest of full disclosure, I need to tell you that I&amp;#8217;m one of the organizers of WordCamp NYC, so my informative comment about it here may be a little biased. &lt;img src=&quot;http://wordpress.org/development/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt;  That said, we have over &lt;a href=&quot;http://2009.newyork.wordcamp.org/speakers/&quot;&gt;50 confirmed speakers&lt;/a&gt; (both local and visiting), and &lt;a href=&quot;http://2009.newyork.wordcamp.org/program/&quot;&gt;2 full days of content&lt;/a&gt; in 8 &amp;#8212; count &amp;#8216;em, 8 &amp;#8212; tracks. Newbies get a free year of hosting and walked through setting up a WordPress blog in workshop format, while the other tracks have specialized content for Bloggers, CMS Users, Beginning Developers, Advanced Developers, Academic Users, people interested in MU/BuddyPress, and the Open Source Community. Did I mention the &lt;a href=&quot;http://2009.newyork.wordcamp.org/plugintheme-competition/&quot;&gt;theme and plugin contest&lt;/a&gt;? Or the &lt;a href=&quot;http://2009.newyork.wordcamp.org/2009/10/28/my-favorite-conference-shirt/&quot;&gt;awesome shirts&lt;/a&gt;? How about the Genius Bar, or the Hacker Room? The additional Unconference sessions? If you&amp;#8217;re anywhere near NYC that weekend (and with the Acela, that&amp;#8217;s anywhere from Boston to D.C.), you should definitely come. I&amp;#8217;ll be there, Matt&amp;#8217;ll be there, lead developer Mark Jaquith will be there, lead developer of BuddyPress Andy Peatling will be there, and too many other WordPress luminaries and locals to mention. If we hit 800 registrations by November 12, I&amp;#8217;m baking cookies for everyone.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://peru.wordcamp.org/&quot;&gt;WordCamp Peru&lt;/a&gt; will be on November 28 in Lima. I was checking out their topics list, and it looks like they&amp;#8217;re planning to cover all the usual topics around blog administration, security, increasing traffic, and integration with social media sites. No speaker list yet, but if you&amp;#8217;re in Peru, it looks like this will be a nice gathering of WordPress users, and they&amp;#8217;re hoping to have around 100 people attend.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordcamporlando.org/&quot;&gt;WordCamp Orlando&lt;/a&gt; is the last of the year, on December 5. They haven&amp;#8217;t published a speaker list or schedule yet, but I know Matt will be there, Mark Jaquith will be there, and I will be there. I know some other awesome core contributors are planning to come, but I don&amp;#8217;t want to jinx anything, so if you&amp;#8217;re curious, come see for yourself. Plus, Florida in December!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	<pubDate>Fri, 06 Nov 2009 02:42:53 +0000</pubDate>
	<dc:creator>Jane Wells</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress 2.9 Revamps Hello World</title>
	<guid>http://weblogtoolscollection.com/?p=7046</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/05/wordpress-2-9-revamps-hello-world/</link>
	<description>&lt;p&gt;During the WordPress development chat today, one of the topics of discussion centered around the suggestion of changing the Hello World post that is seen with every new install of WordPress to something that contained useful WordPress specific information such as links to the release mailing list, the codex and other helpful material. I&amp;#8217;d like to break down how this change came about to show how easy it is to contribute to the WordPress project without writing a line of code.&lt;/p&gt;
&lt;p&gt;It first started out as a discussion on the WordPress Hackers mailing list concerning the addition of email notifications to the core of WordPress to keep administrators abreast of new versions of WordPress as they were released. The discussion became long winded but &lt;a href=&quot;http://lists.automattic.com/pipermail/wp-hackers/2009-October/028015.html&quot; target=&quot;_blank&quot;&gt;a response&lt;/a&gt; by Lynne Pope provided one of those &lt;i&gt;why didn&amp;#8217;t I think of that&lt;/i&gt; moments. &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Change the sample data &amp;#8211; instead of, &amp;#8220;this is a post&amp;#8221;, provide some meaningful information. With a link to subscribe to WP-Announce. Make an entry announcing that WP-Announce is being used, so this will show in the dashboard feeds. Bloggers will quickly pick up on this and news of it will spread.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Needless to say, her idea sparked a series of kudos with other suggestions for what to include in the sample data. Then, in a WordPress development chat regarding the topic that was discussed on the hackers mailing list, it was agreed that the best course of action would be to not only revive the WP-Announcements mailing list, but to also change the Hello World! post in WordPress to something more useful. A fellow by the name of &lt;a href=&quot;http://op111.net/&quot; target=&quot;_blank&quot;&gt;Demetris&lt;/a&gt; took it upon himself to create a draft of what the sample data should be. The discussion surrounding the change including links to see drafts and revisions were included in &lt;a href=&quot;http://core.trac.wordpress.org/ticket/11008&quot; target=&quot;_blank&quot;&gt;ticket number 11008&lt;/a&gt;. The ticket has been open for two weeks and in &lt;a href=&quot;https://irclogs.wordpress.org/chanlog.php?channel=wordpress-dev&amp;#038;day=2009-11-05&amp;#038;sort=desc#m35813&quot; target=&quot;_blank&quot;&gt;today&amp;#8217;s developer chat&lt;/a&gt;, Demetris published a link to his draft which you can &lt;a href=&quot;http://op111.etherpad.com/3&quot; target=&quot;_blank&quot;&gt;view here&lt;/a&gt;. There was a unanimous decision to include the sample post data into the core of WordPress starting with version 2.9. If the sample data needs editing, it will be done throughout the beta process before the stable release. &lt;/p&gt;
&lt;p&gt;There you have it. A time line of events that happened in quick succession which provided a small change with huge benefits without having one line of code written. Let me know your thoughts in the comments with regards to the new sample data that will be provided in any new installation of WordPress starting with 2.9. &lt;/p&gt;</description>
	<pubDate>Fri, 06 Nov 2009 00:47:02 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress Plugin Releases for 11/05</title>
	<guid>http://weblogtoolscollection.com/?p=7024</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/05/wordpress-plugin-releases-for-1105-2/</link>
	<description>&lt;h3&gt;New Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.viper007bond.com/wordpress-plugins/localtime/&quot;&gt;Local Time&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Using JavaScript, Local Time automatically transforms all dates and times on your blog into the visitor’s timezone.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://fytch.com/tools/wordpress&quot;&gt;Fytch Comments&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Fytch is a fully featured plugin that provides comment publishing to &lt;a href=&quot;http://fytch.com&quot;&gt;http://fytch.com&lt;/a&gt; It allows to assign a Fytch topic to each post so that wordpress comments are co-published under the appropriate topic on &lt;a href=&quot;http://fytch.com.&quot;&gt;http://fytch.com.&lt;/a&gt; It not only allows to publish comments to &lt;a href=&quot;http://fytch.com&quot;&gt;http://fytch.com&lt;/a&gt; but to Twitter and FriendFeed as well.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/vlam-a-post/&quot;&gt;vlam-a-post&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;vlam-a-post automatically creates a vl.am URL for every post you publish and keeps track of the number of clicks the vl.am URL received. After publishing your post you can easily post your vl.am URL to twitter.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.clubwordpress.com/amazon-affiliate-linker-plugin/&quot;&gt;Amazon Affiliate Linker&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Amazon Affiliate Linker Plugin allows easy linking to Amazon.com products by only using the ASIN (Amazon Standard Identification Number). It also allows you to embed your Amazon Associate link so that you can pick up affiliate commissions on your links.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.appointy.com/web/facebookshare&quot;&gt;Facebook Share New&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The Facebook Share (new) button easily allows your blog to be shared. The button also provides a current count of how many times your story has been shared throughout Facebook.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.devilslab.com/wp-thumblated-related-post&quot;&gt;Thumblated Related Post&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This plugin shows thumblated related posts. It allows you to design your own layout using simple and easy interface.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://scribu.net/wordpress/random-post-link&quot;&gt;Random Post Link&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Generates a link to random post, but never the same as before.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://wordpress.org/extend/plugins/gweather/&quot;&gt;Gweather&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;With the gweather plugin you can display and embed Google Weather Feeds in your WordPress posts and pages.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://ottodestruct.com/blog/wordpress-plugins/simple-facebook-connect/&quot;&gt;Simple Facebook Connect&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Makes it easy to add Facebook Connect functionality to any WordPress site. Modular: activate only the pieces you need.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://fusedthought.com/downloads/url-shortener-wordpress-plugin/&quot;&gt;URL Shortener&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Allows you to create your own short url using the WordPress Post ID and also integrates multiple URL Shortening service with your WordPress.org installation bringing a similar functionality to that of WordPress.com&amp;#8217;s WP.me shortlinks feature but using 3rd party URL Shorteners.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.page.ly/reseller-plugin/&quot;&gt;Page.ly Reseller Management&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This plugin is a Reseller dashboard to manage client accounts on the page.ly WordPress hosting system.&lt;/p&gt;
&lt;h3&gt;Updated Plugins&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;http://www.gdstarrating.com/2009/11/02/gd-star-rating-1-7-4/&quot;&gt;GD Star Rating&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;GD Star Rating is post, page and comment rating and review plugin for WordPress. Plugin supports different image sets, rating moderation, vote rules, time restricted voting, templates, trend calculations, multi ratings, templated rendering, has a widgets build in and extensive shortcode support. Plugin can be integrated with comments for making a review website.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.makers-online.co.uk/projects/visitor_blogroll&quot;&gt;Visitor Blogroll&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The visitor blogroll is a Wordpress Plugin/Widget which allows visitors to your blog to leave an RSS feed of their blog which is then displayed on your visitor blogroll.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://valadilene.org/wordbb&quot;&gt;WordBB&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;WordBB is an integration between the blogging platform &lt;a href=&quot;http://wordpress.org&quot;&gt;WordPress&lt;/a&gt; and the bulletin board system &lt;a href=&quot;http://www.mybboard.net&quot;&gt;MyBB&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://netweblogic.com/wordpress/digg-this-button/&quot;&gt;Digg This Button&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Adds the smarter digg button. Extended options like topics, prefilled descriptions, shortcodes etc. allow full control of your digg icons.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://website-in-a-weekend.net/hrecipe/&quot;&gt;hRecipe&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This is a plugin to allow the easy entry of microformat content for recipes (i.e. the hRecipe microformat) in WordPress pages and posts.&lt;/p&gt;</description>
	<pubDate>Thu, 05 Nov 2009 17:54:00 +0000</pubDate>
	<dc:creator>Perurry</dc:creator>
</item>
<item>
	<title>Weblog Tools Collection: WordPress 2.8 Visual Cheat Sheet</title>
	<guid>http://weblogtoolscollection.com/?p=7026</guid>
	<link>http://weblogtoolscollection.com/archives/2009/11/04/wordpress-2-8-visual-cheat-sheet/</link>
	<description>&lt;p&gt;Antonio Lupetti of Woorkup.com has &lt;a href=&quot;http://woorkup.com/2009/11/01/wordpress-visual-cheat-sheet/&quot; target=&quot;_blank&quot;&gt;created and released&lt;/a&gt; an awesome visual cheat sheet for WordPress 2.8. The cheat sheet contains a practical reference guide to 2.8 with references to WP Template Tags as well as sample code. Definitely worthy of being added to your resources bin.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://weblogtoolscollection.com/wp-content/uploads/2009/11/visualguide.png&quot; alt=&quot;visualguide&quot; title=&quot;visualguide&quot; width=&quot;366&quot; height=&quot;314&quot; class=&quot;aligncenter size-full wp-image-7027&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Check out the &lt;a href=&quot;http://www.scribd.com/doc/21982552/WordPress-2-8-Visual-Cheat-Sheet&quot; target=&quot;_blank&quot;&gt;live demo&lt;/a&gt; before you download the guide. &lt;/p&gt;</description>
	<pubDate>Thu, 05 Nov 2009 00:26:47 +0000</pubDate>
	<dc:creator>Jeff Chandler</dc:creator>
</item>
<item>
	<title>Matt: CoPress</title>
	<guid>http://ma.tt/?p=15089</guid>
	<link>http://ma.tt/2009/11/copress/</link>
	<description>&lt;p&gt;&lt;a href=&quot;http://www.poynter.org/column.asp?id=101&amp;amp;aid=172676&quot;&gt;CoPress Pushes Innovation, Shows Value of Open-Source Platforms&lt;/a&gt;.&lt;/p&gt;</description>
	<pubDate>Wed, 04 Nov 2009 16:35:23 +0000</pubDate>
	<dc:creator>Matt</dc:creator>
</item>

</channel>
</rss>
