<?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>systemBash &#187; Webdesign</title>
	<atom:link href="http://systembash.com/tags/tech/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://systembash.com</link>
	<description>Technology and System Administration</description>
	<lastBuildDate>Sat, 12 May 2012 13:13:12 +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>Using Google Analytics Or Other Javascript With Smarty Template Engine</title>
		<link>http://systembash.com/content/using-google-analytics-or-other-javascript-with-smarty-template-engine/</link>
		<comments>http://systembash.com/content/using-google-analytics-or-other-javascript-with-smarty-template-engine/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 20:45:53 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=752</guid>
		<description><![CDATA[On a website I was working on recently I added the Google Analytics tracking code to the footer of a Smarty template, like this: footer.tpl: 1234567891011121314151617&#60;script type=&#34;text/javascript&#34;&#62; &#160; var _gaq = _gaq &#124;&#124; []; &#160; _gaq.push(['_setAccount', 'UA-XXXXX-XX']); &#160; _gaq.push(['_trackPageview']); &#160; (function() { &#160; &#160; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>On a website I was working on recently I added the <a href="www.google.com/analytics/">Google Analytics</a> tracking code to the footer of a <a href="http://www.smarty.net/">Smarty template</a>, like this:</p>
<p>footer.tpl:</p>
<div class="codecolorer-container html4strict mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><br />
<br />
&nbsp; var _gaq = _gaq || [];<br />
&nbsp; _gaq.push(['_setAccount', 'UA-XXXXX-XX']);<br />
&nbsp; _gaq.push(['_trackPageview']);<br />
<br />
&nbsp; (function() {<br />
&nbsp; &nbsp; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br />
&nbsp; &nbsp; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';<br />
&nbsp; &nbsp; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br />
&nbsp; })();<br />
<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span><br />
<br />
<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></div></td></tr></tbody></table></div>
<p>However, since the javascript used by Google Analytics includes { and } tags, also used by the Smarty template engine, it tries to interpret this code and depending on your settings will either fail silently or or with an error such as this:</p>
<pre>Smarty error: [in footer.tpl line 148]: syntax error: unrecognized tag 'var'</pre>
<p>The fix is simple. Enclose your Google Analytics code, or other javascript code, with {literal} and {/literal}. The <a href="http://www.smarty.net/manual/en/language.function.literal.php">literal tag</a> allows you to place code to be displayed, well, literally.</p>
<p>The final code will look something like this:</p>
<div class="codecolorer-container html4strict mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">{literal}<br />
<br />
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text/javascript&quot;</span>&gt;</span><br />
<br />
&nbsp; var _gaq = _gaq || [];<br />
&nbsp; _gaq.push(['_setAccount', 'UA-XXXXX-XX']);<br />
&nbsp; _gaq.push(['_trackPageview']);<br />
<br />
&nbsp; (function() {<br />
&nbsp; &nbsp; var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br />
&nbsp; &nbsp; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';<br />
&nbsp; &nbsp; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br />
&nbsp; })();<br />
<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span><br />
<br />
{/literal}<br />
<br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">body</span>&gt;</span><br />
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></div></td></tr></tbody></table></div>
<p>Your website should now run properly with the Google Analytics code in place.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/using-google-analytics-or-other-javascript-with-smarty-template-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installatron WordPress Upgrade Disables Plugins</title>
		<link>http://systembash.com/content/installatron-wordpress-upgrade-disables-plugins/</link>
		<comments>http://systembash.com/content/installatron-wordpress-upgrade-disables-plugins/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 20:15:57 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Configurations]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[installatron]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://systembash.com/?p=341</guid>
		<description><![CDATA[I just found a quick tip on the Installatron forums. By default Installatron disables all WordPress plugins when doing an upgrade. This is due to the WordPress best practices for upgrading the version of their system. When you have a lot of WordPress installs to go through this is a big pain because it usually [...]]]></description>
			<content:encoded><![CDATA[<p>I just found a quick tip on the Installatron forums. </p>
<p>By default Installatron disables all WordPress plugins when doing an upgrade. This is due to the WordPress best practices for upgrading the version of their system. When you have a lot of WordPress installs to go through this is a big pain because it usually breaks the site. </p>
<p>According to <a href="http://installatron.com/forum/viewtopic.php?f=2&#038;t=110">this post</a>, you disable the disabling of the plugins by creating a file named .dont_disable_plugins in the directory that wordpress is installed to.</p>
<p>Via command line it is as simple as this:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">touch /path/to/wordpress/.dont_disable_plugins</div></td></tr></tbody></table></div>
<p>Execute that command on the command line (or upload an empty file via FTP/SCP) and the plugins will remain enabled. There is also an option in the installatron settings to enable this file creation upon install.</p>
<p>Note that if you have a plugin that is not compatible with a new version of WordPress, it may break your install!</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/installatron-wordpress-upgrade-disables-plugins/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>.htaccess stupid tips and tricks</title>
		<link>http://systembash.com/content/htaccess-stupid-tips-and-tricks/</link>
		<comments>http://systembash.com/content/htaccess-stupid-tips-and-tricks/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 02:53:03 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Configurations]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://systembash.com/content/htaccess-stupid-tips-and-tricks/</guid>
		<description><![CDATA[Found an encyclopedic list of &#8220;stupid&#8221; .htaccess tricks. Includes many useful ones such as being able to stop hotlinking of images and replacing with your own, increasing speed and security and general good-to-know htaccess information. Stupid htaccess tricks]]></description>
			<content:encoded><![CDATA[<p>Found an encyclopedic list of &#8220;stupid&#8221; .htaccess tricks. Includes many useful ones such as being able to stop hotlinking of images and replacing with your own, increasing speed and security and general good-to-know htaccess information.</p>
<p><center><a href="http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/">Stupid htaccess tricks</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/htaccess-stupid-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meebo loves iPhone &#8211; what about Windows Mobile?</title>
		<link>http://systembash.com/content/meebo-loves-iphone-what-about-windows-mobile/</link>
		<comments>http://systembash.com/content/meebo-loves-iphone-what-about-windows-mobile/#comments</comments>
		<pubDate>Fri, 17 Aug 2007 16:05:28 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[Other Technology]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Windows Mobile]]></category>
		<category><![CDATA[Internet Explorer Mobile]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[Opera for Wii]]></category>
		<category><![CDATA[web app]]></category>
		<category><![CDATA[web code]]></category>
		<category><![CDATA[Web Interface]]></category>
		<category><![CDATA[web interfaces]]></category>
		<category><![CDATA[Web publishers]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://systembash.com/content/meebo-loves-iphone-what-about-windows-mobile/</guid>
		<description><![CDATA[Meebo, which I have recently been turned on to, yesterday released an iPhone client which is basically a web interface to their chat website (which integrates AIM, Yahoo!, MSN, gtalk, and more). It looks great, take a peek: That is great that they are developing this and I applaud them for their efforts of releasing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://meebo.com">Meebo</a>, which I have recently been turned on to, <a href="http://blog.meebo.com/?p=346">yesterday released an iPhone client</a> which is basically a web interface to their chat website (which integrates AIM, Yahoo!, MSN, gtalk, and more). It looks great, take a peek:</p>
<p><center><a href='http://systembash.com/wp-content/uploads/2007/08/1134648657_9caf4e9c44.jpg' title='Meebo on iPhone'><img src='http://systembash.com/wp-content/uploads/2007/08/1134648657_9caf4e9c44.jpg' alt='Meebo on iPhone' /></a></center></p>
<p>That is great that they are developing this and I applaud them for their efforts of releasing updates on mobile devices.</p>
<p>Now, maybe I have iPhone envy, but wouldn&#8217;t it make sense to release this for Windows Mobile since the market share that Windows Mobile has is MUCH greater than iPhone? According to <a href="http://www.gartner.com/it/page.jsp?id=506328">Gartner</a>, Windows Mobile shipped a little over 3 million devices in the 1st quarter of 2007 alone (and that number does not even include &#8220;Smartphone&#8221; devices). iPhone, according to their own estimates [<a href="http://www.macnewsworld.com/story/58773.html">MacNewsWorld</a>], will sell a million units by Sept 30th. </p>
<p>I asked Meebo about their plans for Windows Mobile. Here is the response I received from Sue:</p>
<blockquote><p>As far as a Windows Mobile version of meebo, it&#8217;s<br />
something that we&#8217;ve thought about and are interested in, but at the<br />
moment we don&#8217;t have development time and  resources to add support for<br />
every device we&#8217;d like to.</p></blockquote>
<p>Here is where it gets tricky. There may be a great market penetration for Windows Mobile &#8211; but it is not easy to develop a web app for it because there is no standardized browser platform. Sure, you have Internet Explorer Mobile, but let&#8217;s face it &#8211; IEM is program is not very good at rendering web pages and would be a nightmare to develop for. Each version of Windows Mobile has differences in IEM that designers would have to be conscious of. The other browsers that Windows Mobile users have the option of using: <a href="http://www.opera.com/products/mobile/">Opera Mobile</a>, <a href="http://www.access-company.com/products/netfrontmobile/browser/33_wm.html">Netfront</a>, <a href="http://www.mozilla.org/projects/minimo/">Minimo</a> &#8211; do not have enough market penetration to make it development worthwhile. [on a sidenote, <a href="http://www.opera.com/products/mobile/">Opera Mobile</a> is the best browser for Windows Mobile, give it a try if you haven't already.]</p>
<p>Hence, we have the major difference between Windows Mobile and iPhone OS. Windows Mobile, although an &#8220;open&#8221; system that allows developers to create their own programs, has the problem of having a high cost to develop because you need to have Windows Mobile programming experience.</p>
<p>On the other hand, the iPhone, with it&#8217;s &#8220;Closed&#8221; OS, has a standardized browser that works well and is easy to write web code for. Web publishers around the world are free to write code for it in their native programming languages because the browser is the component that renders the graphics and takes care of the network.</p>
<p>So how is this problem resolved? Nintendo seems to have fixed this very same issue by offering <a href="http://www.opera.com/pressreleases/en/2007/04/12/">Opera for Wii</a> via the Wii Shop channel. Wii users who install this browser have many options available out there for web interfaces that are designed specifically for the Opera browser on Wii &#8211; most notable of these is <a href="http://www.orb.com">Orb</a>, which has a beautiful interface for the Wii.  Microsoft, ever the profitable company it is, wants users to use IE on Windows Mobile and therefore bundles IEM.</p>
<p>Microsoft needs to get with the program and make their browser easier to write for and more standards compliant. If that doesn&#8217;t happen, then we are definitely looking at an iPhone future for mobile devices.</p>
<p>If you use Windows Mobile, please <a href="http://blog.meebo.com/contact">contact Meebo</a> and let them know that you&#8217;d like to see a Windows Mobile version of Meebo!</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/meebo-loves-iphone-what-about-windows-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter mini small icon 16 x 16</title>
		<link>http://systembash.com/content/twitter-icon-mini/</link>
		<comments>http://systembash.com/content/twitter-icon-mini/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 00:09:51 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://systembash.com/content/twitter-icon-mini/</guid>
		<description><![CDATA[I&#8217;ve joined the Twitter world. My Twitter Profile. I&#8217;ve created a small 16 x 16 mini Twitter icon. Feel free to steal it! I resized the icon from deanjrobinson. Let me know if anyone knows of a Windows Mobile application for Twitter that includes a today screen plugin, that makes it easy to post to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve joined the <a href="http://twitter.com">Twitter</a> world. <a href="http://twitter.com/ddrager">My Twitter Profile</a>.</p>
<p>I&#8217;ve created a small 16 x 16 mini Twitter icon. Feel free to steal it! I resized the icon from <a href="http://www.deanjrobinson.com/sidenote/three-little-icons/">deanjrobinson</a>.</p>
<p><center><img src="http://systembash.com/wp-content/uploads/2007/07/twitter_16x16.gif" border=0></center></p>
<p>Let me know if anyone knows of a Windows Mobile application for Twitter that includes a today screen plugin, that makes it easy to post to twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/twitter-icon-mini/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Joomla! 1.0.12 Double Pathway Bug</title>
		<link>http://systembash.com/content/joomla-double-home-pathway-bug/</link>
		<comments>http://systembash.com/content/joomla-double-home-pathway-bug/#comments</comments>
		<pubDate>Wed, 27 Jun 2007 12:57:41 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Reinhard Hiebl]]></category>
		<category><![CDATA[whos site]]></category>
		<category><![CDATA[www.hieblmedia.de]]></category>

		<guid isPermaLink="false">http://systembash.com/content/joomla-double-home-pathway-bug/</guid>
		<description><![CDATA[Joomla! 1.0.12 appears to have a pathway bug. If you use a component other than com_frontpage for the &#8220;Home page&#8221; of Joomla &#8211; meaning the first link in mainmenu and the page that appears when you load the root of the Joomla! site &#8211; then when you click on an article you get a &#8220;Double [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.joomla.org">Joomla!</a> 1.0.12 appears to have a pathway bug. If you use a component other than com_frontpage for the &#8220;Home page&#8221; of Joomla &#8211; meaning the first link in mainmenu and the page that appears when you load the root of the Joomla! site &#8211; then when you click on an article you get a &#8220;Double pathway&#8221;, for example the pathway will state &#8220;Home > Home > Title of article&#8221;. The Home, or whatever you named this link, part will be duplicated. It isn&#8217;t a big problem but it does look unprofessional on your site!</p>
<p>I looked for ages for a fix to this problem, and eventually found it but the site I can not find the site I originally downloaded this fix from. It is courtesy of Reinhard Hiebl &#8211; <a href="http://www.hieblmedia.de">www.hieblmedia.de</a> (whos site is in German, one reason why I&#8217;m saving it here). I thought I would throw it online here for your download. The fix is in two parts of code in /includes/pathway.php.</p>
<p>At line 54 in includes/pathway.php:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; // Fix for dublicate home if home have childs //<br />
&nbsp; &nbsp; // by Reinhard Hiebl -- www.hieblmedia.de //////<br />
&nbsp; &nbsp; // get first published item<br />
&nbsp; &nbsp; &nbsp; &nbsp; $query = &quot;SELECT id&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n FROM #__menu&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n WHERE published = 1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n AND parent = 0&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n AND menutype = 'mainmenu'&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n AND access &lt;= &quot; . (int) $my-&gt;gid<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n ORDER BY ordering&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; . &quot;\n LIMIT 1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ;<br />
&nbsp; &nbsp; &nbsp; &nbsp; $database-&gt;setQuery( $query );<br />
&nbsp; &nbsp; &nbsp; &nbsp; $first_mitem = $database-&gt;loadResult( 'id' );<br />
&nbsp; &nbsp; ////////////////////////////////////////////////</div></td></tr></tbody></table></div>
<p>And at line 284 in includes/pathway.php immediately after &#8220;$item =&#038; $mitems[$mid];&#8221;:</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; &nbsp; // Fix for dublicate home if home have childs //<br />
&nbsp; &nbsp; &nbsp; &nbsp; // by Reinhard Hiebl -- www.hieblmedia.de //////<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ( $item-&gt;id == $first_mitem &amp;&amp; !$item-&gt;parent ) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; ////////////////////////////////////////////////</div></td></tr></tbody></table></div>
<p>I also have the file zipped up so you can just replace includes/pathway.php with this file. Note that this is for version 1.0.12 only, so it might not work with previous or newer versions.<br />
<a href="http://www.systembash.com/source/pathway_1.0.12_fix.zip"><br />
pathway.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/joomla-double-home-pathway-bug/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Comprehensive List of Names by Theme</title>
		<link>http://systembash.com/content/comprehensive-list-of-names-by-theme/</link>
		<comments>http://systembash.com/content/comprehensive-list-of-names-by-theme/#comments</comments>
		<pubDate>Wed, 16 May 2007 18:25:28 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://systembash.com/content/comprehensive-list-of-names-by-theme/</guid>
		<description><![CDATA[I happened upon a great site for a list of names. The list is meant to be used to get pet names, however I happened across this when I was looking for a list of themed names for servers. It includes both self-hosted pages and also links to other lists of names. List of names [...]]]></description>
			<content:encoded><![CDATA[<p>I happened upon a great site for a list of names. The list is meant to be used to get pet names, however I happened across this when I was looking for a list of themed names for servers. It includes both self-hosted pages and also links to other lists of names.</p>
<p><a href="http://lowchensaustralia.com/names.htm">List of names by theme</a>.</p>
<p>Even if you aren&#8217;t looking for a name, this site still includes interested lists to look through, if you are a geek like me :)</p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/comprehensive-list-of-names-by-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome Java based IRC Client</title>
		<link>http://systembash.com/content/awesome-java-based-irc-client/</link>
		<comments>http://systembash.com/content/awesome-java-based-irc-client/#comments</comments>
		<pubDate>Fri, 16 Feb 2007 05:54:32 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Programs]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://systembash.com/content/awesome-java-based-irc-client/</guid>
		<description><![CDATA[If you are looking for a great Java based IRC client, I would suggest PJIRC. It is really easy to integrate into your web pages; and includes the html code that you need to embed it onto a page. It is very flexible, for example you can tell it to automatically join a server that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a great Java based IRC client, I would suggest <a href="http://www.pjirc.com/">PJIRC</a>. It is really easy to integrate into your web pages; and includes the html code that you need to embed it onto a page.  It is very flexible, for example you can tell it to automatically join a server that you specify, and have it <a href="http://www.pjirc.com/help.php?p=0&#038;faq_id=13">automatically execute a command</a>, such as joining a channel.</p>
<p>It&#8217;s a small download, and runs really quickly, which was always a downside of the other IRC Java applets I&#8217;ve tried. The GUI really isn&#8217;t too bad. It has tabs for different channels, a full scroll window, right click ability for whois, op, de-op, and more.</p>
<p><a href="http://www.pjirc.com/">Download PJIRC</a></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/awesome-java-based-irc-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small 16&#215;16 icons for websites</title>
		<link>http://systembash.com/content/small-16x16-web-icons/</link>
		<comments>http://systembash.com/content/small-16x16-web-icons/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 06:37:35 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://systembash.com/content/small-16x16-web-icons/</guid>
		<description><![CDATA[Looking for some small 16 by 16 icons for your website or other application? So was I. Here is what I&#8217;ve found: bulletmadness &#8211; large general use list, some brand specific urlgreyhot &#8211; (cool star trek reference) &#8211; a few mini and brand specific famfamfam &#8211; the motherload of small icons sweetie &#8211; pretty large [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for some small 16 by 16 icons for your website or other application? So was I. Here is what I&#8217;ve found:</p>
<ul>
<li><a href="http://www.stylegala.com/features/bulletmadness/">bulletmadness</a> &#8211; large general use list, some brand specific</li>
<li><a href="http://urlgreyhot.com/personal/resources/mini_icons">urlgreyhot</a> &#8211; (cool star trek reference) &#8211; a few mini and brand specific</li>
<li><a href="http://www.famfamfam.com/lab/icons/">famfamfam</a> &#8211; the motherload of small icons</li>
<li><a href="http://sweetie.sublink.ca/">sweetie</a> &#8211; pretty large icon set</li>
<li><a href="http://www.favicon.fr/">favicon.fr</a> &#8211; its in french but easy enough to understand, and lots of icons here.</li>
<li><a href="http://paularmstrongdesigns.com/portfolio/#gallery2-icons">paul armstrong designs</a> &#8211; gallery2 icon set</li>
</ul>
<p>Here is my contribution, a <a href="http://www.myspace.com">MySpace</a> icon.<br />
<a href='http://systembash.com/wp-content/uploads/2007/01/myspace_16x16.png' title='myspace 16Ã—16'><img src='http://systembash.com/wp-content/uploads/2007/01/myspace_16x16.png' alt='myspace 16Ã—16' border=0/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://systembash.com/content/small-16x16-web-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 15/22 queries in 0.006 seconds using disk: basic

Served from: systembash.com @ 2012-05-24 00:01:57 -->
