<?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>Practical Joomla!</title>
	<atom:link href="http://www.practicaljoomla.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.practicaljoomla.com</link>
	<description>Looking at Joomla! and its extensions through the eyes of a Webmaster</description>
	<lastBuildDate>Wed, 19 May 2010 19:27:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How To Make Joomla! Allow Users With The Same Mail Address</title>
		<link>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-make-joomla-allow-users-with-the-same-mail-address</link>
		<comments>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-make-joomla-allow-users-with-the-same-mail-address#comments</comments>
		<pubDate>Wed, 19 May 2010 19:27:23 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Tiny Issues And Solutions]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[user.php]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=117</guid>
		<description><![CDATA[<p>&#160;The Joomla! CMS is created to allow multiple users to add content to the website. This is no problem if you actually have users logging into the system and adding their content, but imagine the following all too common scenario:</p>
<p>You&#160;have multiple content writers sending you their content, and you want to post their content using <p>Read the post at <a href="http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-make-joomla-allow-users-with-the-same-mail-address">How To Make Joomla! Allow Users With The Same Mail Address</a></p>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;The Joomla! CMS is created to allow multiple users to add content to the website. This is no problem if you actually have users logging into the system and adding their content, but imagine the following all too common scenario:</p>
<p>You&nbsp;have multiple content writers sending you their content, and you want to post their content using their name. The writers should not be able to add content themselves, but it is done by you.</p>
<p>The way Joomla! works, is that each user name has to have its own unique mail address, which is logical, but not very practical when they do not add their writings themselves. What you want is having multiple users sharing one mail address, so you do not have to set up mail addresses for all these users, which are not being used anyway.</p>
<p>There is a workaround to have Joomla! allow multiple users using the same mail address, but it requires a bit of changing code:&nbsp;</p>
<ul>
<li>Fire up your favorite&nbsp;FTP application &#8211; I use CuteFTP &#8211; and go to your web server</li>
<li>In your Joomla! install folder, go to folder <strong>libraries/joomla/database/table</strong></li>
<li>Download file <strong>user.php</strong> to your desktop (or a location you prefer) and create a safety copy of the original file (user-original.php or something similar)</li>
<li>Open file user.php using Notepad and do a search for the phrase &#39;<strong>check for existing email</strong>&#39;</li>
<li>You will find the following code:
<p>		<strong>&nbsp;&nbsp;&nbsp;// check for existing email<br />
		&nbsp;&nbsp;$query = &#39;SELECT id&#39;<br />
		&nbsp;&nbsp;&nbsp;. &#39; FROM #__users &#39;<br />
		&nbsp;&nbsp;&nbsp;. &#39; WHERE email = &#39;. $this-&gt;_db-&gt;Quote($this-&gt;email)<br />
		&nbsp;&nbsp;&nbsp;. &#39; AND id != &#39;. (int) $this-&gt;id<br />
		&nbsp;&nbsp;&nbsp;;<br />
		&nbsp;&nbsp;$this-&gt;_db-&gt;setQuery( $query );<br />
		&nbsp;&nbsp;$xid = intval( $this-&gt;_db-&gt;loadResult() );<br />
		&nbsp;&nbsp;if ($xid &amp;&amp; $xid != intval( $this-&gt;id )) {<br />
		&nbsp;&nbsp;&nbsp;$this-&gt;setError( JText::_( &#39;WARNREG_EMAIL_INUSE&#39; ) );<br />
		&nbsp;&nbsp;&nbsp;return false;<br />
		&nbsp;&nbsp;}<br />
		</strong></li>
<li>Delete all of these lines (nothing more, nothing less) and save the file</li>
<li>Upload file user.php to the server to the same location you retrieved it from &#8211; folder <strong>libraries/joomla/database/table</strong> &#8211; and overwrite the&nbsp;original file</li>
</ul>
<p>Now Joomla! will allow multiple users using the same mail address!</p>
<p><em><strong>Beware: when you update your Joomla! install, user.php will be overwritten and these changes will have to be done manually again!</strong></em></p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-make-joomla-allow-users-with-the-same-mail-address/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Manually Upgrade Joomla!</title>
		<link>http://www.practicaljoomla.com/setting-up-joomla/how-to-manually-upgrade-joomla</link>
		<comments>http://www.practicaljoomla.com/setting-up-joomla/how-to-manually-upgrade-joomla#comments</comments>
		<pubDate>Wed, 19 May 2010 18:57:17 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Setting Up Joomla!]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[fantastico]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomlapack]]></category>
		<category><![CDATA[upgrading joomla]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=112</guid>
		<description><![CDATA[<p>When I created my main Joomla! site, I installed Joomla! using Fantastico, as described in this post.</p>
<p>However, I set that site up in a temporary folder while my original site was still running on HTML. When I finished the Joomla! site, I backed up the site (using JoomlaPack, now changing names to Akeeba Backup), deleted <p>Read the post at <a href="http://www.practicaljoomla.com/setting-up-joomla/how-to-manually-upgrade-joomla">How To Manually Upgrade Joomla!</a></p>]]></description>
			<content:encoded><![CDATA[<p>When I created my <a href="http://www.giantpt.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.giantpt.com/?referer=');">main Joomla! site</a>, I installed Joomla! using Fantastico, as described in <a href="http://www.practicaljoomla.com/setting-up-joomla/setting-up-joomla-1-5-using-fantastico">this post</a>.</p>
<p>However, I set that site up in a temporary folder while my original site was still running on HTML. When I finished the Joomla! site, I backed up the site (using <a href="http://www.joomlapack.net/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.joomlapack.net/?referer=');">JoomlaPack</a>, now changing names to Akeeba Backup), deleted the original site and extracted the backed-up site in the correct folder.</p>
<p>The problem with this way of setting up a site and copying it to another location is that Fantastico loses the connection with it, i.e. you won&#39;t see the copied site in Fantastico. This also means you will need to upgrade manually instead of using Fantastico&#39;s upgrade feature.</p>
<p>I hadn&#39;t upgraded Joomla! since version 1.5.15, and needed to upgrade it to the latest version, which is at the moment of this post version 1.5.17.</p>
<p>Luckily, when you are using cPanel, manually upgrading is peanuts!</p>
<ul>
<li>Backup your site and download the backup file</li>
<li>Go to the <a href="http://www.joomla.org/download.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/download.html?referer=');">Joomla! download page</a> and download the desired upgrade package</li>
<li>Open cPanel and go to <strong>File Manager</strong></li>
<li>In the root of your Joomla! installation, upload the package file using the <strong>Upload</strong> button</li>
<li>When the file is uploaded, right click on the file and select <strong>Extract</strong></li>
<li>The extraction will overwrite the necessary files, and your Joomla! install will be upgraded!</li>
<li>Remember to delete the uploaded file</li>
</ul>
<p>It&#39;s as simple as that!</p>
<p>The only problem now is that, if you have made any changes in Joomla! proprietary files, these may have overwritten, and these changes will have to be made again. In the next post, I will describe one of these changes in more detail.</p>
<p>Happy upgrading!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/setting-up-joomla/how-to-manually-upgrade-joomla/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Prevent Visitors From Running Into Operation Aborted Errors</title>
		<link>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-prevent-visitors-from-running-into-operation-aborted-errors</link>
		<comments>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-prevent-visitors-from-running-into-operation-aborted-errors#comments</comments>
		<pubDate>Fri, 05 Mar 2010 09:38:00 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Tiny Issues And Solutions]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[rereplacer]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=105</guid>
		<description><![CDATA[<p>Sometimes visitors to your Joomla! site using Internet Explorer have trouble loading pages, getting an error saying:</p>
<p>&#39;Internet Explorer cannot open the Internet site http://www.\&#60;your site&#62;/&#60;your page&#62;.html. Operation aborted&#39;</p>
<p></p>
<p>&#160;</p>
<p>I had this same problem happening on my site. I could not see the error myself as&#160;I am using IE 8, but visitors using a lower IE version <p>Read the post at <a href="http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-prevent-visitors-from-running-into-operation-aborted-errors">How To Prevent Visitors From Running Into Operation Aborted Errors</a></p>]]></description>
			<content:encoded><![CDATA[<p>Sometimes visitors to your Joomla! site using Internet Explorer have trouble loading pages, getting an error saying:</p>
<p>&#39;<strong>Internet Explorer cannot open the Internet site http://www.\&lt;your site&gt;/&lt;your page&gt;.html. Operation aborted</strong>&#39;</p>
<p><img alt="" height="91" src="http://www.practicaljoomla.com/wp-content/uploads/image/domready-error.jpg" width="500" /></p>
<p>&nbsp;</p>
<p>I had this same problem happening on my site. I could not see the error myself as&nbsp;I am using IE 8, but visitors using a lower IE version frequently had this issue.</p>
<p>Apparently the error is caused by some scripting error, <a href="http://support.microsoft.com/default.aspx/kb/927917" target="_blank" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/default.aspx/kb/927917?referer=');">Microsoft admits&nbsp;there is a problem</a>&nbsp;and recommends updating Internet Explorer to version 8, which solves the issue.</p>
<p>But not all users can update their IE version, or company policy prohibits to use a new, untested version on their company hardware. To accomodate all visitors, you will need to adjust your site to prevent this problem from interfering with your visitor&#39;s browsing experience.</p>
<p>I checked out this issue today after a visitor complaint, and came up with the following easy fix:</p>
<ul>
<li>Download component <a href="http://extensions.joomla.org/extensions/edition/replace/4336/details" target="_blank" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/edition/replace/4336/details?referer=');">ReReplacer</a> from the Joomla! Extensions site</li>
<li>Install ReReplacer via Extensions | Install/Uninstall</li>
<li>Go to the component via Components | ReReplacer</li>
<li>Click the <em>New</em> icon to create a new item</li>
<li>In the Name field in Details, type <strong>DomReady Replace</strong> (or something else to identify the item)</li>
<li>In Search &amp; Replace:
<ul>
<li>type <strong>domready</strong> in the Search box</li>
<li>type <strong>load</strong> in the Replace box</li>
</ul>
</li>
</ul>
<p><img alt="" height="426" src="http://www.practicaljoomla.com/wp-content/uploads/image/domready-1.jpg" width="627" /></p>
<ul>
<li>In Search Areas, select <strong>Everywhere</strong> in the Enable in area dropdown box</li>
</ul>
<p><img alt="" height="150" src="http://www.practicaljoomla.com/wp-content/uploads/image/domready-2.jpg" width="348" /></p>
<ul>
<li>Click the <em>Save</em> icon, and check if the item is published</li>
<li>Clean the cache by going to Tools | Clean Cache, select everything and click the <em>Delete</em> icon</li>
<li>Clean the expired cache by going to Tools | Purge Expired Cache and click the <em>Purge expired</em> icon</li>
</ul>
<p>The problem is now solved!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/tiny-issues-and-solutions/how-to-prevent-visitors-from-running-into-operation-aborted-errors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting Joomla! Article Hits Counters to Zero</title>
		<link>http://www.practicaljoomla.com/tiny-issues-and-solutions/resetting-joomla-article-hits-counters-to-zero</link>
		<comments>http://www.practicaljoomla.com/tiny-issues-and-solutions/resetting-joomla-article-hits-counters-to-zero#comments</comments>
		<pubDate>Mon, 01 Mar 2010 12:15:54 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Tiny Issues And Solutions]]></category>
		<category><![CDATA[hits counter]]></category>
		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=99</guid>
		<description><![CDATA[<p>When you have been busy setting up a Joomla! site, checking all the pages multiple times, and you want to release the site officially, you will find that you either have to live with all the article hits counters set to the number of times you visited these articles, or you have to reset the <p>Read the post at <a href="http://www.practicaljoomla.com/tiny-issues-and-solutions/resetting-joomla-article-hits-counters-to-zero">Resetting Joomla! Article Hits Counters to Zero</a></p>]]></description>
			<content:encoded><![CDATA[<p>When you have been busy setting up a Joomla! site, checking all the pages multiple times, and you want to release the site officially, you will find that you either have to live with all the article hits counters set to the number of times you visited these articles, or you have to reset the hits counter for each article separately using the Article Manager.</p>
<p>My problem was a bit different: I want to clear all hits at the start of the month, so I can see which articles are most popular that month and so I can show the most popular ones on my site. Well&#8230; since I have sites with quite a lot of articles on them, I do not want to reset the hit counter for each article individually by hand, of course!</p>
<p>Browsing around a bit gave me the solution to this hits counter reset issue!</p>
<p>Most Joomla! sites will be hosted by a host providing cPanel. If not, you should have it!</p>
<p>The hits counter resides in your MySQL database in table jos_content. Of course, you need to know which database name you are using. You can find that in your Joomla! admin interface:</p>
<ul>
<li>Go to Site | Global Configuration</li>
<li>Go to tab Server</li>
<li>Under Database Settings, you can see the database name</li>
</ul>
<p><img alt="" height="138" src="http://www.practicaljoomla.com/wp-content/uploads/image/database-name.jpg" width="307" /></p>
<p><img align="right" alt="" height="50" hspace="5" src="http://www.practicaljoomla.com/wp-content/uploads/image/phpmyadmin-logo.jpg" vspace="5" width="75" />Now to reset all counters for your Joomla! site:</p>
<ul>
<li>Log on to cPanel, scroll down to Databases and click on the phpMyAdmin icon</li>
<li>In phpMyAdmin, go to tab SQL</li>
<li>Type in the following command in the box:</li>
</ul>
<p style="margin-left: 40px">use &lt;full database-name&gt;;<br />
	update jos_content set hits=0;</p>
<ul>
<li>&hellip; where the database name is the name you found in the Global Configuration</li>
<li>Click the Start button</li>
</ul>
<p>Example:</p>
<p>use johnny_jo100;<br />
	update jos_content set hits=0;</p>
<p>This will set all article hits counters to zero for that particular Joomla! site!</p>
<p>&nbsp;</p>
<p>When you have multiple Joomla! sites residing on your host, you can set the hits counters for all sites to zero in one SQL query like this:</p>
<p>use &lt;1st database name&gt;;<br />
	update jos_content set hits=0;<br />
	use &lt;2nd database name&gt;;<br />
	update jos_content set hits=0;<br />
	use &lt;3rd database name&gt;;<br />
	update jos_content set hits=0;<br />
	use &lt;4th database name&gt;;<br />
	update jos_content set hits=0;<br />
	use &lt;5th database name&gt;;<br />
	update jos_content set hits=0;<br />
	use &lt;6th database name&gt;;<br />
	update jos_content set hits=0;</p>
<p>etcetera&hellip;</p>
<p>Save the commands in a text file, so you can use it next time as well.</p>
<p>&nbsp;</p>
<p>The method is a bit tedious &ndash; Joomla! should have something like this built in, in my opinion, preferably with a time and date selection when the reset needs to happen &ndash; but at least it does the job!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/tiny-issues-and-solutions/resetting-joomla-article-hits-counters-to-zero/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing The Mail Subject Line For JForms</title>
		<link>http://www.practicaljoomla.com/extensions/changing-the-mail-subject-line-for-jforms</link>
		<comments>http://www.practicaljoomla.com/extensions/changing-the-mail-subject-line-for-jforms#comments</comments>
		<pubDate>Wed, 17 Feb 2010 08:56:56 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Tiny Issues And Solutions]]></category>
		<category><![CDATA[jforms]]></category>
		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=92</guid>
		<description><![CDATA[<p>An issue that had been bugging me for a while now was the fact that JForms, I guess the best form creation plugin around for Joomla!, sends out all mail messages&#160;sent through the forms with:</p>

subject line &#39;New entry added&#39; to the administrator (me)
subject line &#39;Your entry has been received&#39; for the confirmation mail to the <p>Read the post at <a href="http://www.practicaljoomla.com/extensions/changing-the-mail-subject-line-for-jforms">Changing The Mail Subject Line For JForms</a></p>]]></description>
			<content:encoded><![CDATA[<p>An issue that had been bugging me for a while now was the fact that JForms, I guess the best form creation plugin around for Joomla!, sends out all mail messages&nbsp;sent through the forms with:</p>
<ul>
<li>subject line &#39;New entry added&#39; to the administrator (me)</li>
<li>subject line &#39;Your entry has been received&#39; for the confirmation mail to the sender of the mail</li>
</ul>
<p>There is no variable &#8211; yet &#8211; in the JForms interface to change that, and it looks quite unprofessional to the sender and is quite annoying for the admin when he or she runs multiple sites. The subject line should, in my humble opinion, at least give away the site name the mail is sent from, so the admin knows what action to take.</p>
<p>It took me some time, but I finally found the solution. It&#39;s requires going into a php file and changing stuff, but for most admins, that should not be a problem.</p>
<p><strong>The solution</strong></p>
<ul>
<li>Fire up your favorite FTP application (I use CuteFTP) and go to your Joomla! installation folder</li>
<li>Go to folder /administrator/components/com_jforms/plugins/storage/Mail</li>
<li>Download file mail.php to your desktop</li>
<li>Make a security copy of the mail.php file, so you have a proper copy when things don&#39;t work out!</li>
<li>Use a text editor (Notepad), make sure you turn Word Wrap off, and open the mail.php file</li>
<li>Go to the following lines:</li>
</ul>
<p style="margin-left: 40px"><strong>//$mail-&gt;setSender( array( $email, $name ) );<br />
	$mail-&gt;SetSubject(JText::_(&#39;New entry added&#39;));<br />
	$mail-&gt;SetBody( $adminMessage );<br />
	$mail-&gt;Send();</strong></p>
<ul>
<li>Change the text &#39;New entry added&#39; in line <em>$mail-&gt;SetSubject(JText::_(&#39;New entry added&#39;));</em> to the subject you want to use for the administrator mail. Make sure you do not delete the start or end quotes!</li>
<li>Go to the following lines:</li>
</ul>
<p style="margin-left: 40px"><strong>//$mail-&gt;setSender( array( $email, $name ) );<br />
	$mail-&gt;SetSubject(JText::_(&#39;Your entry has been received&#39;));<br />
	$mail-&gt;SetBody($userMessage);<br />
	$mail-&gt;Send();</strong></p>
<ul>
<li>Change the text &#39;Your entry has been received&#39; in line <em>$mail-&gt;SetSubject(JText::_(&#39;Your entry has been received&#39;));</em>&nbsp;to the subject you want to use for the confirmation mail the sender receives. Again, make sure you do not delete the start or end quotes!</li>
<li>Save the mail.php file (WordWrap should be off, otherwise the file contents mash up!), open it again to ensure the file still looks good, and upload it to the folder you downloaded it from</li>
</ul>
<p>This takes care of this tiny issue with JForms!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/extensions/changing-the-mail-subject-line-for-jforms/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What To Do When Images Disappear In Joomla!</title>
		<link>http://www.practicaljoomla.com/tiny-issues-and-solutions/what-to-do-when-images-disappear-in-joomla</link>
		<comments>http://www.practicaljoomla.com/tiny-issues-and-solutions/what-to-do-when-images-disappear-in-joomla#comments</comments>
		<pubDate>Mon, 08 Feb 2010 14:26:21 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Tiny Issues And Solutions]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[search engine friendly urls]]></category>
		<category><![CDATA[sef]]></category>
		<category><![CDATA[sh404sef]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=85</guid>
		<description><![CDATA[<p>Today I ran into an issue on one of my Joomla! sites that had me baffled&#8230;</p>
<p>When I went to my site and into one of the categories, everything looked as it should. However, when I refreshed the page using IE&#39;s Refresh button, all images on that page disappeared and did not return until I cleared <p>Read the post at <a href="http://www.practicaljoomla.com/tiny-issues-and-solutions/what-to-do-when-images-disappear-in-joomla">What To Do When Images Disappear In Joomla!</a></p>]]></description>
			<content:encoded><![CDATA[<p>Today I ran into an issue on <a href="http://www.datingophetweb.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.datingophetweb.com/?referer=');">one of my Joomla! sites</a> that had me baffled&#8230;</p>
<p>When I went to my site and into one of the categories, everything looked as it should. However, when I refreshed the page using IE&#39;s Refresh button, all images on that page disappeared and did not return until I cleared my site&#39;s cache!</p>
<p>I was afraid it was a problem with the SEF (search engine friendly URLs) settings, and that was the case apparently. When I turned off sh404SEF, it did work correctly, but I wanted&nbsp;that plugin enabled, of course.</p>
<p>I went into the forums, and found the simple solution that solved the problem:</p>
<ul>
<li>In your Administrator interface, go to Extensions | Plugin Manager</li>
<li>In the Select Type dropdown box on the right, select &#39;system&#39;</li>
<li>Make sure &#39;System &#8211; SEF&#39; is the first plugin in the list of system plugins, so before the &#39;System &#8211; sh404sef&#39; plugin
<p>		<img alt="" border="1" height="66" src="http://www.practicaljoomla.com/wp-content/uploads/image/images-disappearing.jpg" width="410" /></li>
</ul>
<p>&nbsp;</p>
<ul>
<li>Clear your cache and it all works correctly now!</li>
</ul>
<p>&nbsp;</p>
<p>I hope that, when you encounter the same issue with disappearing images in Joomla!, you can solve the problem using this fix as well!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/tiny-issues-and-solutions/what-to-do-when-images-disappear-in-joomla/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My Favorite Joomla! Extensions</title>
		<link>http://www.practicaljoomla.com/extensions/my-favorite-joomla-extensions</link>
		<comments>http://www.practicaljoomla.com/extensions/my-favorite-joomla-extensions#comments</comments>
		<pubDate>Thu, 21 Jan 2010 14:28:43 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Setting Up Joomla!]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[banner slider]]></category>
		<category><![CDATA[bigshot google analytics]]></category>
		<category><![CDATA[front-end font size adjuster]]></category>
		<category><![CDATA[jce]]></category>
		<category><![CDATA[jcomments]]></category>
		<category><![CDATA[jforms]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla extensions]]></category>
		<category><![CDATA[joomlapack]]></category>
		<category><![CDATA[missing metadata]]></category>
		<category><![CDATA[multiads]]></category>
		<category><![CDATA[ninja rss syndicator]]></category>
		<category><![CDATA[seo simple]]></category>
		<category><![CDATA[sh404sef]]></category>
		<category><![CDATA[simple rss feed reader]]></category>
		<category><![CDATA[xmap]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=76</guid>
		<description><![CDATA[<p>Some Joomla! extensions you always use, some you only install when the situation asks for it. There are paid extensions and free, open source extensions. In most cases, you will be able to find the functionality you are looking for amongst the many free extensions in the Joomla! extensions library.&#160;</p>
<p>After a fresh install of Joomla! <p>Read the post at <a href="http://www.practicaljoomla.com/extensions/my-favorite-joomla-extensions">My Favorite Joomla! Extensions</a></p>]]></description>
			<content:encoded><![CDATA[<p>Some Joomla! extensions you always use, some you only install when the situation asks for it. There are paid extensions and free, open source extensions. In most cases, you will be able to find the functionality you are looking for amongst the many free extensions in the <a target="_blank" href="http://extensions.joomla.org/" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/?referer=');">Joomla! extensions library</a>.&nbsp;</p>
<p>After a fresh install of Joomla! 1.5, I start adding my favorite extensions to the install. These are the extensions I use for each and every install, although I might run into an extension later I want to add to my main extensions list. In another post I will explain how you can install extensions into your Joomla! install.</p>
<p>&nbsp;</p>
<p><strong>My Favorite Joomla! Extensions</strong></p>
<p>All of the extensions below will be explained in more detail later in the Extensions category on this blog, and will be linked to from this page. The extension name itself is linked to the extension&rsquo;s page in the Joomla! extensions library.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/site-management/sef/10134" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/site-management/sef/10134?referer=');">sh404SEF</a><br />
Joomla!&rsquo;s URLs don&rsquo;t look too good directly out of the box. You can select them to be more search engine friendly (SEF), but sh404SEF does the job a whole lot better. This extension is commercial nowadays, but it is worth the investment. I still use the free version, though.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/edition/editors/88" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/edition/editors/88?referer=');">JCE</a><br />
The built-in editor in every Joomla! install is called TinyMCE. TinyMCE is workable, but when you want to have a decent editor with a lot more options and possibilities, look no further than JCE.<img border="0" hspace="5" alt="Joomla! Extensions Library" vspace="5" align="right" width="300" height="237" src="http://www.practicaljoomla.com/wp-content/uploads/image/extensions-library.jpg" /> There are a lot of extensions for JCE specifically (make sure to install the free JCE Utilities from JCE itself), so you can modify the editor to your liking.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/access-a-security/backup/1606" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/access-a-security/backup/1606?referer=');">JoomlaPack</a><br />
Every website needs to be backed up, and JoomlaPack is the best for Joomla! websites. It also creates backups with an automatic installer, so you can prepare your site, back it up and install it in its final location.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/structure-a-navigation/site-map/3066" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/structure-a-navigation/site-map/3066?referer=');">Xmap</a><br />
No website is complete without a site map, and Xmap creates them on the fly whenever the site is updated.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/site-management/site-analytics/6170" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/site-management/site-analytics/6170?referer=');">BIGSHOT Google Analytics</a><br />
As a savvy webmaster, you will want to have a deeper insight in your traffic. Google Analytics provides that &ndash; for free &ndash; and BIGSHOT Google Analytics places it on your Joomla! pages easily.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/site-management/seo-a-metadata/4102" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/site-management/seo-a-metadata/4102?referer=');">SEO Simple</a><br />
Joomla! does not give you the possibility to add meta tags to your section and category pages. SEO Simple automatically takes the first part of the text on your page and adds that to the page as a description tag.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/languages/translations-for-joomla" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/languages/translations-for-joomla?referer=');">Language Pack</a><br />
When you&rsquo;re building sites in another language than English, you will want to change the site&rsquo;s frontend and &ndash; maybe &ndash; backend to the desired language. There are translations in loads of languages available via the link.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/contacts-and-feedback/forms/6965" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/contacts-and-feedback/forms/6965?referer=');">JForms</a><br />
To build contact forms, JForms is the best! I tried several others, and &ndash; even though it has its flaws &ndash; I stopped at JForms.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/9985" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/contacts-and-feedback/articles-comments/9985?referer=');">JComments</a><br />
The best way to keep visitors coming back is by allowing them to participate on your site. JComments does the best job here.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/content-sharing/rss-syndicate/6392" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/content-sharing/rss-syndicate/6392?referer=');">Ninja RSS Syndicator</a><br />
This extension allows you to create custom RSS feeds for each and every section and category combination you want.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/social-web/social-bookmarking/9111" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/social-web/social-bookmarking/9111?referer=');">AddThis</a><br />
When you want your visitors to list your site on social bookmarking sites, this extension gives them that opportunity straight from your site.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/ads-a-affiliates/banner-management/3642" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/ads-a-affiliates/banner-management/3642?referer=');">Banner Slider</a><br />
I was looking to add banners to my site, but wanted to have them change during a visitor&rsquo;s stay. Banner Slider provides an easy way of showing multiple banners in one spot where you want them to show up.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/style-a-design/typography/8295" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/style-a-design/typography/8295?referer=');">Front-end Font Size Adjuster</a><br />
To facilitate the seniors and people with poor eye vision, it is great to enable them to increase or decrease the font size used on your site. This extension is the best I found.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/site-management/seo-a-metadata/2846" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/site-management/seo-a-metadata/2846?referer=');">Missing Metadata</a><br />
When you create a lot of content, you will definitely sometimes forget to add the necessary metadata to an article. This extension shows you which articles&rsquo; meta data fields have not been filled.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/ads-a-affiliates/google-ads/4995" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/ads-a-affiliates/google-ads/4995?referer=');">MultiAds</a><br />
To place Google Adsense ads (or any other types of ads) on your articles, MultiAds is the easiest and most versatile solution.</p>
<p><a target="_blank" href="http://extensions.joomla.org/extensions/external-contents/rss-readers/1723" onclick="pageTracker._trackPageview('/outgoing/extensions.joomla.org/extensions/external-contents/rss-readers/1723?referer=');">Simple RSS Feed Reader</a><br />
I make use of many RSS feeds on my sites to give the visitors fresh content regularly. This extension does a great job doing that.</p>
<p>&nbsp;</p>
<p>Phew! That was it! These are the main extensions I use on my sites. In future posts, I will explain the details of each extension, plus how you can best put them to use.</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/extensions/my-favorite-joomla-extensions/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setting Up Joomla! 1.5 Using Fantastico</title>
		<link>http://www.practicaljoomla.com/setting-up-joomla/setting-up-joomla-1-5-using-fantastico</link>
		<comments>http://www.practicaljoomla.com/setting-up-joomla/setting-up-joomla-1-5-using-fantastico#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:33:34 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Setting Up Joomla!]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[fantastico]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=37</guid>
		<description><![CDATA[So you want to set up a new site, and you have decided it’s gonna be a Joomla! site? There are two ways to go about this, depending on your preference and your host’s possibilities: setting up Joomla! using the download from joomla.org or setting up Joomla! using your host’s cpanel interface <p>Read the post at <a href="http://www.practicaljoomla.com/setting-up-joomla/setting-up-joomla-1-5-using-fantastico">Setting Up Joomla! 1.5 Using Fantastico</a></p>]]></description>
			<content:encoded><![CDATA[<p>So you want to set up a new site, and you have decided it&rsquo;s gonna be a Joomla! site?</p>
<p>There are two ways to go about this, depending on your preference and your host&rsquo;s possibilities:</p>
<ul>
<li>Setting up Joomla! using the download from <a target="_blank" href="http://www.joomla.org/" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/?referer=');">joomla.org</a></li>
<li>Setting up Joomla! using your host&rsquo;s cpanel interface</li>
</ul>
<p>My only experience with setting up Joomla! (and the most convenient and easy option) is the latter: setting up Joomla! using cpanel.</p>
<p>Does your host not have cpanel or another interface that allows easy setup of Joomla!? In that case, you will have to use the manual install of Joomla! using the download the people from Joomla! provide. Via <a target="_blank" href="http://www.joomla.org/download.html" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/download.html?referer=');">this page</a> you can download the latest version of Joomla! plus the PDF Installation Manual and Quick Start Guide.</p>
<p>&nbsp;</p>
<p><strong>Using cPanel To Set Up Joomla! 1.5</strong></p>
<p><img border="0" hspace="5" alt="Fantastico" vspace="5" align="right" width="54" height="54" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico.png" />I use a great and inexpensive host in the US to host all my websites called <a target="_blank" href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=RobinRoelofsen" onclick="pageTracker._trackPageview('/outgoing/secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=RobinRoelofsen&amp;referer=');"><font color="#0000ff">Hostgator</font></a>. I can host all my sites using one account, the tech help is awesome, and the monthly fee is negligible.</p>
<p>Hostgator gives you access to cPanel to manage everything about your websites, from files to security, database management and a whole lot more. One of cPanel&rsquo;s nifty features is a service called Fantastico DeLuxe.</p>
<p><img border="0" hspace="5" alt="The content management systems Fantastico offers" vspace="5" align="right" width="132" height="205" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico-setup-1.jpg" />Fantastico allows easy setup of all kinds of software onto your host, including blogs, forums, e-commerce solutions and wikis. The option we are interested in here is the possibility to set up a content management system to run our site. Fantastico gives a lot of possibilities here, but the one we are going to use is Joomla 1.5.</p>
<p>To enable me to show you what I am talking about in this blog I will set up a fresh Joomla! installation called joomlademo and refer to that in my posts. I expect you will have your own host set up with a domain name you can set up your installation on.</p>
<p>The first step is to click on the Joomla 1.5 link. Fantastico comes up with screen <em>Installing Joomla 1.5 (1/3)</em>:</p>
<p><img border="0" alt="Installing Joomla 1.5 (1/3)" width="371" height="653" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico-setup-2.jpg" /></p>
<p style="margin: 0cm 0cm 10pt">In this screen, you need to set:</p>
<ul>
<li>The domain you install Joomla! on ( I blurred the names in my setup for understandable reasons)</li>
<li>The directory in which you want to install Joomla! (leave blank when you want Joomla! to install in the root of the domain)</li>
<li>The administrator name (you can change this later on)</li>
<li>The administrator password</li>
<li>The administrator e-mail address</li>
<li>The full name of the administrator (how you want to be called in Joomla!)</li>
<li>The name of the site</li>
<li>Install Sample Data: nice when you want to see how a site is set up, but for a new install you actually want to use, make sure you uncheck this box</li>
</ul>
<p>&nbsp;</p>
<p>Press the <em>Install Joomla 1.5</em> button:</p>
<p><img border="0" alt="Installing Joomla 1.5 (2/3)" width="347" height="218" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico-setup-3.jpg" /></p>
<p>In this screen the install program shows you the location of the Joomla! install you have selected, plus the MySQL database name it created for this installation.</p>
<p>&nbsp;</p>
<p>Press the Finish installation button:</p>
<p><img border="0" alt="Installing Joomla 1.5 (3/3)" width="370" height="516" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico-setup-4.jpg" /></p>
<p>Joomla! 1.5 has now been installed, and this screen gives you the necessary information to go to the administrator area.</p>
<p>For your administration, fill in your mail address and press <em>Send E-mail</em> to get all details for the installation, which will definitely come in handy when you want to manually adjust data in your MySQL database.</p>
<p>When you have finished, you can click the Back to Joomla 1.5 overview and close cPanel.</p>
<p>&nbsp;</p>
<p>You can now visit the administrator area by going to http://www.yourdomain/administrator/, or &ndash; when you installed Joomla! in a separate directory &ndash; to http://www.yourdomain/directory/administrator/.</p>
<p align="left"><img border="0" alt="The Joomla Demo administrator login screen" align="middle" width="500" height="288" src="http://www.practicaljoomla.com/wp-content/uploads/image/fantastico-setup-5(1).jpg" /></p>
<p>&nbsp;</p>
<p>In the next post, we will start preparing Joomla! to get the best&nbsp;results possible!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/setting-up-joomla/setting-up-joomla-1-5-using-fantastico/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thinking About Using Joomla!?</title>
		<link>http://www.practicaljoomla.com/general/thinking-about-using-joomla</link>
		<comments>http://www.practicaljoomla.com/general/thinking-about-using-joomla#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:25:40 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=21</guid>
		<description><![CDATA[<p>You want to set up a new site, or convert an existing site to a better, more manageable system, and you think Joomla! might be a good solution to your needs? Well&#8230; let me tell you a little bit about Joomla! first.</p>
<p>&#160;</p>
<p>What is Joomla!?</p>
<p>Joomla! is&#160;the most popular Open Source Content Management System in the world <p>Read the post at <a href="http://www.practicaljoomla.com/general/thinking-about-using-joomla">Thinking About Using Joomla!?</a></p>]]></description>
			<content:encoded><![CDATA[<p>You want to set up a new site, or convert an existing site to a better, more manageable system, and you think Joomla! might be a good solution to your needs? Well&hellip; let me tell you a little bit about Joomla! first.</p>
<p>&nbsp;</p>
<p><strong>What is Joomla!?</strong></p>
<p>Joomla! is&nbsp;the most popular Open Source Content Management System in the world at this moment.</p>
<p><a target="_blank" href="http://www.joomla.org/" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/?referer=');"><img alt="Go to the Joomla! website &gt;&gt;" width="235" height="46" src="http://www.practicaljoomla.com/wp-content/uploads/image/joomla.jpg" /></a></p>
<p><em>Joomla! is on version 1.5 right now (at the time of this writing, it actually is on version 1.5.15), and efforts are being made to get version 1.6 out in the near future. I will concentrate on version 1.5 for now and get to 1.6 when it actually comes out.</em></p>
<p>I give you the definition of a content management system as it is given on the&nbsp;<a target="_blank" href="http://www.joomla.org/" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/?referer=');">Joomla! website</a>:</p>
<blockquote><p>A content management system is software that keeps track of every piece of content on your Web site, much like your local public library keeps track of books and stores them. Content can be simple text, photos, music, video, documents, or just about anything you can think of. A major advantage of using a CMS is that it requires almost no technical skill or knowledge to manage. Since the CMS manages all your content, you don&#8217;t have to.</p></blockquote>
<p>Joomla! can be used for all kinds of websites, including corporate websites, online newspapers, portals and personal websites.</p>
<p>If you want to know more about Joomla!, check out <a href="http://www.joomla.org/about-joomla.html" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/about-joomla.html?referer=');">this link</a>.</p>
<p>&nbsp;</p>
<p><strong>What is Open Source?</strong></p>
<p>The definition of Open Source is (from <a target="_blank" href="http://searchenterpriselinux.techtarget.com/sDefinition/0,,sid39_gci212709,00.html" onclick="pageTracker._trackPageview('/outgoing/searchenterpriselinux.techtarget.com/sDefinition/0_sid39_gci212709_00.html?referer=');">SearchEnterpriseLinux.com</a>):</p>
<blockquote><p>1) In general, open source refers to any program whose source code is made available for use or modification as users or other developers see fit. Open source software is usually developed as a public collaboration and made freely available.</p>
<p>2) Open Source is a certification mark owned by the Open Source Initiative (OSI). Developers of software that is intended to be freely shared and possibly improved and redistributed by others can use the Open Source trademark if their distribution terms conform to the OSI&#8217;s Open Source Definition. To summarize, the Definition model of distribution terms require that:</p>
<p>The software being distributed must be redistributed to anyone else without any restriction.</p>
<p>The source code must be made available (so that the receiving party will be able to improve or modify it).</p>
<p>The license can require improved versions of the software to carry a different name or version from the original software.</p>
</blockquote>
<p>&nbsp;</p>
<p>My take on Joomla! is, that it is a great system to build beautiful, comprehensive websites, which gives you an easily manageable interface to set up the site the way you want it to look and work. The unbelievable amount of free and paid extensions makes Joomla! the most versatile CMS platform around!</p>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/general/thinking-about-using-joomla/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Not Another Joomla! Blog?!</title>
		<link>http://www.practicaljoomla.com/general/not-another-joomla-blog</link>
		<comments>http://www.practicaljoomla.com/general/not-another-joomla-blog#comments</comments>
		<pubDate>Fri, 15 Jan 2010 15:41:39 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla blog]]></category>
		<category><![CDATA[practical joomla]]></category>
		<category><![CDATA[practical joomla blog]]></category>
		<category><![CDATA[robin roelofsen]]></category>

		<guid isPermaLink="false">http://www.practicaljoomla.com/?p=10</guid>
		<description><![CDATA[Oh no, not another blog on Joomla! I can hear you think, and you are partially right: there are a myriad of Joomla! blogs on the Internet. So what makes this blog different? It might be best if I introduce myself and tell you why on God’s green earth I started the Practical Joomla! <p>Read the post at <a href="http://www.practicaljoomla.com/general/not-another-joomla-blog">Not Another Joomla! Blog?!</a></p>]]></description>
			<content:encoded><![CDATA[<div style="margin: 0cm 0cm 10pt">Oh no, not another blog on Joomla!</div>
<div style="margin: 0cm 0cm 10pt">I can hear you think, and you are partially right: there are a myriad of Joomla! blogs on the Internet. So what makes this blog different?</div>
<div style="margin: 0cm 0cm 10pt">It might be best if I introduce myself and tell you why on God&rsquo;s green earth I started the <em>Practical Joomla!</em> blog.</div>
<div style="margin: 0cm 0cm 10pt">My name is Robin Roelofsen, and I live in a town called Almere in the Netherlands.</div>
<div style="margin: 0cm 0cm 10pt">Back in 2002 I started being a personal fitness trainer as a profession next to my IT job at Unisys in the Netherlands. I had been dabbling a bit with building websites before using Frontpage, but that never led to anything. &nbsp;Now I wanted to design a decent website for my personal training business, using a decent website building tool. A friend of mine gave me a copy of Dreamweaver, and I never looked back.</div>
<div style="margin: 0cm 0cm 10pt">On the personal training business website I started posting articles, and soon it got a bit out of hand. I quit doing personal training, but the website had gained so much popularity within the bodybuilding and fitness people in the Netherlands, I kept updating my website on a regular basis.</div>
<div style="margin: 0cm 0cm 10pt">In the meantime I started and stopped a couple of other websites, all built in Dreamweaver, and I kept redesigning the websites as well. The fitness website has gone through a lot of changes over the years due to my ever increasing knowledge of Dreamweaver and HTML.</div>
<div style="margin: 0cm 0cm 10pt">The problem using Dreamweaver to build websites is the amount of work involved. Every page needs to be created and modified &#8211; to make it look right &#8211; manually in a template (yes, I was smart enough to create and use a template). Each and every page needs to be manually linked to from every page a link needs to be set up on. Changes to the structure are hard to do without screwing up the entire site. In a word, it was terrible to keep track of all the things that needed to be done.</div>
<div style="margin: 0cm 0cm 10pt">In 2009, I wanted to set up a website for Dutch seniors, and knew from the start it was going to be a large site. I really did not want to use HTML anymore, and started looking for a better solution.</div>
<div style="margin: 0cm 0cm 10pt">Then I found the content management system Joomla!</div>
<div style="margin: 0cm 0cm 10pt">Joomla! was in the cpanel Fantastico DeLuxe package on my US-based host, and I installed it. Man, what a difference that made! I was totally lost at the start, but using the <a target="_blank" href="http://www.joomla.org/" onclick="pageTracker._trackPageview('/outgoing/www.joomla.org/?referer=');">Joomla! website</a>, <em>Joomla! for Dummies</em> and the forums, I managed to create a very nice-looking site!</div>
<div style="margin: 0cm 0cm 10pt">At the end of last year, I started manually copying over my Dreamweaver-built <a target="_blank" href="http://www.giantpt.com/" onclick="pageTracker._trackPageview('/outgoing/www.giantpt.com/?referer=');">Dutch fitness site</a> to Joomla! as well, and I vowed to not use anything else than a CMS anymore.</div>
<div style="margin: 0cm 0cm 10pt">In the process of building these sites, I ran into all kinds of problems, found very good extensions and came up with a lot of personal solutions to design issues. Now I want to share what I learned with those working with Joomla! and are as much at a loss as I was when I started.</div>
<div style="margin: 0cm 0cm 10pt">I will work hard getting Practical Joomla! filled with the information you need to setup and run a great Joomla!-based website!</div>
_____________________________________________________________________________________________
<p><strong>Robin Roelofsen</strong></p>
<p>"I think complexity is mostly sort of crummy stuff that is there because it's too expensive to change the interface."<br>
<em>Jaron Lanier</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.practicaljoomla.com/general/not-another-joomla-blog/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
