<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Microbits &#187; wordpress</title>
	<atom:link href="http://microbits.info/index.php/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://microbits.info</link>
	<description>Random thoughts about programming, gaming, and the world.</description>
	<lastBuildDate>Mon, 31 Oct 2011 04:43:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Blogging from an iPhone or iPod Touch</title>
		<link>http://microbits.info/index.php/2009/08/blogging-from-an-iphone-or-ipod-touch</link>
		<comments>http://microbits.info/index.php/2009/08/blogging-from-an-iphone-or-ipod-touch#comments</comments>
		<pubDate>Fri, 21 Aug 2009 22:53:04 +0000</pubDate>
		<dc:creator>recon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://microbits.info/?p=292</guid>
		<description><![CDATA[I just installed the WordPress app for my iPod Touch. It looks great so far. It seems to automatically detects if you have SSL available, and, if you do, it will send all requests over SSL.]]></description>
			<content:encoded><![CDATA[<p>I just installed the <a href="http://iphone.wordpress.org/" target="_blank">WordPress app</a> for my iPod Touch. It looks great so far. It seems to automatically detects if you have SSL available, and, if you do, it will send all requests over SSL.</p>
]]></content:encoded>
			<wfw:commentRss>http://microbits.info/index.php/2009/08/blogging-from-an-iphone-or-ipod-touch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Monitor bug fixes</title>
		<link>http://microbits.info/index.php/2009/07/download-monitor-bug-fix</link>
		<comments>http://microbits.info/index.php/2009/07/download-monitor-bug-fix#comments</comments>
		<pubDate>Thu, 30 Jul 2009 04:07:46 +0000</pubDate>
		<dc:creator>recon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://microbits.info/?p=38</guid>
		<description><![CDATA[After using Download Monitor (a WP plugin), I noticed there was a little annoying bug in uploader.php, which prevented me from using the post uploader form. To fix, find (in uploader.php): &#60;option value=""&#62;&#60;?php _e('N/A',"wp-download_monitor"); ?&#62;&#60;/option&#62; Replace with: &#60;option value="0"&#62;&#60;?php _e('N/A',"wp-download_monitor"); ?&#62;&#60;/option&#62; Another minor bug is that there was a missing space when using the download [...]]]></description>
			<content:encoded><![CDATA[<p>After using <a href="http://wordpress.org/extend/plugins/download-monitor/" target="_blank">Download Monitor</a> (a WP plugin), I noticed there was a little annoying bug in uploader.php, which prevented me from using the post uploader form.</p>
<p>To fix, find (in uploader.php):</p>
<pre class="brush: php">&lt;option value=""&gt;&lt;?php _e('N/A',"wp-download_monitor"); ?&gt;&lt;/option&gt;</pre>
<p>Replace with:</p>
<pre class="brush: php">&lt;option value="0"&gt;&lt;?php _e('N/A',"wp-download_monitor"); ?&gt;&lt;/option&gt;</pre>
<p>Another minor bug is that there was a missing space when using the download short code (link titles looked like VersionNumHere instead of Version NumHere).</p>
<p>To fix, find (in wp-download_monitor.php):</p>
<pre class="brush: php">$format = '&lt;a class="downloadlink" href="{url}" title="{version,"'.__("Version","wp-download_monitor").'", ""} '.__("downloaded","wp-download_monitor").' {hits} '.__("times","wp-download_monitor").'" &gt;{title} ({hits})&lt;/a&gt;';</pre>
<p>Replace with:</p>
<pre class="brush: php">$format = '&lt;a class="downloadlink" href="{url}" title="{version,"'.__("Version","wp-download_monitor").' ", ""} '.__("downloaded","wp-download_monitor").' {hits} '.__("times","wp-download_monitor").'" &gt;{title} ({hits})&lt;/a&gt;';</pre>
]]></content:encoded>
			<wfw:commentRss>http://microbits.info/index.php/2009/07/download-monitor-bug-fix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Cache on Win32 (IIS)</title>
		<link>http://microbits.info/index.php/2009/07/wp-cache-on-win32-iis</link>
		<comments>http://microbits.info/index.php/2009/07/wp-cache-on-win32-iis#comments</comments>
		<pubDate>Thu, 30 Jul 2009 03:51:55 +0000</pubDate>
		<dc:creator>recon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://microbits.info/?p=27</guid>
		<description><![CDATA[After noticing that my blog didn&#8217;t load as fast as I&#8217;d like, I installed WP-Cache. Once I installed it, I went to it&#8217;s settings page, to be greeted with a page that said &#8220;Main settings&#8221; and nothing else. Figuring file permissions were messed up, I started looking around. After finding that wp-content and wp-config.php were [...]]]></description>
			<content:encoded><![CDATA[<p>After noticing that my blog didn&#8217;t load as fast as I&#8217;d like, I installed <a href="http://wordpress.org/extend/plugins/wp-cache/" target="_blank">WP-Cache</a>.</p>
<p>Once I installed it, I went to it&#8217;s settings page, to be greeted with a page that said &#8220;Main settings&#8221; and nothing else.</p>
<p>Figuring file permissions were messed up, I started looking around. After finding that wp-content and wp-config.php were supposed to be writable, I took care of it, and I still had the same problem.</p>
<p>After looking around on the web, I found that if run on Windows, a few special steps were required.</p>
<p>With WP-Cache 2.1.2, the following steps worked for me (the original steps can be found <a href="http://www.unsoughtinput.com/index.php/2006/10/24/wordpress-tutorial-using-wp-cache-on-windows-iis/" target="_blank">here</a>).</p>
<ol>
<li>wp-config.php and wp-content should be writable by your web server</li>
<li>Copy wp-content/plugins/wp-cache/wp-cache-phase1.php to wp-content/advanced-cache.php</li>
<li>Replace wp-content/plugins/wp-cache/wp-cache.php with <a class="downloadlink" href="http://microbits.info/wp-content/plugins/download-monitor/download.php?id=1" title="Version2.1.2 downloaded 248 times" >wp-cache.php (248)</a></li>
</ol>
<p>In the referenced version, I performed the edits indicated <a href="http://www.unsoughtinput.com/index.php/2006/10/24/wordpress-tutorial-using-wp-cache-on-windows-iis/" target="_blank">here</a>. It seems like the ob_end_clean() issue was fixed in the latest release of WP-Cache.</p>
]]></content:encoded>
			<wfw:commentRss>http://microbits.info/index.php/2009/07/wp-cache-on-win32-iis/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Best in open source?</title>
		<link>http://microbits.info/index.php/2009/07/wordpress-best-in-open-source</link>
		<comments>http://microbits.info/index.php/2009/07/wordpress-best-in-open-source#comments</comments>
		<pubDate>Tue, 28 Jul 2009 21:14:56 +0000</pubDate>
		<dc:creator>recon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://microbits.info/?p=3</guid>
		<description><![CDATA[If any of you have used OS web applications, you know that setup and configuration can sometimes trigger extended hair removal sessions (read pull hair out). WordPress is the exact opposite. Installation took, as their readme said, five minutes. I could&#8217;ve stopped there, and started blogging right away. After installing a theme, a gallery plugin, [...]]]></description>
			<content:encoded><![CDATA[<p>If any of you have used OS web applications, you know that setup and configuration can sometimes trigger extended hair removal sessions (read pull hair out).</p>
<p>WordPress is the exact opposite. Installation took, as their readme said, five minutes. I could&#8217;ve stopped there, and started blogging right away.</p>
<p>After installing a theme, a gallery plugin, and changing some configuration items, the blog is ready to go. I&#8217;ve probably spent an hour tweaking the blog since I installed it.That&#8217;s nothing compared to what I&#8217;ve had to do with other web apps in the past.</p>
<p>The interface for WP&#8217;s admin backend is pretty impressive, and everything seems to &#8220;just work&#8221;.</p>
<p>That&#8217;s all for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://microbits.info/index.php/2009/07/wordpress-best-in-open-source/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.870 seconds -->

