<?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>Chris Roland &#187; Joomla</title>
	<atom:link href="http://www.chrisroland.info/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrisroland.info</link>
	<description>Software, Web and Database Developer</description>
	<lastBuildDate>Sat, 14 Aug 2010 14:34:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding a module to an article in Joomla</title>
		<link>http://www.chrisroland.info/adding-a-module-to-an-article-in-joomla/</link>
		<comments>http://www.chrisroland.info/adding-a-module-to-an-article-in-joomla/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 04:04:38 +0000</pubDate>
		<dc:creator>Chris Roland</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.chrisroland.info/?p=196</guid>
		<description><![CDATA[If you want to add a module directly into an article just follow the steps below:


Enable the Content &#8211; Load Module plugin
Go to the Extensions->Plugins Manager section and enable the &#8216;Content &#8211; Load Module&#8217; plugin.


Enter a unique position name for your module
Go to the Extensions->Module Manager, select your module and enter a unique position in [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to add a module directly into an article just follow the steps below:</p>
<ol>
<li>
<b>Enable the Content &#8211; Load Module plugin</b><br />
Go to the Extensions->Plugins Manager section and enable the &#8216;Content &#8211; Load Module&#8217; plugin.
</li>
<li>
<b>Enter a unique position name for your module</b><br />
Go to the Extensions->Module Manager, select your module and enter a unique position in the Position field in the Details section. For example mod_mymodule.
</li>
<li>
<b>Enter the loadposition tag into the article</b><br />
Edit the article you want to put the module in and enter the {loadposition positionname} tag<br />
For example <i>{loadposition mod_mymodule}</i>
</li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisroland.info/adding-a-module-to-an-article-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing the system message in Joomla</title>
		<link>http://www.chrisroland.info/customizing-the-system-message-in-joomla/</link>
		<comments>http://www.chrisroland.info/customizing-the-system-message-in-joomla/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 18:14:16 +0000</pubDate>
		<dc:creator>Chris Roland</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.chrisroland.info/?p=171</guid>
		<description><![CDATA[In case others run into this and because it&#8217;s not in an intuitive spot, here is the file location to customize the system message in Joomla:

[joomla install]\libraries\joomla\document\html\renderer\message.php

]]></description>
			<content:encoded><![CDATA[<p>In case others run into this and because it&#8217;s not in an intuitive spot, here is the file location to customize the system message in Joomla:<br />
<code><br />
[joomla install]\libraries\joomla\document\html\renderer\message.php<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisroland.info/customizing-the-system-message-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable front-end editing on the Frontpage in Joomla</title>
		<link>http://www.chrisroland.info/disable-editing-on-the-frontpage-in-joomla/</link>
		<comments>http://www.chrisroland.info/disable-editing-on-the-frontpage-in-joomla/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 19:55:27 +0000</pubDate>
		<dc:creator>Chris Roland</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.chrisroland.info/?p=167</guid>
		<description><![CDATA[To disable editing on the Frontpage in Joomla 1.5.11, all I had to do was change:

$access->canEdit   = $user->authorize('com_content', 'edit', 'content', 'all');
$access->canEditOwn   = $user->authorize('com_content', 'edit', 'content', 'own');

(Lines 64-65)
To:

$access->canEdit   = $user->authorize('com_content', 'edit', 'content', 'none');
$access->canEditOwn   = $user->authorize('com_content', 'edit', 'content', 'none');

(Lines 64-65)
In the following file:

[joomla install]\components\com_content\views\frontpage\view.html.php

]]></description>
			<content:encoded><![CDATA[<p>To disable editing on the Frontpage in Joomla 1.5.11, all I had to do was change:</p>
<p><code><br />
$access->canEdit   = $user->authorize('com_content', 'edit', 'content', 'all');<br />
$access->canEditOwn   = $user->authorize('com_content', 'edit', 'content', 'own');<br />
</code><br />
(Lines 64-65)</p>
<p>To:<br />
<code><br />
$access->canEdit   = $user->authorize('com_content', 'edit', 'content', 'none');<br />
$access->canEditOwn   = $user->authorize('com_content', 'edit', 'content', 'none');<br />
</code><br />
(Lines 64-65)</p>
<p>In the following file:<br />
<code><br />
[joomla install]\components\com_content\views\frontpage\view.html.php<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisroland.info/disable-editing-on-the-frontpage-in-joomla/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sanitizing input in Joomla</title>
		<link>http://www.chrisroland.info/sanitizing-input-in-joomla/</link>
		<comments>http://www.chrisroland.info/sanitizing-input-in-joomla/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 19:12:48 +0000</pubDate>
		<dc:creator>Chris Roland</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.chrisroland.info/?p=161</guid>
		<description><![CDATA[Here is a quick tip.  To sanitize input before you send the query to the database in Joomla, you can use:

$text = "My 'awesome' text";
$text = $database->Quote($text);

This will quote and escape special characters in the text string.
Reference:
http://help.joomla.org/content/view/525/125/
]]></description>
			<content:encoded><![CDATA[<p>Here is a quick tip.  To sanitize input before you send the query to the database in Joomla, you can use:<br />
<code><br />
$text = "My 'awesome' text";<br />
$text = $database->Quote($text);<br />
</code></p>
<p>This will quote and escape special characters in the text string.</p>
<p>Reference:<br />
<a href="http://help.joomla.org/content/view/525/125/">http://help.joomla.org/content/view/525/125/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisroland.info/sanitizing-input-in-joomla/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Paypal button with Joomla</title>
		<link>http://www.chrisroland.info/paypal-button-with-joomla/</link>
		<comments>http://www.chrisroland.info/paypal-button-with-joomla/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 19:03:44 +0000</pubDate>
		<dc:creator>Chris Roland</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.chrisroland.info/?p=129</guid>
		<description><![CDATA[I wanted to post this to save someone some time.
I recently ran into an issue where I was trying to display a Paypal button on an article within Joomla.  The button showed on the page, but when you clicked the button, it would send you to a Paypal page with an odd error.  [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to post this to save someone some time.</p>
<p>I recently ran into an issue where I was trying to display a Paypal button on an article within Joomla.  The button showed on the page, but when you clicked the button, it would send you to a Paypal page with an odd error.  I was posting the Paypal button using the HTML form code they provide.</p>
<p>What I found out was, the email cloaking plugin was taking the email address in the form code and replacing it with Javascript.  Once I disabled the email cloaking plugin, everything worked without any issues.  You can disable/enable the email cloaking plugin by going to Extensions->Plugin Manager and clicking on the red circle/green checkmark in the Enabled column.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisroland.info/paypal-button-with-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
