<?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>munyah</title>
	<atom:link href="http://munyah.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://munyah.com</link>
	<description>Define, Design, Develop &#38; Deploy</description>
	<lastBuildDate>Mon, 12 Sep 2011 05:47:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Programatically add multiple products to a cart</title>
		<link>http://munyah.com/magento/programatically-add-multiple-products-to-a-cart/</link>
		<comments>http://munyah.com/magento/programatically-add-multiple-products-to-a-cart/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 05:36:05 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[magento enterprise]]></category>
		<category><![CDATA[magento resources]]></category>
		<category><![CDATA[magento tricks]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=422</guid>
		<description><![CDATA[After a few days of hunting for a solution, I finally bumped into this snippet and boy did I feel dumb. Anyway, I hope someone will find this useful. 1 2 3 4 5 6 7 8 9 10 try&#123; $cart = new Mage_Checkout_Model_Cart&#40;&#41;; $cart-&#62;truncate&#40;&#41;;//clear existing cart items $cart-&#62;init&#40;&#41;; $cart-&#62;addProductsByIds&#40;$productIds&#41;; $cart-&#62;save&#40;&#41;; &#125; catch&#40;Exception $e&#41;&#123; echo [...]]]></description>
			<content:encoded><![CDATA[<p>After a few days of hunting for a solution, I finally bumped into this snippet and boy did I feel dumb. Anyway, I hope someone will find this useful.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">try<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$cart</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Mage_Checkout_Model_Cart<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">truncate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//clear existing cart items</span>
<span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addProductsByIds</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$productIds</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">save</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
catch<span style="color: #009900;">&#40;</span>Exception <span style="color: #000088;">$e</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$e</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>getMessage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Of course the above snippet will not work in isolation.  Below is an example of how I used it. I have put this snippet into a controller that then redirects to the users&#8217; shopping cart. e.g. http://myshop/mycheckout/addmultipletocart/?product_id[]=1&#038;product_id[]=24&#038;product_id[]=987&#038;customer_id=32</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$params</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getRequest</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getParams</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$redirect</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;checkout/cart&quot;</span><span style="color: #339933;">;</span>
Mage<span style="color: #339933;">::</span><span style="color: #004000;">getSingleton</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'checkout/session'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
Mage<span style="color: #339933;">::</span><span style="color: #004000;">getSingleton</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'customer/session'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">loginById</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$params</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'customer_id'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//login the customer, so that we add items to this customers' cart and then redirect them to their cart.</span>
&nbsp;
<span style="color: #000088;">$productIds</span><span style="color: #339933;">=</span><span style="color: #000088;">$params</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'product_id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
            try<span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$cart</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Mage_Checkout_Model_Cart<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">truncate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #666666; font-style: italic;">//clear existing cart items</span>
                <span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addProductsByIds</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$productIds</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$cart</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">save</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
            catch<span style="color: #009900;">&#40;</span>Exception <span style="color: #000088;">$e</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$e</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_redirect<span style="color: #009900;">&#40;</span><span style="color: #000088;">$redirect</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/magento/programatically-add-multiple-products-to-a-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buzz-er canned, is social networking really
beneficial?</title>
		<link>http://munyah.com/blog/buzz-er-canned-is-social-networking-reallybeneficial/</link>
		<comments>http://munyah.com/blog/buzz-er-canned-is-social-networking-reallybeneficial/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 04:34:19 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=399</guid>
		<description><![CDATA[More than 3 months ago I decided to call it quits on google buzz. I just didn&#8217;t see the relevance of it all. Any who, I only realised today that I still had a feed and icon running on my site (kind of gives you an idea of how many visitors I actually get, coz [...]]]></description>
			<content:encoded><![CDATA[<p>More than 3 months ago I decided to call it quits on google<br />
buzz. I just didn&#8217;t see the relevance of it all. Any who, I only<br />
realised today that I still had a feed and icon running on my site<br />
(kind of gives you an idea of how many visitors I actually get, coz<br />
no one complained about a funny error on my site!), which brings me<br />
to this question, is it really necessary, the social networking chit-chat?. Unless of course you&#8217;re a marketing guru or some PR<br />
maniac like one I know, or perhaps an organisation with a well<br />
outliimed PR and Marketing campaign, why do would one need all<br />
these tools and plenty plus networks? </p>
<p>When I get an answer, I&#8217;ll let you know, for now it&#8217;s good bye buzz&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/blog/buzz-er-canned-is-social-networking-reallybeneficial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Auto-Blogging with K2 &amp; Feed Gator</title>
		<link>http://munyah.com/joomla/joomla-auto-blogging-with-k2-feed-gator/</link>
		<comments>http://munyah.com/joomla/joomla-auto-blogging-with-k2-feed-gator/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 16:19:41 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[auto-blogging]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[joomla 1.5]]></category>
		<category><![CDATA[joomla plugins]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=390</guid>
		<description><![CDATA[Having been working on auto-blogging with WordPress for a few months now and I wondered aloud as to whether there was anything that could match some of the auto-blogging plugins available in Joomla. I was quite chuffed to discover a tool called Feed Gator. Apparently its been around since Joomla 1.0 days; I didn&#8217;t know that, [...]]]></description>
			<content:encoded><![CDATA[<p>Having been working on auto-blogging with WordPress for a few months now and I wondered aloud as to whether there was anything that could match some of the auto-blogging plugins available in Joomla.</p>
<p>I was quite chuffed to discover a tool called <a title="Joomla FeedGator - Auto-Blogging" href="http://joomlacode.org/gf/project/feedgator">Feed Gator</a>. Apparently its been around since Joomla 1.0 days; I didn&#8217;t know that, and neither did I know of <strong>auto-blogging</strong> then, so its cool.</p>
<p>As a matter of preference I ignore Joomla&#8217;s default content manager and rush to quickly install <a title="Joomla - K2 - CCK" href="http://getk2.org/">K2</a> just because its better and easier for most layman to understand. And so its a big plus that Feed Gator can feed into it; and you can separate each feed into categories, yey!</p>
<p>For the benefit of others, auto-blogging <em>is the stealing art of content from other bloggers via RSS feeds</em>. You take a bunch of feeds and create your own blog articles with them.</p>
<p><strong>DOWNLOAD LINK : </strong> <a href="http://extensions.joomla.org/extensions/news-production/automatic-articles/13573">http://extensions.joomla.org/extensions/news-production/automatic-articles/13573</a></p>
<p>Happy auto-blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/joomla/joomla-auto-blogging-with-k2-feed-gator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento Extension &#124; WDCA Enhanced Product Grid Extension</title>
		<link>http://munyah.com/magento/magento-extension-wdca-enhanced-product-grid-extension/</link>
		<comments>http://munyah.com/magento/magento-extension-wdca-enhanced-product-grid-extension/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:48:39 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento extensions]]></category>
		<category><![CDATA[magento resources]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=382</guid>
		<description><![CDATA[An excellent extension that allows you to view product thumbnails and customise the columns to what you need and what is relevant. Its a shame that its not compatible with the Enterprise Edition. Extension key : magento-community/TBT_Enhancedgrid Download: http://www.magentocommerce.com/magento-connect/WDCA/extension/748/enhanced-product-grid]]></description>
			<content:encoded><![CDATA[<p>An excellent extension that allows you to view product thumbnails and customise the columns to what you need and what is relevant. Its a shame that its not compatible with the Enterprise Edition.</p>
<p><strong>Extension key :</strong> <em>magento-community/TBT_Enhancedgrid</em></p>
<p><strong>Download: </strong><em>http://www.magentocommerce.com/magento-connect/WDCA/extension/748/enhanced-product-grid</em></p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/magento/magento-extension-wdca-enhanced-product-grid-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Connect 404 Error &#8211; in Magento CE 1.4.x</title>
		<link>http://munyah.com/magento/magento-connect-404-error-in-magento-ce-1-4-x/</link>
		<comments>http://munyah.com/magento/magento-connect-404-error-in-magento-ce-1-4-x/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 18:52:22 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Custom Development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[magento enterprise]]></category>
		<category><![CDATA[magento extensions]]></category>
		<category><![CDATA[magento resources]]></category>
		<category><![CDATA[magento tricks]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=346</guid>
		<description><![CDATA[If we were to count the number of annoying errors one encounters in Magento; we&#8217;d need an entire century. 1 of them comes after you upgrade Magento CE to 1.4.x. This happens when you try to access the Magento Connector.  You get a 404 Error page no matter how you try to access the Connector. [...]]]></description>
			<content:encoded><![CDATA[<p>If we were to count the number of annoying errors one encounters in Magento; we&#8217;d need an entire century. 1 of them comes after you upgrade Magento CE to 1.4.x. This happens when you try to access the Magento Connector.  You get a 404 Error page no matter how you try to access the Connector.</p>
<p><strong>Solution:</strong></p>
<p>The fastest and easiest solution is to run Magentos clean-up. All it essentially does is to reset the file permissions and clear out all Magentos&#8217; miscellaneous cache folders.</p>
<p>Get it here : <a title="magento cleanup tool" href="http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions" target="_blank">http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions</a></p>
<p>The longer route is to do what the cleanup does; manually, and I know you are not going to try that.</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/magento/magento-connect-404-error-in-magento-ce-1-4-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the currency symbol</title>
		<link>http://munyah.com/magento/changing-the-currency-symbol-in-magento/</link>
		<comments>http://munyah.com/magento/changing-the-currency-symbol-in-magento/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 05:11:38 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[currency]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online shop]]></category>
		<category><![CDATA[sales price]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=319</guid>
		<description><![CDATA[I donno why things have to  be so difficult to do in magento . Displaying a  currency is simple enough, you go into the admin section and modify the currency as you want. However if you want to change the symbol, then its another typical magento nightmare. Having chosen my site to use Zim Dollar [...]]]></description>
			<content:encoded><![CDATA[<p>I donno why things have to  be so difficult to do in magento . Displaying a  currency is simple enough, you go into the admin section and modify the currency as you want. However if you want to change the symbol, then its another typical magento nightmare.</p>
<p>Having chosen my site to use Zim Dollar for sells, the symbol is $Z. I wanted to change that to $ZWD. So you have to go to \lib\Zend\Locale\Data</p>
<p>Default symbols are in root.xml and if you’re using other translations the symbols are in one of many .xml files in there. e.g if the translation was shona, the file would be sn.xml</p>
<p>So assuming you&#8217;re using the default language, open root.xml and search for the symbol you want to modify and change it accordingly.</p>
<p>If you ask me, a backend symbol modifier would be cool.</p>
<p>Oh, my dear magento&#8230; we’re a simple folk&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/magento/changing-the-currency-symbol-in-magento/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Joomla &#8211; fetching &#8216;GET&#8217; Variable the proper way</title>
		<link>http://munyah.com/joomla/joomla-fetching-get-variable-the-proper-way/</link>
		<comments>http://munyah.com/joomla/joomla-fetching-get-variable-the-proper-way/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 05:20:27 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Custom Development]]></category>
		<category><![CDATA[custom module development]]></category>
		<category><![CDATA[joomla 1.5]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=317</guid>
		<description><![CDATA[So apparently there&#8217;s a lot of security risks in using our traditional $_GET['item'] within our custom developed modules / extensions. I for one am guilty of using a lot of GETs simply because they&#8217;re easy and pretty straight forward. So in order to dispense the &#8216;risk&#8217; and combat some known exploits we&#8217;re advised to use [...]]]></description>
			<content:encoded><![CDATA[<p>So apparently there&#8217;s a lot of security risks in using our traditional $_GET['item'] within our custom developed modules / extensions. I for one am guilty of using a lot of GETs simply because they&#8217;re easy and pretty straight forward. So in order to dispense the &#8216;risk&#8217; and combat some known exploits we&#8217;re advised to use the JRequest-class.</p>
<p>And we use it like so:</p>
<p>WRONG:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$category</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'category'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>RIGHT:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$category</span> <span style="color: #339933;">=</span> JRequest<span style="color: #339933;">::</span><span style="color: #004000;">getInt</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'categoryid'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//integer</span>
<span style="color: #000088;">$category</span> <span style="color: #339933;">=</span> JRequest<span style="color: #339933;">::</span><span style="color: #004000;">getVar</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'category'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//mixed variable</span>
<span style="color: #000088;">$category</span> <span style="color: #339933;">=</span> JRequest<span style="color: #339933;">::</span><span style="color: #004000;">getString</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'categoryname'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//string variable</span></pre></td></tr></table></div>

<p>How simple is that?? That small change in your extensions and modules will save you headaches with vulnerable exploits in your custom developments.</p>
<p>Happy coding; the proper way this time!!</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/joomla/joomla-fetching-get-variable-the-proper-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comments on your Desktop with WP-Comments-Notifier</title>
		<link>http://munyah.com/wordpress/comments-on-your-desktop-with-wp-comments-notifier/</link>
		<comments>http://munyah.com/wordpress/comments-on-your-desktop-with-wp-comments-notifier/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 18:05:00 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WPMU]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[desktop applications]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=313</guid>
		<description><![CDATA[I love tools that make life easier and in some way efficient. This little desktop tool is perfect for high traffic; high comments blogs. Give it a try on your blogs and life will be that much more easier without having to login to the backend to approve/ delete user comments. wp-comments-notifier is an open [...]]]></description>
			<content:encoded><![CDATA[<p>I love tools that make life easier and in some way efficient. This little desktop tool is perfect for high traffic; high comments blogs. Give it a try on your blogs and life will be that much more easier without having to login to the backend to approve/ delete user comments.</p>
<p><a href="http://code.google.com/p/wp-comments-notifier/" target="_blank">wp-comments-notifier</a> is an open source application that simply alerts you when new comments are posted on your WordPress blog (works with WordPress MU too &#8211; awesome!). it just docks in your system tray nicely and neatly.</p>
<p>Enjoy!!</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/wordpress/comments-on-your-desktop-with-wp-comments-notifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento &#8211; Proper  use of the &#8216;GET&#8217; Variable</title>
		<link>http://munyah.com/magento/get-variable/</link>
		<comments>http://munyah.com/magento/get-variable/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 14:40:39 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[get variable]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://munyah.com/?p=295</guid>
		<description><![CDATA[Once you start doing some Magento coding, you may be faced with loads of errors if you try to use the $_GET['variable'] within functions or some views. So instead try using 1 $this-&#62;getRequest&#40;&#41;-&#62;getParam&#40;'variable'&#41;;]]></description>
			<content:encoded><![CDATA[<p>Once you start doing some Magento coding, you may be faced with loads of errors if you try to use the $_GET['variable'] within functions or some views. So instead try using</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getRequest</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getParam</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'variable'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://munyah.com/magento/get-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPMU</title>
		<link>http://munyah.com/wpmu/wpmu/</link>
		<comments>http://munyah.com/wpmu/wpmu/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:33:14 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[WPMU]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[custom module development]]></category>
		<category><![CDATA[custom template]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[multi user]]></category>
		<category><![CDATA[online booking]]></category>
		<category><![CDATA[personal site]]></category>
		<category><![CDATA[restaurant]]></category>
		<category><![CDATA[rich media]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[template concept]]></category>
		<category><![CDATA[video gallery]]></category>
		<category><![CDATA[Visual Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress templates]]></category>

		<guid isPermaLink="false">/?p=270</guid>
		<description><![CDATA[WPMU [Wordpress Multi-User]: With WordPress we took blogging to the next level by creating powerful self-hosted software that anyone could install and have a blog within minutes. Now with MU we&#8217;re making it as easy to create a thousand blogs as it was to create a single blog with WordPress 3 years ago. By building [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WPMU [Wordpress Multi-User]: </strong> With WordPress we took blogging to the next level by creating powerful self-hosted software that anyone could install and have a blog within minutes.</p>
<p>Now with MU we&#8217;re making it as easy to create a thousand blogs as it was to create a single blog with WordPress 3 years ago. By building on the base of WordPress and syncing development, we get the benefit of the huge ecosystem in plugins and themes that has developed around the project.</p>
<p><strong>Simply put</strong> : <a title="Wordpress MU" href="http://mu.wordpress.org" target="_blank">WPMU </a>allows you to create thousands of WP sites/blogs using a single installation. Think of it as, install WP once and use it as many times as you want, with different content, plugins, templates, etc&#8230;</p>
<p>Fine you don&#8217;t get it, read up on it and maybe then you&#8217;ll get it&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/wpmu/wpmu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

