<?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>EM</title>
	<atom:link href="http://www.ericm.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericm.ca</link>
	<description>Web development simplified</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:44:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Facebook&#8217;s Like Button and integration with phpBB</title>
		<link>http://www.ericm.ca/2010/09/02/facebooks-like-button-and-integration-with-phpbb/</link>
		<comments>http://www.ericm.ca/2010/09/02/facebooks-like-button-and-integration-with-phpbb/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 07:24:05 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[configurator]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Like Button]]></category>
		<category><![CDATA[phpBB]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=339</guid>
		<description><![CDATA[Just a few months earlier, Facebook released their new Like Button which is popping up on most popular websites and forums. Implementing this button with phpBB forums isn&#8217;t as simple as grabbing the code generated from Facebook&#8217;s configurator. That is, if you want it to work properly with the dynamic pages of your forum. The [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F09%2F02%2Ffacebooks-like-button-and-integration-with-phpbb%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F09%2F02%2Ffacebooks-like-button-and-integration-with-phpbb%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Just a few months earlier, Facebook released their new <strong class="location">Like Button</strong> which is popping up on most popular websites and forums. Implementing this button with phpBB forums isn&#8217;t as simple as grabbing the code generated from Facebook&#8217;s <a href="http://developers.facebook.com/docs/reference/plugins/like">configurator</a>. That is, if you want it to work properly with the dynamic pages of your forum.<a href="http://www.ericm.ca/files/2010/09/facebook_like_button.png"><img class="aligncenter size-full wp-image-340" title="Facebook Like Button" src="http://www.ericm.ca/files/2010/09/facebook_like_button.png" alt="" width="271" height="33" /></a></p>
<p>The configurator generates two sets of code for you to choose from, Iframe and XFBML, both of which will link to the static URL you provide. Most people want it to link to dynamic pages, specifically, the phpBB thread that is being Liked. Two things must be done to accomplish this: modifying the code provided by the configurator, and configuring phpBB to allow the Facebook bot access to your forum. (Full credit goes to <a href="http://www.phpbb.com/community/viewtopic.php?f=72&amp;t=2074905&amp;hilit=facebook+like">this</a> phpBB thread for providing guidance.)</p>
<h1>Modifying the Iframe code</h1>
<blockquote><p>&lt;iframe src=&#8221;http://www.facebook.com/plugins/like.php?href=http%3A%2F%2F<strong>www.yourwebsite.com</strong>%2Fviewtopic.php%3Ff%3D{S_FORUM_ID}%26t%3D{S_TOPIC_ID}&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;colorscheme=light&#8221; scrolling=&#8221;no&#8221; frameborder=&#8221;0&#8243; allowTransparency=&#8221;true&#8221; style=&#8221;border:none; overflow:hidden; width:450px; <strong>height:30px</strong>&#8220;&gt;&lt;/iframe&gt;</p></blockquote>
<p>I highlighted two important parts of the above code:</p>
<ol>
<li><strong>www.yourwebsite.com</strong> &#8211; replace this with your own URL. This also assumes you installed phpBB in the root directory. If you happened to have installed phpBB in a folder, you will need to replace the URL with: www.yourwebsite.com<strong>%2F</strong>folder</li>
<li><strong>height:30px</strong> &#8211; By default, the configurator sets it to 80 which is much too large. I found 30px to be the perfect height but you may play around with this number. You may also set the width, which appears twice in the above code, to whatever you feel works best for you (450 is the default)</li>
</ol>
<h1>Inserting Facebook Like Button into phpBB</h1>
<p>The above code should be pasted into <strong class="location">viewtopic_b</strong><strong class="location">ody.html</strong>. Where in that template should the code belong?<a href="http://www.ericm.ca/files/2010/09/facebook_like_button_example.png"><img class="aligncenter size-full wp-image-341" title="Facebook Like Button in phpBB forum" src="http://www.ericm.ca/files/2010/09/facebook_like_button_example.png" alt="" width="381" height="77" /></a></p>
<p>Personally, I wanted the Like Button to appear right next to the Post Reply button as this would give it the biggest exposure. Here&#8217;s how:</p>
<blockquote><p><strong>Find:</strong></p>
<p>&lt;div class=&#8221;topic actions&#8221;&gt;</p>
<p>&lt;div class=&#8221;buttons&#8221;&gt;</p>
<p><strong>Paste below:</strong></p>
<p>The Iframe code modified above.</p></blockquote>
<h1>Adding a new phpBB bot and configuring bot permissions</h1>
<p>The final step will ensure that Facebook has the required permissions to pull your thread titles correctly.</p>
<p>In phpBB, login to the <strong class="location">Administration Control Panel</strong>. Under <strong class="location">Quick Access</strong>, select <strong class="location">Spiders/Robots</strong> and then <strong class="location">Add bot</strong>.</p>
<p>Use the following settings:</p>
<ul>
<li>Bot name: FaceBook [Linkcheck]</li>
<li>Agent match: facebookexternalhit/1.1</li>
</ul>
<p>All other settings not mentioned can be left default or blank.</p>
<p>Now, you need to ensure that this new bot has access to your forums. Still in the Administration Control Panel, click on the <strong class="location">User and Groups</strong> tab. Under <strong class="location">Groups</strong>, click on <strong class="location">Groups&#8217; forum permissions</strong>. Select <strong class="location">Bots</strong> from the drop-down menu and hit submit. At this point you should select the appropriate forum sections (<strong class="location">All forums</strong> would work) and hit submit. Here, ensure that you assign the <strong class="location">Bot access</strong> role for each forum section and click <strong class="location">Apply all permissions</strong>.</p>
<p>At this point, the Facebook Like Button should be configured correctly for the dynamic pages of your phpBB forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/09/02/facebooks-like-button-and-integration-with-phpbb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Thunderbird addons, alert capabilities and global (unified) inbox</title>
		<link>http://www.ericm.ca/2010/09/01/mozilla-thunderbird-alert-capabilities-and-unified-inbox/</link>
		<comments>http://www.ericm.ca/2010/09/01/mozilla-thunderbird-alert-capabilities-and-unified-inbox/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 11:39:51 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[alerts]]></category>
		<category><![CDATA[Google Calendar]]></category>
		<category><![CDATA[Microsoft Office Outlook 2007]]></category>
		<category><![CDATA[Mozilla Thunderbird]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=327</guid>
		<description><![CDATA[I had been using Microsoft Office Outlook 2007 for almost a year now because it handles 2 things of which I peruse daily: E-mail. I have nearly a dozen e-mail accounts (and growing) that I need to keep track of and individual logins is a hassle, not to mention a thing of the past Calendar. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F09%2F01%2Fmozilla-thunderbird-alert-capabilities-and-unified-inbox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F09%2F01%2Fmozilla-thunderbird-alert-capabilities-and-unified-inbox%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I had been using Microsoft Office Outlook 2007 for almost a year now because it handles 2 things of which I peruse daily:</p>
<ol>
<li><em>E-mail</em>. I have nearly a dozen e-mail accounts (and growing) that I need to keep track of and individual logins is a hassle, not to mention a thing of the past</li>
<li><em>Calendar</em>. I like to schedule everything and I mean everything. More as a personal journal/log of my life than as a reminder of what&#8217;s to come. It also synced well with my smartphone which I then synced to Google Calendar for backup purposes</li>
</ol>
<h1>Stealing Outlook&#8217;s thunder</h1>
<p>Yesterday, I made the switch to Mozilla Thunderbird. It lacks the calendar feature, but I found myself using Outlook more for its calendar than its email. And I find myself preferring Google Calendar over Outlook&#8217;s. It also didn&#8217;t load as fast as I would have liked and seemed to hog a lot of system resources, so all reasons went against Outlook.</p>
<h3>Free is better</h3>
<p>It seems like I&#8217;m becoming a huge fan of free (i.e. Google Calendar) and open source (i.e. WordPress, Thunderbird) programs, not only because it is cost-effective but, to put it bluntly, better.</p>
<h1>Thoughts on Thunderbird</h1>
<p>Thunderbird loads extremely fast and comes with a lot of great features standard. Setting up e-mail accounts can be as easy as typing in your e-mail and password into the wizard, especially if you&#8217;re using an e-mail from a major provider like Gmail. I did have to use the manual setup for several of my e-mails to ensure that I was using the proper server name, port, and security settings.</p>
<p>It doesn&#8217;t look as visually-pleasing as Outlook, but great things don&#8217;t need to come in great packages.</p>
<h1>Thunderbird alerts</h1>
<p>Initially, I was disappointed about the fact that if you turn on sound alerts for new e-mails, it applies to all your e-mail accounts. Of course, I was being picky at this point as even Outlook didn&#8217;t allow for this option.</p>
<p>But shortly afterward, I recalled that this isn&#8217;t Microsoft, it&#8217;s Mozilla and like its popular Firefox internet browser, it allows for <em>addons </em>- utilities programmed by ordinary users that can extend a program in limitless ways. I was positive that there was at least one person who programmed my need. And I was right. More importantly, I found additional addons that proved just as useful.</p>
<p>Here are the 3 alert-related addons I installed for Thunderbird:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/2610/"><strong>Mailbox Alert</strong></a> &#8211; This allows you to pick and choose which e-mail accounts you wish to attach sound and/or message alerts. Remember to disable Thunderbird&#8217;s own sound alerts if you use this addon. Personally, I only use this addon&#8217;s sound alert feature and prefer Thunderbird&#8217;s own message alerts which display useful information unique to each e-mail (i.e. subject). The addon can only display a pre-set message of your choice.</li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/191033/"><strong>New Mail Attention</strong></a> &#8211; Thunderbird, apart from its message/sound alerts, does not give you any indication of new e-mails if you have the program minimized. This addon will cause Thunderbird to flash in Window&#8217;s Taskbar, similar to receiving messages from just about any instant messenger.</li>
<li><a href="https://addons.mozilla.org/en-US/thunderbird/addon/5602/"><strong>Blinking Alert</strong></a> &#8211; Thunderbird&#8217;s message alerts can be subtle, especially if you don&#8217;t disable auto-hide. This addon will make message alerts blink with your choice of a variety of colors and at the frequency you choose</li>
</ul>
<h3>An idea: alert for specific queries</h3>
<p>Here is my idea for an alert-related addon, one that I could not find in the <a href="https://addons.mozilla.org/en-US/thunderbird/search/?q=alert&amp;cat=all&amp;lver=any&amp;pid=1&amp;sort=&amp;pp=20&amp;lup=&amp;advanced=">database</a>: a Thunderbird alert that sounds/displays when certain keywords appear in the to, from and subject fields, and message body. Perhaps even attached documents if possible.</p>
<h1>Unified folders (inbox)</h1>
<p>Apparently, there was something called a &#8216;Smart inbox&#8217; that would display e-mails from the accounts of your choice in a single folder. From a quick Google search, I found that this option was no longer possible with IMAP but only POP in newer versions of Thunderbird which is unfortunate. IMAP is superior.</p>
<p>However, there is a nice workaround: <strong class="location">View &gt; Folders &gt; Unified</strong>. You will still be able to view your e-mails in their own individual folders, but this will also create a &#8216;Global inbox&#8217; named Inbox that aggregates all your e-mails into a single folder. No choosing from which accounts though.</p>
<p>In the message body of this Inbox folder, I like to enable the viewing of an additional column called Account. This allows me to determine which account the e-mail was originally sent to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/09/01/mozilla-thunderbird-alert-capabilities-and-unified-inbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress: Manually configure a Key Master role</title>
		<link>http://www.ericm.ca/2010/05/31/bbpress-manually-configure-a-key-master-role/</link>
		<comments>http://www.ericm.ca/2010/05/31/bbpress-manually-configure-a-key-master-role/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 06:11:41 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[user roles]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=301</guid>
		<description><![CDATA[If at any time your account reverts back to a regular member account (effectively locking you out of the admin control panel), don&#8217;t fret! You can manually configure it back to a Key Master role in phpMyAdmin: Look-up your user_ID in your user table (bb_users or wp_users*) Search for this ID in the umeta_id column [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F31%2Fbbpress-manually-configure-a-key-master-role%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F31%2Fbbpress-manually-configure-a-key-master-role%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If at any time your account reverts back to a regular member account (effectively locking you out of the admin control panel), don&#8217;t fret! You can manually configure it back to a <strong>Key Master role</strong> in phpMyAdmin:</p>
<ol>
<li>Look-up your <strong>user_ID</strong> in your user table (bb_users or wp_users*)</li>
<li>Search for this ID in the <strong>umeta_id</strong> column of the usermeta table (bb_usermeta or wp_usermeta*)</li>
<li>Set the <strong>meta_value</strong> to <strong class="code">a:1:{s:9:&#8221;keymaster&#8221;;b:1;}</strong></li>
</ol>
<p>*I included the wp_ tables in case you were using the <a href="http://www.ericm.ca/2010/articles/vbulletin-4-to-bbpress-and-wordpress-integration">WordPress user tables</a> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/31/bbpress-manually-configure-a-key-master-role/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin 4 to bbPress (and WordPress integration)</title>
		<link>http://www.ericm.ca/2010/05/31/vbulletin-4-to-bbpress-and-wordpress-integration/</link>
		<comments>http://www.ericm.ca/2010/05/31/vbulletin-4-to-bbpress-and-wordpress-integration/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 02:39:36 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[forum conversion]]></category>
		<category><![CDATA[phpBB 3]]></category>
		<category><![CDATA[user integration]]></category>
		<category><![CDATA[vBulletin 4]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=274</guid>
		<description><![CDATA[I will be going through the steps on how I achieved the following: Convert vBulletin 4 to bbPress (specifically, I converted from vBulletin 4.0.1 to bbPress 1.0.2) Integrate WordPress with bbPress to share the same users table Make the WordPress database contain the central user database (optional) Preamble I decided to test out bbPress using [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F31%2Fvbulletin-4-to-bbpress-and-wordpress-integration%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F31%2Fvbulletin-4-to-bbpress-and-wordpress-integration%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.ericm.ca/wp-content/uploads/2010/05/bbpress.png"><img class="alignnone size-full wp-image-289" title="bbPress" src="http://www.ericm.ca/wp-content/uploads/2010/05/bbpress.png" alt="" width="230" height="82" /></a></p>
<p>I will be going through the steps on how I achieved the following:</p>
<ol>
<li><strong>Convert vBulletin 4 to bbPress</strong> (specifically, I converted from vBulletin 4.0.1 to bbPress 1.0.2)</li>
<li><strong>Integrate WordPress with bbPress to share the same users table</strong></li>
<li><strong>Make the WordPress database contain the central user database</strong> (optional)</li>
</ol>
<h1>Preamble</h1>
<p>I decided to test out bbPress using my <strong>existing </strong>vBulletin 4 installation. This is rather tricky due to the lack of converters out there; as of this post, there are no direct converters from vBulletin 4 to bbPress. I also wanted to integrate (share the user database) between bbPress and WordPress. This allows a user  to sign up only once to access both your WordPress and bbPress installations.</p>
<p>In my case, I wanted WordPress to contain the central user database table. This meant that my bbPress forum would  connect to the WordPress user table. Why? Merely a personal preference. This takes a little more work (then simply using bbPress&#8217; user table) and has its limitations.</p>
<p>I will explain all of this in detail below.</p>
<h1>Initial thoughts on bbPress</h1>
<p>To be blunt bbPress&#8217; basic, out-of-the-box features are primitive compared to all the major forums I&#8217;ve used &#8211; myBB, phpBB, vBulletin, and Invision. bbPress is a forum stripped down to its core &#8211; it doesn&#8217;t even come with basic viewing permissions (yet). It is a massive downgrade from vBulletin 4. If you&#8217;re like me, you <em>will </em>get a lot of headaches downgrading to bbPress.</p>
<p>However, we must keep in mind that bbPress is still in its infancy. When I mentioned that bbPress was primitive, I don&#8217;t really mean that in a negative way. The developers are taking the correct approach in creating a solid core before moving on to the bells and whistles. Look at where WordPress is today. Its userbase is incredibly large and supportive, and I don&#8217;t doubt that hundreds of quality plugins will be available for bbPress as well.</p>
<h1>The limitations of converting</h1>
<p>Converting from vBulletin 4 to bbPress isn&#8217;t without its speed bumps. Since there&#8217;s no official converter, it will not go as smoothly as one would hope.</p>
<p>The only solution (as of this blog entry), is to convert vBulletin 4 to phpBB3. Then from phpBB3 to bbPress. What happens along the way?</p>
<ul>
<li>All your members will default to either the member or administrator role. This means groups like moderators will become ordinary members and you&#8217;ll need to reassign their role</li>
<li>Passwords won&#8217;t work. All members will need to reset their password (by having them click the reset password link in bbPress to have a randomly-generated password sent to their e-mail accounts)</li>
<li>Certain features like attachments may not transfer over (bbPress is no where near as feature-rich as vBulletin 4 and therefore won&#8217;t be able to retain <em>everything</em>)</li>
</ul>
<p>If you&#8217;re fine with the above and mainly want to transfer your posts and members, then keep on reading!</p>
<h1>Converting vBulletin 4 to bbPress</h1>
<p>As mentioned above, you will first need to convert vBulletin 4 to phpBB3.</p>
<h3>Step 1: Install phpBB 3</h3>
<p>Install a fresh copy of phpBB 3 in the <em>same domain </em>as your vBulletin 4 forum. For example, if your vBulletin is located at www.yoursite.com/forums, then phpBB must be also located at www.yoursite.com.</p>
<p>However, you may install phpBB3 to a different mySQL database. <strong>I recommend that you select a database where you want bbPress to be installed</strong> (you will see why in step 3).</p>
<p>The official phpBB download page can be found <a href="http://www.phpbb.com/downloads/olympus.php?from=submenu">here</a>.</p>
<h3>Step 2: Download the vBulletin 3 to phpBB 3 converter</h3>
<p>That is correct, the vBulletin <strong>3</strong> (not 4!) converter as that&#8217;s the latest version out there. You can download it <a href="http://www.phpbb.com/community/viewtopic.php?f=65&amp;t=1722325">here</a>.</p>
<p>After you have downloaded the .zip file, simply upload the 2 folders to your phpBB directory.</p>
<p><strong>Do not run the convert yet as you will run into errors. </strong>The fix can be found in the modified <strong class="location">convert_vb30.php</strong> file which can be find <a href="http://www.phpbb.com/community/download/file.php?id=116915">here</a> (thanks for the fix <em>excelcoder</em>!) Be sure you rename that file before uploading it!</p>
<p>Proceed to run the converter. Instructions can be found at the official phpBB forum <a href="http://www.phpbb.com/community/viewtopic.php?f=65&amp;t=1213555">here</a>. Basically, you will need to provide certain information such as where your current vBulletin folder is located and the database information.</p>
<p>Your conversion should go smoothly. <strong>The converter will probably tell you that the search index hasn&#8217;t been built yet. </strong>Don&#8217;t worry about this; when you convert to bbPress later, search will work. <strong>You may notice that viewing permissions aren&#8217;t functioning properly, for example, hidden forums are visible to all regular members.</strong> Don&#8217;t bother to tinker around in phpBB&#8217;s admin control panel to fix the permissions. When you convert from phpBB 3 to bbPress, you&#8217;ll just run into the same problem.</p>
<p>As long as all your posts are present and displaying properly, and all the members are transferred, proceed to the next step.</p>
<h3>Step 3: Download the phpBB3 to bbPress converter</h3>
<p>Instructions on running this converter and the download link can be found in the bbPress support forum <a href="http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release">here</a> (thanks wmnasef!) I&#8217;ll summarize the steps here:</p>
<ol>
<li><a href="http://bbpress.org/download/">Download</a> and install bbPress. bbPress can be installed <em>anywhere</em> including a different domain. <strong>Use the database I mentioned in step 1! </strong>(Reason: the converter requires the phpBB forum to be installed in the same database as bbPress in order to run.)</li>
<li><a href="http://members.lycos.co.uk/wmnkhayal/files/phpbb3tobbpress%20converter.tar.gz">Download</a> the converter</li>
<li>Upload <strong class="location">phpbb3tobbpress.php</strong> into your phpBB3 directory</li>
<li>Upload <strong class="location">_phpbb3_pass.php</strong> into the bb-plugins directory</li>
<li>Run the <strong class="location">phpbb3tobbpress.php</strong>, for example, <strong class="location">http://www.yourforum.com/phpbb3/phpbb3tobbpress.php</strong></li>
</ol>
<p>Everything should convert smoothly. At this point, you&#8217;re probably looking at the admin panel and banging your head against your desk thinking &#8211; where are the bloody features?! Well, since you&#8217;re already there, be sure to set the appropriate members to the moderator role, etc.</p>
<h1>WordPress Integration</h1>
<p>WordPress integration allows both your bbPress forum and WordPress blog to share the same user database table. If you&#8217;re using the default prefixes, then the bbPress user table is named <strong class="location">bb_users,</strong> and <strong class="location">wp_users</strong> for WordPress.</p>
<p>If you followed my<strong> Converting vBulletin 4 to bbPress guide</strong> above, then all your users are currently residing in <strong>bb_users</strong>.</p>
<p>In the following, I will go through the steps for integrating bbPress with WordPress, regardless of whether you choose bb_users or wp_users as your main user table.</p>
<h3>Step 1: Login to your bbPress</h3>
<p>Once logged in, click on the Admin link. Click on the <strong>WordPress Integration tool</strong> (<strong>Settings &gt; WordPress Integration</strong>).</p>
<h3>Step 2: Set User Role Map</h3>
<p>For WordPress administrators, the bbPress role would be <strong>bbPress Key Master</strong>. Everybody else should be set to<strong> bbPress Member</strong>. Click <em>Save Changes</em> and return to the same page.</p>
<h3>Step 3: User Integration &gt; Cookies (part 1 &#8211; the form)</h3>
<p>Farther down the page, you should see an area named <strong>Cookies</strong>. Cookies allow users to login at your WordPress blog without having to login a second time at your bbPress forums, and vice versa.</p>
<p>I&#8217;ll divide cookie setup into 3 separate steps to make things easier.</p>
<p>The first part with the form contains instructions that are relatively straightforward and involve minor copy-and-pasting.</p>
<h3>Step 4: User Integration &gt; Cookies (part 2 &#8211; the plugin)</h3>
<p>Near the bottom, it will ask you to install a bbPress plugin for WordPress. The easiest way to do so is in the admin area of your WordPress and clicking <strong class="location">Plugins &gt; Add New</strong>. Simply search for <strong>bbPress Integration</strong> and install it. What this plugin does is give you a simple piece of code to add to the config file for WordPress (<strong class="location">wp-config.php</strong>). Save the file, but don&#8217;t close it yet!</p>
<h3>Step 5: User Integration &gt; Cookies (part 3 &#8211; the config files)</h3>
<p>This is the final step for setting up cookies. It involves additional edits that you need to apply to <strong>wp-config.php</strong> and bbPress&#8217; config file (<strong>bb-config.php</strong>).</p>
<p>First, access these <a href="https://api.wordpress.org/secret-key/1.1/">randomly-generated constants</a>. Find the related code in <strong>wp-config.php</strong> and paste the constants into it. Do the same for <strong>bb-config.php</strong>.</p>
<h3>Step 6: User Integration &gt; User Database</h3>
<p>Step 2 is critical before you can perform this next step so make sure user roles have been mapped.</p>
<p>Note: the following assumes that you are using the default prefixes: <strong>bb_</strong> for bbPress and <strong>wp_</strong> for WordPress. If not, substitute the following instructions with your own prefixes.</p>
<p><strong>The table prefix you select may depend on 4 different scenarios:</strong></p>
<ol>
<li>Both your WordPress and bbPress have no registered members except for yourself. <strong>Either bb_ or wp_ will work depending on your personal preferences.<br />
</strong></li>
<li>WordPress contains all your users. <strong>Use wp_.</strong></li>
<li>bbPress contains all your users. <strong>Use bb_</strong>.</li>
<li>bbPress contains all your users<em> but you want to use the user table in WordPress</em>. <strong>Use wp_ and do step 7.<br />
</strong></li>
</ol>
<p>If you chose scenario 4, hit <em>Save Changes</em>, and move on to step 7.</p>
<p>Otherwise, you&#8217;re basically done! Just fill out the advanced database settings if your WordPress is installed on a different database than bbPress. Hit <em>Save Changes</em> and skip the rest of this guide.</p>
<h3>Step 7: Renaming users and usermeta tables</h3>
<p>This step is required for scenario 4 (as outlined in step 6) because if you set the table prefix to wp_ and do nothing else, the threads and posts in bbPress will no longer be linked to the original user from the bbPress user table. That&#8217;s because at this point, bbPress is accessing all posts/threads in the bbPress database while attempting to access the users from the WordPress database.</p>
<p>For this step, you&#8217;ll need access to <strong>phpMyAdmin</strong>.</p>
<p><strong>If bbPress and WordPress are installed on the same database</strong>, you can execute a simple SQL query such as:</p>
<blockquote><p><strong class="code">RENAME TABLE wp_usermeta TO wp_usermeta_ignore;</strong></p>
<p><strong class="code">RENAME TABLE wp_users TO wp_users_ignore;</strong></p>
<p><strong class="code">RENAME TABLE bb_usermeta TO wp_usermeta;</strong></p>
<p><strong class="code">RENAME TABLE bb_users TO wp_users;</strong></p></blockquote>
<p>This basically swaps the user tables (and their related usermeta data) by renaming the tables. The bbPress user and usermeta tables basically replace the WordPress counterparts (the code simply renames the original tables instead of deleting them).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/31/vbulletin-4-to-bbpress-and-wordpress-integration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ads becoming commonplace in creative communities</title>
		<link>http://www.ericm.ca/2010/05/28/ads-becoming-commonplace-in-creative-communities/</link>
		<comments>http://www.ericm.ca/2010/05/28/ads-becoming-commonplace-in-creative-communities/#comments</comments>
		<pubDate>Sat, 29 May 2010 04:26:17 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[advertisements]]></category>
		<category><![CDATA[Fusion Ads]]></category>
		<category><![CDATA[The DECK]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=267</guid>
		<description><![CDATA[It&#8217;s rare to see advertisements on a company&#8217;s website. It does make better sense to attract potential clients instead of directing them away from your website. The creative community appears to be trending the other direction. Newer advertising networks like Fusion Ads and the DECK deliver targeted traffic by displaying advertisements solely on creative and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F28%2Fads-becoming-commonplace-in-creative-communities%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F28%2Fads-becoming-commonplace-in-creative-communities%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s rare to see advertisements on a company&#8217;s website. It does make better sense to attract potential clients instead of directing them away from your website. </p>
<p>The creative community appears to be trending the other direction.</p>
<p>Newer advertising networks like <a href="http://fusionads.net/">Fusion Ads</a> and <a href="http://decknetwork.net/">the DECK</a> deliver targeted traffic by displaying advertisements solely on creative and design websites. </p>
<p>There&#8217;s nothing wrong with this concept. I can see how it would benefit a web development firm or freelance designer greatly. What I find odd is seeing these same individuals using the service to display their competitor&#8217;s ads. Is making a couple of dollars  really worth losing a potential client? </p>
<p>Something worth noting is the companies I linked to above display advertisements on their own site as well. That&#8217;s a first for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/28/ads-becoming-commonplace-in-creative-communities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpBB: Display different content for guests and members</title>
		<link>http://www.ericm.ca/2010/05/19/phpbb-display-different-content-for-guests-and-members/</link>
		<comments>http://www.ericm.ca/2010/05/19/phpbb-display-different-content-for-guests-and-members/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:02:04 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[phpBB]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=253</guid>
		<description><![CDATA[To display different content depending on whether or not a user is logged into your phpBB forums, simply use the following code in your template files: &#60;!&#8211; IF not S_USER_LOGGED_IN &#8211;&#62; Text between these tags will be displayed to guests. &#60;!&#8211; ENDIF &#8211;&#62; &#60;!&#8211; IF not S_IS_BOT and S_USER_LOGGED_IN &#8211;&#62; Text between these tags will [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F19%2Fphpbb-display-different-content-for-guests-and-members%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F19%2Fphpbb-display-different-content-for-guests-and-members%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.ericm.ca/wp-content/uploads/2010/05/PhpBB_Logo1.png" alt="PhpBB_Logo[1]" title="PhpBB_Logo[1]" width="345" height="119" class="aligncenter size-full wp-image-254" /></p>
<p>To display different content depending on whether or not a user is logged into your phpBB forums, simply use the following code in your template files:</p>
<blockquote><p><strong class="code">&lt;!&#8211; IF not S_USER_LOGGED_IN &#8211;&gt;</strong></p>
<p>Text between these tags will be displayed to <strong>guests</strong>.</p>
<p><strong class="code">&lt;!&#8211; ENDIF &#8211;&gt;</p>
<p>&lt;!&#8211; IF not S_IS_BOT and S_USER_LOGGED_IN &#8211;&gt;</strong></p>
<p>Text between these tags will be displayed to <strong>members</strong>.</p>
<p><strong class="code">&lt;!&#8211; ENDIF &#8211;&gt;</strong></p></blockquote>
<p>This piece of code is particularly useful in the <strong class="location">index_body.html</strong> or <strong class="location">overall_header.html</strong> template to entice guests to register at your forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/19/phpbb-display-different-content-for-guests-and-members/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mike Babcock is a prophet</title>
		<link>http://www.ericm.ca/2010/05/18/mike-babcock-is-a-prophet/</link>
		<comments>http://www.ericm.ca/2010/05/18/mike-babcock-is-a-prophet/#comments</comments>
		<pubDate>Tue, 18 May 2010 09:29:25 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Off-topic]]></category>
		<category><![CDATA[2010 playoffs]]></category>
		<category><![CDATA[Detroit Red Wings]]></category>
		<category><![CDATA[hockey]]></category>
		<category><![CDATA[Mike Babcock]]></category>
		<category><![CDATA[NHL]]></category>
		<category><![CDATA[Philidelphia Flyers]]></category>
		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=242</guid>
		<description><![CDATA[Not too long ago, Mike Babcock made a prophecy to the media. He pointed to the two teams that had won a series from a 3-0 deficit &#8211; the 1942 Toronto Maple Leafs and the 1975 New York Islanders &#8211; and suggested that there was a cyclical pattern. TSN recently proved how difficult such a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F18%2Fmike-babcock-is-a-prophet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F18%2Fmike-babcock-is-a-prophet%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://view.picapp.com/pictures.photo/sports/detroit-red-wings-san-jose/image/8743990?term=Detroit+Red+Wings+San+Jose+Game+Five" target="_blank"><img class="alignleft" style="border: 0pt none;" src="http://view4.picapp.com/pictures.photo/image/8743990/detroit-red-wings-san-jose/detroit-red-wings-san-jose.jpg?size=380&amp;AdImageId=12898058&amp;imageId=8743990" border="0" alt="SAN JOSE, CA - MAY 08: Head coach Mike Babcock of the Detroit Red Wings walks off the ice after losing to the San Jose Sharks in Game Five of the Western Conference Semifinals during the 2010 NHL Stanley Cup Playoffs at HP Pavilion on May 8, 2010 in San Jose, California. (Photo by Jed Jacobsohn/Getty Images)" width="213" height="328" /></a>Not too long ago, Mike Babcock made a prophecy to the media. He pointed to the two teams that had won a series from a 3-0 deficit &#8211; the 1942 Toronto Maple Leafs and the 1975 New York Islanders &#8211; and suggested that there was a cyclical pattern.</p>
<p>TSN recently proved how difficult such a feat was for teams across different sports and mentioned it had only happened once in MLB and zip in other leagues. I may have gotten the leagues wrong, but the point of the matter is that it is a rarity. So when Babcock said 2010 was the year, it was astonishing when his prophecy was fulfilled on May 8, 2010. Here&#8217;s his quote:</p>
<blockquote><p>We can talk about the Maple Leafs and the New York Islanders and all that stuff, but that&#8217;s how hard it is to do. Every 33 years or so you got to be due, so I figure it&#8217;s our turn.</p></blockquote>
<p>Too bad he got the team wrong. The Philadelphia Flyers pulled the upset to stun the Bruins instead of his Red Wings over the Sharks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/18/mike-babcock-is-a-prophet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minor blog updates</title>
		<link>http://www.ericm.ca/2010/05/18/minor-blog-updates/</link>
		<comments>http://www.ericm.ca/2010/05/18/minor-blog-updates/#comments</comments>
		<pubDate>Tue, 18 May 2010 08:30:21 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[WiredTree]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=246</guid>
		<description><![CDATA[Made some small changes to the blog. Worth mentioning is the removal of all advertisements and modification to the category names I used in this blog. The latter inadvertently changed all the permalinks as well, but I don&#8217;t think there&#8217;s a need for me to 301 redirect the old links since judging by this blog&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F18%2Fminor-blog-updates%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F05%2F18%2Fminor-blog-updates%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Made some small changes to the blog. Worth mentioning is the removal of all advertisements and modification to the category names I used in this blog. The latter inadvertently changed all the permalinks as well, but I don&#8217;t think there&#8217;s a need for me to 301 redirect the old links since judging by this blog&#8217;s traffic, any loss is probably negligible.</p>
<p><img src="http://www.ericm.ca/files/2010/05/wiredtree1.gif" alt="wiredtree[1]" width="275" height="65" class="alignleft size-full wp-image-262" /></p>
<p>I also recently made the switch from MediaTemple&#8217;s grid hosting service to WiredTree&#8217;s managed VPS hosting (specifically, the VPS1024 package). It&#8217;s one of the best purchases I&#8217;ve made online. Fantastic customer service that respond within 15 minutes on average (as opposed to that number in hours) and incredible speeds so far. If you&#8217;re interested in them, feel free to use my <a href="http://www.wiredtree.com/310.html">affiliate link</a>!</p>
<p>Expect more blog posts from me in the upcoming weeks. I know I say this every year, but consistency is now a priority of mine. The blog is due for a major custom makeover so expect that too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/05/18/minor-blog-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9.1 HTTP error</title>
		<link>http://www.ericm.ca/2010/01/21/wordpress-2-9-1-http-error/</link>
		<comments>http://www.ericm.ca/2010/01/21/wordpress-2-9-1-http-error/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:56:25 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ericm.ca/?p=216</guid>
		<description><![CDATA[After upgrading to WordPress 2.9.1, I encountered a problem when using the media file uploader. Any attempts to upload an image would return an HTTP error: There are many solutions out there, but unfortunately none of the ones listed worked for me. I did find a very simple fix however. HTTP error fix The answer [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F01%2F21%2Fwordpress-2-9-1-http-error%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2010%2F01%2F21%2Fwordpress-2-9-1-http-error%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>After upgrading to WordPress 2.9.1, I encountered a problem when using the <strong>media file uploader</strong>. Any attempts to upload an image would return an <strong>HTTP error</strong>:</p>
<div id="attachment_220" class="wp-caption aligncenter" style="width: 682px"><img class="size-full wp-image-220" src="http://www.ericm.ca/files/2010/01/http_error1.png" alt="WordPress Media File uploader" width="672" height="306" /><p class="wp-caption-text">WordPress Media File uploader</p></div>
<p>There are <a href="http://wordpress.org/support/topic/293853?replies=17">many solutions</a> out there, but unfortunately none of the ones listed worked for me. I did find a very simple fix however.</p>
<h2>HTTP error fix</h2>
<p>The answer was right in front of me! Specifically, in the uploader popup window:</p>
<blockquote><p>You are using the Flash uploader. Problems? Try the <strong>Browser uploader</strong> instead.</p></blockquote>
<p>The Browser Uploader worked perfectly fine for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2010/01/21/wordpress-2-9-1-http-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A solution to Blogger&#8217;s Search Box gadget not working</title>
		<link>http://www.ericm.ca/2009/10/21/bloggers-search-box-gadget-not-working/</link>
		<comments>http://www.ericm.ca/2009/10/21/bloggers-search-box-gadget-not-working/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 06:00:02 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://ericm.ca/?p=168</guid>
		<description><![CDATA[Update: It has been brought to my attention the following solution is buggy and may not return full results. I will update this post when a working solution is found. There is currently a problem with Blogger&#8217;s Search Box gadget. For many users, searching with this widget will return No Results even though the search [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ericm.ca%2F2009%2F10%2F21%2Fbloggers-search-box-gadget-not-working%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.ericm.ca%2F2009%2F10%2F21%2Fbloggers-search-box-gadget-not-working%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Update: It has been brought to my attention the following solution is buggy and may not return full results. I will update this post when a working solution is found.</strong></p>
<p>There is currently a problem with <a href="http://www.blogger.com">Blogger&#8217;s</a> <strong>Search Box gadget</strong>. For many users, searching with this widget will return <em>No Results</em> even though the search terms are present in the blog posts.</p>
<p><img src="http://ericm.ca/wp-content/uploads/2009/10/blogger_search_box_gadget.png" alt="blogger_search_box_gadget" width="370" height="81" class="aligncenter size-full wp-image-178" /></p>
<p>This Search Box widget is useful for several reasons. The main reason is that many users would like to place the search box in other areas of their blog. Some people have also disabled the <strong>Blogger Navbar</strong> which contains a <em>working </em>search box, perhaps because it appears on top of the entire blog and may pose as a design issue for some. </p>
<p>Here is my <strong>very simple solution if Blogger&#8217;s search function is not working</strong> for you.</p>
<h1>The Navbar&#8217;s search</h1>
<p>If you do a search via Blogger&#8217;s Navbar, you may notice the <strong>search results URL</strong> will look like this:</p>
<blockquote><p>http://www.website.com/search?q=searchterm</p></blockquote>
<p>My solution will return return the same URL and thus the same results as though you are searching via the Navbar. I actually have no idea how this works, perhaps someone can enlighten me with a comment below.</p>
<p>Here&#8217;s the solution:</p>
<h2>Create a Blogger search widget</h2>
<p>Login to your Blogger account and head over to <strong class="location">Layout > Page Elements</strong>. Click on <strong class="location">Add a Gadget</strong> at the bottom of the page and select <strong class="location">HTML/Javascript</strong>.</p>
<p>In the <strong class="location">Title</strong> field, enter Search or something similar. In <strong class="location">Content</strong>, paste the following code:</p>
<blockquote><p><strong class="code"><code>&lt;form action="search" name="input" method="get"&gt;<br />
&lt;input value="Search" name="q" size="20" type="text"/&gt;<br />
&lt;input value="Go!" type="submit"/&gt;<br />
&lt;/form&gt;</code></strong></p></blockquote>
<p>Hit <strong class="location">Save</strong> and position the widget in the desired location. That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ericm.ca/2009/10/21/bloggers-search-box-gadget-not-working/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
