<?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>Torkil Johnsen &#187; Content management</title>
	<atom:link href="http://www.torkiljohnsen.com/category/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.torkiljohnsen.com</link>
	<description>My personal piece of cyberspace</description>
	<lastBuildDate>Mon, 28 Nov 2011 11:18:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The 2008 Gmail Appeal</title>
		<link>http://www.torkiljohnsen.com/2008/04/14/the-2008-gmail-appeal/</link>
		<comments>http://www.torkiljohnsen.com/2008/04/14/the-2008-gmail-appeal/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 09:01:07 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2008/04/14/the-2008-gmail-appeal/</guid>
		<description><![CDATA[HTML email can be done right &#8211; totally permission based, simple, clean, readable HTML. Gmail&#8217;s rendering is unfortunately not up to scratch. This video is a cheeky attempt to get the attention of the Gmail team. read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>HTML email can be done right &#8211; totally permission based, simple, clean, readable HTML. Gmail&#8217;s rendering is unfortunately not up to scratch. This video is a cheeky attempt to get the attention of the Gmail team.</p>
<p><a href="http://www.email-standards.org/gmail-appeal">read more</a> | <a href="http://digg.com/design/The_2008_Gmail_Appeal">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2008/04/14/the-2008-gmail-appeal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some easy use of mod_rewrite</title>
		<link>http://www.torkiljohnsen.com/2008/01/16/some-easy-use-of-mod_rewrite/</link>
		<comments>http://www.torkiljohnsen.com/2008/01/16/some-easy-use-of-mod_rewrite/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 08:00:28 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>
		<category><![CDATA[Search engines]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2008/01/16/some-easy-use-of-mod_rewrite/</guid>
		<description><![CDATA[Here are some easy code snippets that comes in handy on all websites I set up. Consistent urls are important for search engines, so I have a few small code snippets to make sure everything works as planned. Just insert one of the following blocks in your .htaccess file in your site root. Make sure [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some easy code snippets that comes in handy on all websites I set up. Consistent urls are important for search engines, so I have a few small code snippets to make sure everything works as planned.<br />
<span id="more-66"></span></p>
<p>Just insert one of the following blocks in your .htaccess file in your site root. Make sure you replace example.com with your own domain name, and also make sure that you leave the backslash in example\.com in the first line of the code.</p>
<p><code><br />
# force www IN URL<br />
RewriteEngine On<br />
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]<br />
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]<br />
# END force www IN URL<br />
</code></p>
<p><code><br />
# force removal of www IN URL<br />
RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]<br />
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]<br />
# END force removal of www IN URL# force www IN URL<br />
</code></p>
<p>And here is a snippet that can forward users from one domain to another automatically. Nice to have if your site has got one or more aliases. Notice that all the domain aliases have [NC,OR] at the end of the line, while the last alias and_so_on.com just has [NC].</p>
<p><code><br />
# forward from domain aliases<br />
RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^(www\.)?domain1\.com [NC,OR]<br />
RewriteCond %{HTTP_HOST} ^(www\.)?domain2\.com [NC,OR]<br />
RewriteCond %{HTTP_HOST} ^(www\.)?domain3\.com [NC,OR]<br />
RewriteCond %{HTTP_HOST} ^(www\.)?and_so_on\.com [NC]<br />
RewriteRule (.*) http://maindomain.com/$1 [R=301,L]<br />
# END forward from domain aliases<br />
</code></p>
<p>One last thing: RewriteEngine On is just something you need to write once in your htaccess file, so if you use two of the above snippets, make sure you remove that from the second block.</p>
<p>[tags]htaccess,mod_rewrite,www,domainnames[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2008/01/16/some-easy-use-of-mod_rewrite/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email-standards.org lauches</title>
		<link>http://www.torkiljohnsen.com/2007/11/28/email-standardsorg-lauches/</link>
		<comments>http://www.torkiljohnsen.com/2007/11/28/email-standardsorg-lauches/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 14:15:47 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Standards]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2007/11/28/email-standardsorg-lauches/</guid>
		<description><![CDATA[&#8220;The Email Standards Project works with email client developers and the design community to improve web standards support and accessibility in email.&#8221; I recommend that anyone currently involved in setting up or sending e-mail newsletters stop by this site to check out what you can do to contribute. This should be highly relevant for anyone [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;The Email Standards Project works with email client developers and the design community to improve web standards support and accessibility in email.&#8221;</p>
<p>I recommend that anyone currently involved in setting up or sending e-mail newsletters stop by this site to check out what you can do to contribute. This should be highly relevant for anyone with a CMS out there&#8230;</p>
<p><a href="http://www.email-standards.org/">Email Standards</a></p>
<p>[tags]email,standards,launch[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2007/11/28/email-standardsorg-lauches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla with 9 Summer of Code projects</title>
		<link>http://www.torkiljohnsen.com/2007/04/12/joomla-with-9-summer-of-code-projects/</link>
		<comments>http://www.torkiljohnsen.com/2007/04/12/joomla-with-9-summer-of-code-projects/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 09:21:28 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2007/04/12/joomla-with-9-summer-of-code-projects/</guid>
		<description><![CDATA[Seems like Joomla has gotten 9 slots in GSoC, not bad at all, but still: Drupal got 20 or so, so even if Joomla has got a very large forum userbase, Drupal might have a more active community. What do you think? Here is a list of Joomla Summer of Code projects: Extending the Nested [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like Joomla has gotten <a href="http://code.google.com/soc/joomla/about.html">9 slots in GSoC</a>, not bad at all, but still: <a href="http://code.google.com/soc/drupal/about.html">Drupal got 20 or so</a>, so even if <a href="http://www.joomla.org/content/view/3134/1/">Joomla has got a very large forum userbase</a>, Drupal might have a more active community. What do you think?<br />
<span id="more-52"></span><br />
<!--adsense#250kvadrat--><strong>Here is a list of Joomla Summer of Code projects:</strong></p>
<ul>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=1B07D256012D833B">Extending the Nested Sets Model with &#8216;Hardlinked Nested Sets&#8217;</a><br />
by Enno Klasing, mentored by Louis Benton Landry</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=BC1CF75B6D5D69B2">Development of Jigg component for Joomla! 1.5 [â€œJust Jigg it!â€]</a><br />
by Jay Soe, mentored by Jason Kendall</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=49F7F7F57BCD51C8">Implementation of mootools in Joomla! 1.5 framework</a><br />
by Avi Mehta, mentored by Rastin Mehr</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=DB0F397A744321F1">Email Interface for Publishing</a><br />
by Nur Aini Rakhmawati, mentored by Mateusz Krzeszowiec</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=884BBAD08A8B02B4">Semantic Web Integration</a><br />
by Charl van Niekerk, mentored by Robert Schley</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=3E9D0D31CC3F0003">Geo-component for Joomla!</a><br />
by Mickael MAISON, mentored by Andrew Eddie</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=A4BAC195F74959C6">Eclipse Plugin for develop Joomla&#8217;s Component/Module</a><br />
by Muhammad Fuad, mentored by Laurens Vandeput</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=77315ED366749DCF">Joomla 1.5 Forum Component</a><br />
by Niels Vandekeybus, mentored by Johan Janssens</li>
<li><a href="http://code.google.com/soc/joomla/appinfo.html?csaid=7744DDC108BF28BF">General content recommendation component for Joomla</a><br />
by Faolan Cheslack-Postava, mentored by Samuel Alexander Moffatt</li>
</ul>
<p><!--adsense#468artikkelbanner--></p>
<p>[tags]Joomla,Summer of Code,google,content management,programming[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2007/04/12/joomla-with-9-summer-of-code-projects/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Joomla 1.5 to include MooTools</title>
		<link>http://www.torkiljohnsen.com/2007/01/30/joomla-15-to-include-mootools/</link>
		<comments>http://www.torkiljohnsen.com/2007/01/30/joomla-15-to-include-mootools/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 12:55:07 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2007/01/30/joomla-15-to-include-mootools/</guid>
		<description><![CDATA[Judging by the latest logs from the SVN repository, Joomla 1.5 will include MooTools in its 1.5 release&#8230; Joomla 1.5, revision 6400 (a milestone in the making) has the following log entry: &#8220;JavaScript conversion to Mootools WIP&#8221;. (WIP = Work In Progress). Changed files in this revision includes lots of Joomla JS files, the khepri [...]]]></description>
			<content:encoded><![CDATA[<p>Judging by the latest logs from the SVN repository, Joomla 1.5 will include MooTools in its 1.5 release&#8230;<br />
<span id="more-47"></span><br />
<!--adsense#250kvadrat--><br />
Joomla 1.5, revision 6400 (a milestone in the making) has the following log entry: &#8220;JavaScript conversion to Mootools WIP&#8221;. (WIP = Work In Progress). Changed files in this revision includes lots of Joomla JS files, the khepri template, the contact component and the administrators media manager, so I think it is safe to say that <a href="http://www.mootools.net">MooTools</a> will be a significant part of <a href="http://www.joomla.org">Joomla</a> in the near future.</p>
<p>[tags]Joomla 1.5, mootools[/tags]</p>
<p><!--adsense#468artikkelbanner--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2007/01/30/joomla-15-to-include-mootools/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Drupal compared to Joomla</title>
		<link>http://www.torkiljohnsen.com/2006/12/06/drupal-compared-to-joomla/</link>
		<comments>http://www.torkiljohnsen.com/2006/12/06/drupal-compared-to-joomla/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 14:35:32 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2006/12/06/drupal-compared-to-joomla/</guid>
		<description><![CDATA[I just came across a comparison chart for Drupal vs Joomla, with quite a few features compared. Nicely put together, and not biased at all it seems. I can only speak for the Joomla bit, though, and the points made are valid enough in my opinion. Read the comparison [tags]Drupal, Joomla, comparison, cms, content management[/tags]]]></description>
			<content:encoded><![CDATA[<p>I just came across a comparison chart for Drupal vs Joomla, with quite a few features compared.<span id="more-46"></span></p>
<p>Nicely put together, and not biased at all it seems. I can only speak for the Joomla bit, though, and the points made are valid enough in my opinion.</p>
<p><!--adsense--></p>
<p><a href="http://www.alledia.com/blog/general_cms_issues/joomla_and_drupal_-_which_one_is_right_for_you?/">Read the comparison</a></p>
<p>[tags]Drupal, Joomla, comparison, cms, content management[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2006/12/06/drupal-compared-to-joomla/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySQL connection (resource) management</title>
		<link>http://www.torkiljohnsen.com/2006/08/18/mysql-connection-resource-management/</link>
		<comments>http://www.torkiljohnsen.com/2006/08/18/mysql-connection-resource-management/#comments</comments>
		<pubDate>Fri, 18 Aug 2006 11:06:18 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2006/08/18/mysql-connection-resource-management/</guid>
		<description><![CDATA[Just came across a good article by Jay Pipes talking about lazy loading and caching of content. A nice read with some good code examples that I thought I should share with my fellow readers. Read Jays blog entry]]></description>
			<content:encoded><![CDATA[<p>Just came across a good article by Jay Pipes talking about lazy loading and caching of content. A nice read with some good code examples that I thought I should share with my fellow readers. <span id="more-41"></span></p>
<p><a href="http://jpipes.com/index.php?/archives/99-MySQL-Connection-Management-in-PHP-How-Not-To-Do-Things.html">Read Jays blog entry</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2006/08/18/mysql-connection-resource-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating symlinks without shell access</title>
		<link>http://www.torkiljohnsen.com/2006/08/09/creating-symlinks-without-shell-access/</link>
		<comments>http://www.torkiljohnsen.com/2006/08/09/creating-symlinks-without-shell-access/#comments</comments>
		<pubDate>Wed, 09 Aug 2006 09:39:43 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2006/08/09/creating-symlinks-without-shell-access/</guid>
		<description><![CDATA[While testing out the WordPress plugin WP-Cache, used to cache and speed up wordpress powered websites, I came across a list of commens on the plugin creator&#8217;s website where alot of comments had questions as to how one should create a symlink that was required in the plugin installation. Alot of us (me included) do [...]]]></description>
			<content:encoded><![CDATA[<p>While testing out the WordPress plugin WP-Cache, used to cache and speed up wordpress powered websites, I came across a list of commens on the plugin creator&#8217;s website where alot of comments had questions as to how one should create a symlink that was required in the plugin installation.<span id="more-40"></span></p>
<p><!--adsense#468artikkelbanner--></p>
<p>Alot of us (me included) do not have shell access and are unable to execute the Unix &#8220;ln&#8221; command to make this happen. But fear not, there is an easy php-solution to this problem. The function is called &#8230; yeah you guessed it: symlink().</p>
<p>The function works like this:<br />
<code>bool symlink ( string target, string link )</code></p>
<p><strong>HERE IS HOW</strong> you can use it to set up the required symlink in the WP-Cache installation: </p>
<p>1. Create a blank php-file in the root of your website. Name it createsymlink.php.</p>
<p>2. Paste the code below into the file and save it. Make sure you replace &#8220;/path/to/website/&#8221; with your website&#8217;s real path.</p>
<p><code><br />
$success = symlink('/path/to/website/wp-content/plugins/wp-cache/wp-cache-phase1.php', '/path/to/website/wp-content/advanced-cache.php');<br />
if ($success)<br />
&nbsp;&nbsp;&nbsp;&nbsp;echo "Symlink was created";<br />
else<br />
&nbsp;&nbsp;&nbsp;&nbsp;echo "Symlink creation failed!";<br />
</code></p>
<p>3. Make sure that your wp-content folder is writeable</p>
<p>4. Use your webbrowser and open www.yourwebsite.com/createsymlink.php, making the code run. This should fix the symlink creation for you and the success message should be displayed on screen.</p>
<p>5. Delete createsymlink.php from your server.</p>
<p><strong>Related links</strong><br />
&raquo; <a href="http://no.php.net/symlink">Read the php documentation on the symlink function</a><br />
&raquo; <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP-Cache plugin website</a></p>
<p>[tags]WordPress, symlink, unix commands, php functions, caching, wp-cache[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2006/08/09/creating-symlinks-without-shell-access/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Mambo announces more improvements in 4.6</title>
		<link>http://www.torkiljohnsen.com/2006/08/08/mambo-announces-more-improvements-in-46/</link>
		<comments>http://www.torkiljohnsen.com/2006/08/08/mambo-announces-more-improvements-in-46/#comments</comments>
		<pubDate>Tue, 08 Aug 2006 14:16:05 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2006/08/08/mambo-announces-more-improvements-in-46/</guid>
		<description><![CDATA[Production release of Mambo 4.6 is expected within this month, and Team Mambo has now announced a list of new improvements to be expected. The increase in competition between Joomla and Mambo seems to be benefiting the end users at the moment. Both developer teams strive to deliver the best results for their community, and [...]]]></description>
			<content:encoded><![CDATA[<p>Production release of Mambo 4.6 is expected within this month, and Team Mambo has now announced a list of new improvements to be expected. <span id="more-39"></span></p>
<p><!--adsense#250kvadrat--><strong>The increase in competition</strong> between Joomla and Mambo seems to be benefiting the end users at the moment. Both developer teams strive to deliver the best results for their community, and several new additions to the upcoming &#8220;separation&#8221;-releases (J!1.5 and M4.6) have been appearing. It&#8217;ll be exciting to follow this development after the separation of the two is final, to see if the developers slow down again.</p>
<p>From the recent newsflash at Mamboserver, I find a few very interesting new features indeed. These include a language manager for facilitating translation of the Mambo core, significant database performance improvements including a statement about getting better performance over &#8220;competing systems&#8221; (read: Joomla), and a brand new comments component for allowing comments to content items.</p>
<p><strong>The new language manager</strong> is interesting because it hasn&#8217;t been done before, and because translation is important for a more wide spread acceptance of the system. This could help Mambo get a boost and a head start in countries that do not use English too much and are still without native translations of Joomla or Mambo.</p>
<p><strong>The statement on better performance</strong> is interesting both because database performance has always been an issue with Mambo and Joomla, especially on larger sites, and because my own preliminary tests of Joomla 1.5 and Mambo 4.6 showed that this was in fact not true. Now, with this new release I will test their performance again and compare the two head to head to see what is indeed the case. Stay tuned for more info on that bit.</p>
<p><strong>The launch of the comments component</strong> is indeed a strange and interesting turn of events too. First of all: There are already quite a few comment components out there, both standalone and forum integrated ones. Is MamboTeam trying to squeeze some 3rd party developers out of the market, or are they filling a gap because of lack of functionality in existing solutions? In either case I think it&#8217;s good because comment functionality has, with the rise of the blog format in recent years, become a neccessity in personal webpages. This can possibly get more bloggers to check out Mambo in the future? Other questions that pop into mind: Will Joomla follow? What is next? Trackback and blogpinging?</p>
<p><!--adsense#468artikkelbanner--></p>
<p><strong>Here is a copy-paste of the elements mentioned in the Mamboserver newsflash:</strong></p>
<ul>
<li>A new Language Manager that makes translating the Mambo core into additional languages a breeze.</li>
<li>Totally revamped embedded Help Screens for context-sensitive help â€“ users no longer need to be connected to the Internet to access help files.</li>
<li>Improved MySQL5 compatibility and general database performance.</li>
<li>A new customizable WYSIWYG editor, MOStlyCE, based on the latest version of TinyMCE â€“ provides greatly improved editing and content formatting.</li>
<li>More efficient code generates significantly fewer database calls giving 4.6 better performance over previous versions of Mambo â€“ and over competing systems.</li>
<li>Several new variations of the default CSS-based template, which provides a great building block for the creation of custom templates.</li>
<li>Enhanced security makes 4.6 the most secure Mambo ever.</li>
<li>A new content module for displaying the most recent content items in their entirety.</li>
<li>A new comments component so site visitors can add comments to content items.</li>
</ul>
<p>[tags]Mambo, Mambo 4.6, mambo features, joomla, blogging[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2006/08/08/mambo-announces-more-improvements-in-46/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mambo and Joomla exposed as script kiddies have their summer holidays</title>
		<link>http://www.torkiljohnsen.com/2006/07/19/mambo-and-joomla-exposed-as-script-kiddies-have-their-summer-holidays/</link>
		<comments>http://www.torkiljohnsen.com/2006/07/19/mambo-and-joomla-exposed-as-script-kiddies-have-their-summer-holidays/#comments</comments>
		<pubDate>Wed, 19 Jul 2006 14:59:47 +0000</pubDate>
		<dc:creator>tj</dc:creator>
				<category><![CDATA[Content management]]></category>

		<guid isPermaLink="false">http://www.torkiljohnsen.com/2006/07/19/mambo-and-joomla-exposed-as-script-kiddies-have-their-summer-holidays/</guid>
		<description><![CDATA[Both Mambo and Joomla have in the recent weeks had their skirts lifted by hackers who have found vulnerabilities in the sourcecode and started taking advantage of this. I have seen everything from simple defacings to the more advanced eggdrop plantations and DDoS attacks. After finding vulnerabilities in both the Mambo and Joomla cores, the [...]]]></description>
			<content:encoded><![CDATA[<p>Both Mambo and Joomla have in the recent weeks had their skirts lifted by hackers who have found vulnerabilities in the sourcecode and started taking advantage of this. I have seen everything from simple defacings to the more advanced eggdrop plantations and DDoS attacks. After finding vulnerabilities in both the Mambo and Joomla cores, the fairytale continued with the discovery of several components and modules that had holes in them too. Here is a short list of components and modules you should avoid, or patch or remove completely if you have them installed:<span id="more-36"></span></p>
<p><!--adsense#250kvadrat--><strong>Background</strong><br />
I work for a company that has quite a few Joomla clients, and a few of these got hacked over the passed few days. These attacks ranged from the annoying but harmless defacings up to the more hostile server takeover attempts. A skilled and dedicated guy at our hosting provider (kudos to Sigurd there) tracked down some of these script kiddies and got some info off them. Among other things, the URL for the site they use to check for new scripts they can use to hack people.</p>
<p>Being a very unexperienced hacker, I had never heard of this site. So I visited their favourite hacks list and compiled a small list over Mambo and Joomla components and modules I could find that were listed and targetted for attack. So if you are currently using one or more of these, you should uninstall, delete, patch or whatever you want to do. Just don&#8217;t leave it unchanged, cause it might be a gaping hole into your website and ultimately your webserver.</p>
<p><!--adsense#468artikkelbanner--></p>
<p><strong>Here&#8217;s the list, updated with version numbers you can check against your own:</strong></p>
<ul>
<li>com_videodb < = 0.3en</li>
</li>
<li>SMF Forum Mambo Component < = 1.3.1.3</li>
</li>
<li>extcalendar < = 2.0</li>
</li>
<li>com_loudmouth < = 4.0j</li>
</li>
<li>pc_cookbook < = 0.3</li>
</li>
<li>per_forms < = 1.0</li>
</li>
<li>MiniBB < = 1.5a</li>
</li>
<li>com_hashcash < =1.2.1</li>
</li>
<li>HTMLarea3 < = 1.5</li>
</li>
<li>Sitemap < = 2.0</li>
</li>
<li>pollxt < = 1.22.07</li>
</li>
<li>SimpleBoard < = 1.1.0</li>
</li>
<li>com_forum < = 1.2.4 RC3</li>
</li>
<li>galleria < = 1.0b</li>
</li>
<li>Pearl for Mambo < = 1.6</li>
</li>
<li>CBSMS < = 1.0</li>
</li>
<li>multibanners < = 1.0.1</li>
</li>
<li>Mam-Moodle < = alpha</li>
</li>
<li>MoSpray < = 1.8RC1</li>
</li>
</ul>
<p><strong>And some more</strong>, not from the script kiddies hotlist, but from the Joomla forums:</p>
<ul>
<li>Mambo Comspray (mospray) < = 1.8 RC1</li>
</li>
<li>Mosets Tree < = 1.58</li>
</li>
<li>com_multibanners (unknown version)</li>
<li>BSQ Sitestats < = 2.1.0</li>
</li>
<li>JoomlaLib < = 1.2.1 Beta</li>
</li>
<li>OpenSEF 2.0.0 RC5</li>
<li>Google PageRank Module < = v1</li>
</li>
<li>JoomlaBoard < = 1.1.1</li>
</li>
<li>PHP Event Calendar < = 1.4</li>
</li>
<li>Advanced Poll < = 2.20</li>
</li>
<li>Jombook (unknown version)</li>
<li>mosMedia < = 1.0.8</li>
</li>
</ul>
<p><strong>Take action</strong><br />
Visit the Joomla/Mambo extensions sites and look for updates. The <a href="http://forum.joomla.org/index.php/board,296.0.html">Joomla 3rd party security forum</a> is a good place to start.</p>
<p>If you are a producer of a 3rd party component to any of these Content Management Systems you should read up on the Mambo or Joomla forums about these vulnerabilities to make sure your component is still safe to use. If you are a user of 3rd party software in relation to Mambo or Joomla, now is the time to contact the software developers and ask them if they have done their job properly. (<em>after</em> giving them credits for their great software first ofcourse!)</p>
<p><em>Disclaimer: I have not tested any of these hacks or checked for upgrades on any of these components or modules. I&#8217;m just telling you what I read. Stuff like extcalendar has already gotten me into alot of trouble, since it has this nice &#8220;powered by extcalendar&#8221; at the bottom, making it easy to find hackable sites by doing a simple google search.</em></p>
<p>[tags]Mambo, Joomla, hacking, script kiddies, security, security holes[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.torkiljohnsen.com/2006/07/19/mambo-and-joomla-exposed-as-script-kiddies-have-their-summer-holidays/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.435 seconds -->

