<?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 &#187; Joomla</title>
	<atom:link href="http://munyah.com/category/joomla/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>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>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>Joomla</title>
		<link>http://munyah.com/joomla/joomla/</link>
		<comments>http://munyah.com/joomla/joomla/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 19:27:16 +0000</pubDate>
		<dc:creator>munyah</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla 1.0]]></category>
		<category><![CDATA[joomla 1.5]]></category>
		<category><![CDATA[joomla component]]></category>
		<category><![CDATA[joomla development]]></category>
		<category><![CDATA[joomla module]]></category>
		<category><![CDATA[joomla mvc]]></category>
		<category><![CDATA[joomla plugin]]></category>
		<category><![CDATA[joomla templates]]></category>

		<guid isPermaLink="false">/?p=249</guid>
		<description><![CDATA[My first real love. In that time it was called Mambo. I must say that I wasn&#8217;t too happy with the split that eventually gave birth to Joomla. Mambo means &#8216;King&#8217; in my native language (shona) and Joomla! means nothing&#8230; According to the founders of Joomla! : Joomla is an award-winning content management system (CMS), [...]]]></description>
			<content:encoded><![CDATA[<p>My first real love. In that time it was called <a title="Joomla! " href="http://www.joomla.org" target="_blank">Mambo</a>. I must say that I wasn&#8217;t too happy with the split that eventually gave birth to <a title="Joomla! " href="http://www.joomla.org" target="_blank">Joomla</a>. <strong>Mambo </strong>means &#8216;King&#8217; in my native language (<em>shona</em>) and <strong>Joomla!</strong> means nothing&#8230;</p>
<p>According to the founders of Joomla! : <strong>Joomla </strong>is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone&#8230;. <em>and other gibberish&#8230;. yes thats pretty much what it is!!</em></p>
<p>I don&#8217;t favor Joomla! at all, I just prefer it&#8230; most of the time!!</p>
]]></content:encoded>
			<wfw:commentRss>http://munyah.com/joomla/joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

