<?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>kmsm</title>
	<atom:link href="http://kmsm.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmsm.ca</link>
	<description>kmsm is a Toronto-based creative agency.</description>
	<lastBuildDate>Thu, 07 Feb 2013 16:56:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Eric Hoskins Microsite</title>
		<link>http://kmsm.ca/2013/eric-hoskins-leadership-campaign-microsite/</link>
		<comments>http://kmsm.ca/2013/eric-hoskins-leadership-campaign-microsite/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 16:56:01 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644388000</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2013/eric-hoskins-leadership-campaign-microsite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Varsity</title>
		<link>http://kmsm.ca/2012/the-varsity/</link>
		<comments>http://kmsm.ca/2012/the-varsity/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 14:01:28 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387990</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2012/the-varsity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to stop post duplication when using multiple WP_Query() requests</title>
		<link>http://kmsm.ca/2012/how-to-stop-post-duplication-when-using-multiple-wp_query-requests/</link>
		<comments>http://kmsm.ca/2012/how-to-stop-post-duplication-when-using-multiple-wp_query-requests/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 23:33:14 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387983</guid>
		<description><![CDATA[On my site SalaciousSound I have two selections of articles: five &#8216;featured&#8217; posts which appear at the top of my index, above the fold, and ten more of my most recent articles. I wanted to exclude the featured articles from appearing in the regular articles section, and I did so by using the WP_Query() parameter [...]]]></description>
				<content:encoded><![CDATA[<p>On my site <a href="http://salacioussound.com">SalaciousSound</a> I have two selections of articles: five &#8216;featured&#8217; posts which appear at the top of my index, above the fold, and ten more of my most recent articles. </p>
<p>I wanted to exclude the featured articles from appearing in the regular articles section, and I did so by using the WP_Query() parameter &#8216;post__not_in&#8217;.</p>
<p>The reason for writing this article is that collecting the post IDs from my first WP_Query and passing them to the second was, for me, non-trivial because the five featured articles appear in my header.php file and the ten regular articles appear in index.php.</p>
<p>In order to achieve my desired result I had to set a php variable in my functions.php file, and then declare it as a global variable in my header.php file and index.php file.</p>
<p>Here&#8217;s how the relevant code looks:</p>
<h5>from functions.php</h5>
<pre class="brush: plain; title: ; notranslate">
$featIDs = array();
</pre>
<h5>from header.php</h5>
<pre class="brush: plain; title: ; notranslate">
global $featIDs;
$feats_query = new WP_Query('category_name=Features&amp;posts_per_page=5');
while ($feats_query-&gt;have_posts()) : $feats_query-&gt;the_post();
	array_push($featIDs, $post-&gt;ID);
</pre>
<h5>from index.php</h5>
<pre class="brush: plain; title: ; notranslate">
global $featIDs;
$index_query = new WP_Query(array( 
	'posts_per_page' =&gt; 10, 
	'post__not_in' =&gt; $featIDs
));
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2012/how-to-stop-post-duplication-when-using-multiple-wp_query-requests/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to use WP_Query() with pagination</title>
		<link>http://kmsm.ca/2012/how-to-use-wp_query-with-pagination/</link>
		<comments>http://kmsm.ca/2012/how-to-use-wp_query-with-pagination/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 23:33:03 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387982</guid>
		<description><![CDATA[It turns out using WP_Query() AND paginating your results properly is not entirely straightforward. The WordPress Codex documentation and information on the help forums is also pretty bad. This article explains how to make custom queries using WP_Query() AND still allow for pagination. My use case is: a custom query on my index page which [...]]]></description>
				<content:encoded><![CDATA[<p>It turns out using WP_Query() AND paginating your results properly is not entirely straightforward. The WordPress Codex documentation and information on the help forums is also pretty bad. </p>
<p>This article explains how to make custom queries using WP_Query() AND still allow for pagination. </p>
<p>My use case is: a custom query on my index page which excludes certain posts, and wp_pagenavi for paginating my archives.</p>
<p>I explain in detail why I am using WP_Query() instead of the regular WordPress loop in my next article &#8216;<a href="http://kmsm.ca/2012/how-to-stop-post-duplication-when-using-multiple-wp_query-requests">How to stop post duplication when using multiple WP_Query() requests</a>&#8216;. </p>
<p>In short, WP_Query doesn&#8217;t know what page you&#8217;re on like the regular WordPress loop does &#8211; you need to tell it which page of posts to ask for (and, in addition, how many posts per page you want it to retrieve).</p>
<p>Here&#8217;s the relevant code:</p>
<pre class="brush: plain; title: ; notranslate">
$pagedNum = get_query_var('paged');
$index_query = new WP_Query(
	array( 
		'posts_per_page' =&gt; 10, 
		'paged' =&gt; $pagedNum
	));
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2012/how-to-use-wp_query-with-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add TinyMCE WYSIWYG Editor and HTML Capabilities to WordPress User Bios</title>
		<link>http://kmsm.ca/2011/add-tinymce-wysiwyg-editor-and-html-capabilities-to-wordpress-user-bios/</link>
		<comments>http://kmsm.ca/2011/add-tinymce-wysiwyg-editor-and-html-capabilities-to-wordpress-user-bios/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 14:41:23 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387972</guid>
		<description><![CDATA[I&#8217;m at the end of another project here and as usual I&#8217;ve had to modify the WordPress core slightly to give my client some CMS functionality that vanilla WordPress lacks. Specifically, by default you are not able to add any html to the &#8216;Biographical Info&#8217; field on user profile, much less use the WYSIWYG editor [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m at the end of another project here and as usual I&#8217;ve had to modify the WordPress core slightly to give my client some CMS functionality that vanilla WordPress lacks. Specifically, by default you are not able to add any html to the &#8216;Biographical Info&#8217; field on user profile, much less use the WYSIWYG editor bundled with the post editor on that field &#8211; any html is automatically stripped out when you &#8216;Update Profile&#8217;.</p>
<p>So there are two ways that you can achieve what I wanted to do, and both utilize the functions.php file.</p>
<h5>Strategy One &#8211; just allow for html (no TinyMCE)</h5>
<pre class="brush: plain; title: ; notranslate">remove_filter('pre_user_description','wp_filter_kses');</pre>
<h5>Strategy Two &#8211; add TinyMCE to the User &#8216;Biographical Info&#8217; field</h5>
<p><strong>Use the above code AND the code below</strong></p>
<pre class="brush: plain; title: ; notranslate">
function biographical_info_tinymce() {
	if ( basename($_SERVER['PHP_SELF']) == 'profile.php' || basename($_SERVER['PHP_SELF']) == 'user-edit.php' &amp;&amp; function_exists('wp_tiny_mce') ) {
		wp_admin_css();	
		wp_enqueue_script('utils');
		wp_enqueue_script('editor');
		do_action('admin_print_scripts');
		do_action(&quot;admin_print_styles-post-php&quot;);
		do_action('admin_print_styles');
		remove_all_filters('mce_external_plugins');
 
		add_filter( 'teeny_mce_before_init', create_function( '$a', '
			$a[&quot;theme&quot;] = &quot;advanced&quot;;
			$a[&quot;skin&quot;] = &quot;wp_theme&quot;;
			$a[&quot;height&quot;] = &quot;300&quot;;
			$a[&quot;width&quot;] = &quot;440&quot;;
			$a[&quot;onpageload&quot;] = &quot;&quot;;
			$a[&quot;mode&quot;] = &quot;exact&quot;;
			$a[&quot;elements&quot;] = &quot;description&quot;;
			$a[&quot;theme_advanced_buttons1&quot;] = &quot;formatselect, bold, italic, pastetext, pasteword, bullist, numlist, link, unlink, outdent, indent, charmap, removeformat, spellchecker, fullscreen, wp_help&quot;;
			$a[&quot;theme_advanced_blockformats&quot;] = &quot;p,h2,h3,h4,h5,h6&quot;;
			$a[&quot;theme_advanced_disable&quot;] = &quot;strikethrough,underline,forecolor,justifyfull&quot;;
			return $a;' ) );
 
		wp_tiny_mce( true );
	}
}
add_action('admin_head', 'biographical_info_tinymce');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/add-tinymce-wysiwyg-editor-and-html-capabilities-to-wordpress-user-bios/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WPAudio WordPress Plugin Crashes Safari Browser When Song is Played From Post</title>
		<link>http://kmsm.ca/2011/wpaudio-wordpress-plugin-crashes-safari-browser-when-song-is-played-from-post/</link>
		<comments>http://kmsm.ca/2011/wpaudio-wordpress-plugin-crashes-safari-browser-when-song-is-played-from-post/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 22:39:28 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bug Fix]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpaudio]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387963</guid>
		<description><![CDATA[I encountered a problem on my music blog SalaciousSound today. I use a plugin called wpaudio, which uses javascript and the soundmanager2 library (with flash fallback) to play mp3 audio files. I was finding that, on a particular post, whenever I played an mp3 the browser would crash. The plugin was working fine on all [...]]]></description>
				<content:encoded><![CDATA[<p>I encountered a problem on my music blog <a href="http://salacioussound.com">SalaciousSound</a> today. I use a plugin called wpaudio, which uses javascript and the soundmanager2 library (with flash fallback) to play mp3 audio files. I was finding that, on a particular post, whenever I played an mp3 the browser would crash. The plugin was working fine on all other posts, so I knew that this had something to do with the number of mp3 files on this particular post.</p>
<h3>How to reproduce the crash</h3>
<p>Create a post with more than 20+ mp3s to play, or go to a page (archive for example) where more than 20+ players are present &#8211; it doesn&#8217;t matter if they&#8217;re all inline or each have their own wpaudio markup, you just need more than twenty players. The crash was occurring in Safari. Chrome was working ok. I didn&#8217;t test Firefox or Internet Explorer.</p>
<p>I have a monthly series that I run called the <a href="http://salacioussound.com/category/features/monthly-best-of-the-blogosphere/">Monthly Best of the Blogosphere</a>, wherein I post 25-30 tracks that have been really popular that month. Only on these posts was the browser crash occurring.</p>
<h3>How to fix the crash</h3>
<p>You have to edit the wpaudio.js (or wpaudio.min.js file, depending on what you use &#8211; I use the minified wpaudio.min.js file myself). You have to change two lines of code in this file, and add an additional one. It&#8217;s pretty easy, and if you follow my instructions carefully you can do this with minimal coding knowledge.</p>
<h4>Find this function:</h4>
<pre class="brush: plain; title: ; notranslate">
function WpaudioHTML5 (parent) {
			...
}
</pre>
<h4>Find these two lines &#8211; they are sequential:</h4>
<pre class="brush: plain; title: ; notranslate">
start = player.seekable.start();
end = player.seekable.end();
</pre>
<h4>Change them to this:</h4>
<pre class="brush: plain; title: ; notranslate">
start = player.buffered.start();
end = player.buffered.end();
</pre>
<h4>Next, find these two lines:</h4>
<pre class="brush: plain; title: ; notranslate">
player.src = parent.getUrl();
player.volume = 1;
</pre>
<h4>And add this line after them:</h4>
<pre class="brush: plain; title: ; notranslate">
player.preload = &quot;none&quot;;
</pre>
<h4>Voila! Problem solved!</h4>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/wpaudio-wordpress-plugin-crashes-safari-browser-when-song-is-played-from-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://kmsm.ca/2011/644387954/</link>
		<comments>http://kmsm.ca/2011/644387954/#comments</comments>
		<pubDate>Tue, 24 May 2011 04:07:56 +0000</pubDate>
		<dc:creator>Joshua Kelly</dc:creator>
				<category><![CDATA[fieldnotes]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387954</guid>
		<description><![CDATA[A RESTful API for WordPress &#8211; via dphiffer]]></description>
				<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/json-api/">A RESTful API for WordPress</a> &#8211; via <a href="http://profiles.wordpress.org/users/dphiffer/">dphiffer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/644387954/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Great Work is Expensive</title>
		<link>http://kmsm.ca/2011/why-great-work-is-expensive/</link>
		<comments>http://kmsm.ca/2011/why-great-work-is-expensive/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 03:58:25 +0000</pubDate>
		<dc:creator>Joshua Kelly</dc:creator>
				<category><![CDATA[Advertising]]></category>

		<guid isPermaLink="false">http://www.kmsm.ca/?p=644387845</guid>
		<description><![CDATA[The reality of your work is that it can&#8217;t great, cheap, and fast &#8211; at least not all at the same time. This idea reminds me of the scene in Apollo 11 where NASA engineers are faced with the challenge of fitting a square peg in a round hole: Great work is expensive because you [...]]]></description>
				<content:encoded><![CDATA[<p class="intro"><span class="dropcap">T</span>he reality of your work is that it can&#8217;t great, cheap, and fast &#8211; at least not all at the same time.</p>
<p>This idea reminds me of the scene in Apollo 11 where NASA engineers are faced with the challenge of fitting a square peg in a round hole:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="590" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/oTGiLVj9r2g?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="590" height="360" src="http://www.youtube.com/v/oTGiLVj9r2g?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Great work is expensive because you have to pay for quality with one of those two resources no one wants to part with: time or money. It doesn&#8217;t matter which you pick, it&#8217;s going to be expensive if you want it to be great.</p>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/why-great-work-is-expensive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://kmsm.ca/2011/644387926/</link>
		<comments>http://kmsm.ca/2011/644387926/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 16:08:43 +0000</pubDate>
		<dc:creator>Joshua Kelly</dc:creator>
				<category><![CDATA[fieldnotes]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387926</guid>
		<description><![CDATA[The anatomy of a WordPress theme &#8211; via Joost de Valk]]></description>
				<content:encoded><![CDATA[<p><a href="http://yoast.com/wordpress-theme-anatomy/">The anatomy of a WordPress theme</a> &#8211; via Joost de Valk</p>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/644387926/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use WordPress Multisite Subdomain Install With Real Subdomains</title>
		<link>http://kmsm.ca/2011/how-to-use-wordpress-multisite-subdomain-install-with-real-subdomains/</link>
		<comments>http://kmsm.ca/2011/how-to-use-wordpress-multisite-subdomain-install-with-real-subdomains/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 21:14:28 +0000</pubDate>
		<dc:creator>Cailen</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kmsm.ca/?p=644387919</guid>
		<description><![CDATA[TL;DR: I added the VirtualHost record for specialsubdomain.mysite.com BEFORE the mysite.com record, and inserted the &#8220;Include /var/www/vhosts/mysite.com/conf/vhost.conf&#8221; statement in to the last line of the mysite.com VirtualHost record (just before the closing tag). My frustrating learning experience I just sorted out an issue with wordpress multisite, and it took quite a bit of searching and [...]]]></description>
				<content:encoded><![CDATA[<p>TL;DR: I added the VirtualHost record for specialsubdomain.mysite.com BEFORE the mysite.com record, and inserted the &#8220;Include /var/www/vhosts/mysite.com/conf/vhost.conf&#8221; statement in to the last line of the mysite.com VirtualHost record (just before the closing  tag).</p>
<h4>My frustrating learning experience</h4>
<p>I just sorted out an issue with wordpress multisite, and it took quite a bit of searching and reading to uncover what is ostensibly a very simple solution. Admittedly, I didn&#8217;t know anything about the httpd.include or vhost.conf files before I set out a few weeks ago, nor the ServerAlias tag the VirtualHost tag or how dns entries, including the wildcard (*) are parsed.</p>
<p>The problem was this: wordpress multisite is installed with a subdomain install. That means every site created gets a new subdomain, and as a result you need a way to tell your server that any traffic that goes to that subdomain should ask the main site for information and files.</p>
<p>The practical solution is to use a wildcard dns (*) entry when setting up wordpress multisite &#8211; indeed this is the definitive proscribed solution. Unfortunately, this can cause some headaches if applied incorrectly, as has been well documented in <a href="http://wordpress.org/support/topic/multisites-work-actual-subdomains-being-redirected">this discussion thread</a>.</p>
<h4>What was supposed to happen</h4>
<p>1. People can visit mysite.com<br />
2. I can create a new site (a subdomain) in the mysite.com backend, and people can automatically access newsubdomain.mysite.com<br />
3. People can access my subdomain community.mysite.com which is NOT a wordpress multisite blog, and any other special subdomains that I might like to define separately from the mysite.com wpms install (ie community is vanilla forums, and I might want to add some kind of mail redirect to google apps email mail.mysite.com)</p>
<h4>What was happening when I included the vhost.conf file</h4>
<p>1. I followed the instructions to add a line to my httpd.include file which includes a vhost.conf file. Incidentally, this is ALSO required for domain mapping, which I am also doing:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;VirtualHost xxx.xxx.xxx.xxx:80&gt;
   ServerName   mysite.com:80
   ...
   Include /var/www/vhosts/mysite.com/conf/vhost.conf
&lt;/VirtualHost&gt;
</pre>
<p>2. Because the vhost.conf file was included INSIDE the VirtualHost tag, the VirtualHost tag was NOT required in the vhost.conf file. All I required was one line: ServerAlias *.mysite.com<br />
3. I could visit mysite.com<br />
4. I could visit my wpms subdomains<br />
5. I couldn&#8217;t visit community.mysite.com &#8211; I would be redirected to a page telling me that registration is closed (and presumably I would have been redirected to a signup page, were I to enable that feature)</p>
<h4>What was happening when I took out the vhost.conf file</h4>
<p>1. I could visit mysite.com<br />
2. I could visit community.mysite.com<br />
3. I couldn&#8217;t visit any of my wpms subdomains</p>
<h4>The solution, and why</h4>
<p>It took a minute, but when I paid attention to the details of the <a href="http://wordpress.org/support/topic/multisites-work-actual-subdomains-being-redirected">discussion thread</a> the answer was pretty clear.</p>
<p>The way these dns redirects work is in order &#8211; the text file is just parsed, and apache takes the first valid option it finds. &#8220;Cool!&#8221; I thought, &#8220;that just means that I need to order my file properly!&#8221; Sure enough, once I added the VirtualHost record for community.mysite.com BEFORE the mysite.com record, and put the include vhost.conf statement in to the mysite.com VirtualHost record, things worked fine!</p>
<p>Voila:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;VirtualHost xxx.xxx.xxx.xxx:80&gt;
   ServerName   specialsubdomain.mysite.com:80
   ...
&lt;/VirtualHost&gt;
&lt;VirtualHost xxx.xxx.xxx.xxx:80&gt;
   ServerName   mysite.com:80
   ...
   Include /var/www/vhosts/mysite.com/conf/vhost.conf
&lt;/VirtualHost&gt;
</pre>
<p>I hope this helps even one person, because I was seriously going nuts with this problem. Please feel free to comment if there is any confusion over what I&#8217;ve described here, but keep in mind that I am still a novice with Apache&#8230; but I&#8217;ll try my best! <img src='http://kmsm.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://kmsm.ca/2011/how-to-use-wordpress-multisite-subdomain-install-with-real-subdomains/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: kmsm.ca @ 2013-05-21 20:17:17 -->