<?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>iJoomla Blog &#187; SEO</title>
	<atom:link href="http://www.ijoomla.com/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ijoomla.com/blog</link>
	<description>iJoomla Blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:39:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Remove the Joomla meta name generator tag</title>
		<link>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/</link>
		<comments>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 16:39:10 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla 1.6]]></category>
		<category><![CDATA[joomla 1.7]]></category>
		<category><![CDATA[joomla 2.5]]></category>
		<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1233</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/"><img align="right" hspace="5" width="90" height="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/joomla-generator1-100x100.png" class="imgtfe" alt="remove joomla meta generator" title="joomla-generator" /></a>Do you want to remove the meta tag &#8220;generator&#8221; from your Joomla site?  It&#8217;s very easy to do. In this post I will show you how to do it with a plugin, and also how to do it with a single line of code. Why do I want to remove it? Ideally you do not want large [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fremove-joomla-meta-name-generator-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-1240" title="joomla-generator" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/joomla-generator1.png" alt="remove joomla meta generator" width="200 " height="200" /></p>
<p>Do you want to remove the meta tag &#8220;generator&#8221; from your Joomla site?  It&#8217;s very easy to do.<br />
<br style=”height:2em” /><br />
In this post I will show you how to do it with a plugin, and also how to do it with a single line of code.</p>
<p><span id="more-1233"></span></p>
<h3>Why do I want to remove it?</h3>
<p>Ideally you do not want large amonts of unnecessary code in your website.  You do not want to make it harder for Google and search engines to find what they need&#8211;you want to make it easier.  Now I understand, this one line of code isn&#8217;t exactly a ton of bloat, but it all adds up over time.  A bit of code here, an extra meta there, and all of a sudden you have a huge index file that takes ages to load.  Keep things tidy.</p>
<p><img class="aligncenter size-full wp-image-1249" title="remove-meta" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/remove-meta.png" alt="remove meta generator" width="630" height="139" /><br />
<br style=”height:4em” /></p>
<h3>Give me a plugin.  Code scares me.</h3>
<p>By far the easiest way is to use the Joomla plugin <a href="http://extensions.joomla.org/extensions/site-management/seo-a-metadata/12556" target="_blank">ByeByeGenerator</a>.  Install the plugin, enable it, verify the meta tag is removed in the source code and you are done.  Not only is the method the easiest, it will work for any version of Joomla.  1.5, 1.6, 1.7 &amp; 2.5.  This method is also persistent, so if you change your templates a lot or do any updates, this plugin will always work and never get overridden.  But what if you are a purist?</p>
<p><img class="aligncenter size-full wp-image-1252" title="enabled-plugin" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/enabled-plugin.png" alt="enabled joomla plugin" width="630" height="194" /><br />
<br style=”height:4em” /></p>
<h3>I don&#8217;t want another plugin, just tell me how to do it manually</h3>
<p>The method to removing the meta name generator tag for Joomla varies between versions.  On Joomla 2.5 you can simply add this code to your index.php file in your template.</p>
<p><code>JFactory::getDocument()-&gt;setGenerator('');</code></p>
<p>Put it just after the line //no direct access.  This method will vary greatly on what template you are using and from what company, so I cannot get too detailed.  For example YooThemes has a different template structure then RocketThemes.  You will have to noodle around a bit yourself in order to do this.  The main advantage of editing the template code instead of installing a plugin is less overhead.  The fewer plugins you have, the faster your site will be, and queries add up fast.<br />
<br style=”height:4em” /></p>
<h3>Conclusion</h3>
<p>This is one of the few cases I&#8217;d suggest using a plugin over editing code.  This plugin totally removes the meta name generator tag, installs in no time at all and get&#8217;s the job done.  I use this plugin personally for the Joomla sites I build.  I heartily recommend it.</p>
<p style="text-align: center;"><a href="http://seo.ijoomla.com"><img class="aligncenter size-full wp-image-1202" title="ijoomla-seo-products-learn-more" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/ijoomla-seo-products-banner.jpg" alt="joomla seo products" width="630" height=" " /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Fast Is Your Site? We’ll Tell You!</title>
		<link>http://www.ijoomla.com/blog/how-fast-is-your-site/</link>
		<comments>http://www.ijoomla.com/blog/how-fast-is-your-site/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:54:45 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1010</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/how-fast-is-your-site/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/speedcheck.gif" class="imgtfe" alt="iJoomla Speed Check Module" title="speedcheck" /></a>Want to know how fast your site really is? Our new Speed Check module will tell you. Just install it into your Joomla site to see your page load time. It’s a quick, simple — and free — way to find out if your Joomla website is slow. And you do need to know your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fhow-fast-is-your-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_1018" class="wp-caption alignleft" style="width: 190px"><img class="size-full wp-image-1018 " title="speedcheck" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/speedcheck.gif" alt="iJoomla Speed Check Module" width="180" height="93" /><p class="wp-caption-text">iJoomla Speed Check Module</p></div>
<p>Want to know how fast your site really is? Our new <a href="http://downloads.ijoomla.com/joomla-downloads/ijoomla-tools/free-extensions/ijoomla-speed-check-module">Speed Check module</a> will tell you. Just install it into your Joomla site to see your page load time. It’s a quick, simple — and free — way to find out if your Joomla website is slow.</p>
<p>And you do need to know your site’s speed. Google recently announced that your Joomla loading speed will be a deciding factor in calculating your page rank.</p>
<p>You know that a high placement on search engines is absolutely essential to your website’s success. There’s little point in having a beautiful, well-designed website if nobody can find it.</p>
<p style="text-align: left;"><a href="http://seo.ijoomla.com/" target="_blank"><img class="size-full wp-image-1019 aligncenter" title="seo" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/seo.png" alt="iJoomla SEO" width="400" height="60" /></a><br />
And we’re dedicated to helping you reach the top of those placements. That was why we released <a href="http://seo.ijoomla.com/">iJoomla SEO</a>, a tool that helps you optimize your website for search engines and monitor your keywords on Google. It’s been a huge success, helping thousands of Joomla website owners over the last couple of years save time and win better rankings on search engines.</p>
<p>We’ve now decided to allocate some of the profits from iJoomla SEO to develop free SEO tools for the Joomla community. This Speed Check module is our first.</p>
<h2>Put Your Site Speed First</h2>
<p>Site speed is often an afterthought in the development process. It needs to be front and center. Our new module allows you to stay on top of your site’s speed, so that if it’s too slow, you can do something about it.</p>
<p>And there’s always something you can do about it.</p>
<p>In “<a href="http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/">5 Ways to speed up Joomla and Make Your Site Faster</a>,” our SEO expert Matt King has provided some invaluable tips to help you speed up and optimize your Joomla site. It will make a huge difference in how much love Google gives you.</p>
<h2>Designed for Your Site</h2>
<p>You can control the colors of every element of the module, including the border color, background color, text color and “provided by” color, to make them work with your site’s design.</p>
<p>If you prefer that your visitors won’t see the module, you can also select “special” as the access level. You’ll have to be logged in as admin on the front end to see your speed.</p>
<div id="attachment_1020" class="wp-caption alignnone" style="width: 513px"><img class="size-full wp-image-1020" title="speedcheck_admin2" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/speedcheck_admin2.gif" alt="You can control every color in the module" width="503" height="170" /><p class="wp-caption-text">You can control every color in the module</p></div>
<h2>How to use iJoomla Speed Check</h2>
<ol>
<li><a href="http://downloads.ijoomla.com/joomla-downloads/ijoomla-tools/free-extensions/ijoomla-speed-check-module" target="_blank">Download it here</a></li>
<li>Unzip the file.</li>
<li>Choose a version (Joomla 1.5 or Joomla 1.6) and unzip that file again.</li>
<li>Install the module and plugin.</li>
<li>Publish the plugin.</li>
<li>Publish the module.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/how-fast-is-your-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>5 ways to speed up Joomla &amp; make your site faster.</title>
		<link>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/</link>
		<comments>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:28:45 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=965</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-speed.jpg" class="imgtfe" alt="speed up joomla image" title="joomla-speed" /></a>Why should I speed up Joomla? Google recently announced that it uses your Joomla loading speed as a deciding factor on where your page ranks in the SERPS, (search engine results). Site speed has generally been more of an after thought to most people, but now it needs to be front and center in your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2F5-ways-to-speed-up-joomla%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h2>Why should I speed up Joomla?</h2>
<p>Google recently <a href="http://conversionroom.blogspot.com/2011/05/measure-page-load-time-with-site-speed.html" target="_blank">announced</a> that it uses your Joomla loading speed as a deciding factor on where your page ranks in the <a href="http://en.wikipedia.org/wiki/Search_engine_results_page" target="_blank">SERPS</a>, (search engine results).  Site speed has generally  been more of an after thought to most people, but now it needs to be front and center in your development cycle.  It&#8217;s pretty embarrassing having a terrific site, but having to wait 12 seconds for it to load.  In this article we will discuss how to measure your <strong>Joomla speed </strong>and 5 tips on how to make it faster.</p>
<h3>Measure your Joomla speed.  Get a baseline</h3>
<div id="attachment_968" class="wp-caption alignright" style="width: 260px"><img class="size-full wp-image-968 " title="joomla-speed" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-speed.jpg" alt="speed up joomla image" width="250" height="167" /><p class="wp-caption-text">Make Joomla as fast as a bullet</p></div>
<p>There are lot&#8217;s of tools to measure your <strong>Joomla speed</strong>.  Make sure you are consistent and use the same one throughout your testing.</p>
<ul>
<li>iJoomla now has a free module you can install in your Joomla site to instantly display your page load time.   <a href="http://downloads.ijoomla.com/joomla-downloads/ijoomla-tools/free-extensions/ijoomla-speed-check-module">You can grab it here</a>.   It is free for anybody and a quick an simple way to find out if <strong>Joomla is slow</strong>.</li>
<li>Another option is to add an additional line to your Google Analytics tracking code. You can find out more info about this <a href="http://www.google.com/support/analyticshelp/bin/answer.py?answer=1205784" target="_blank">here</a> if you are comfortable with making this change.</li>
<li>An option directly from Google is to use the <a href="http://pagespeed.googlelabs.com/" target="_blank">page speed testing tool</a>.   Be warned though, it will use a lot of technical terms.</li>
<li>Yet another option is to become familiar with the <a href="http://tools.pingdom.com/" target="_blank">tools</a> at Pingdom.com.   They are a terrific website monitoring company that can provide you with all sorts of info about your site.</li>
</ul>
<p>You may ask yourself, <em>&#8220;Well how fast should my site load?&#8221;</em> That&#8217;s a tough question to answer.   Everybody will be different.   If you use the Google pagespeed tool they will assign you a number.   Take that number.   Anywhere from 1-100, with 100 being the best.   Strive to get as close to 90+ as possible.</p>
<h3>1) Speed up Joomla by compressing your images better</h3>
<p>One of the easiest things to do is make sure your images are optimized for the web properly.  Avoid using huge, slow loading images.  Optimize the size of the images you wish to use in Adobe Fireworks for the highest compression, with the least image degradation.  Photoshop will work, but it is not the right tool for the job.  Fireworks just compresses better.   (<a href="http://webdesignerwall.com/general/fireworks-vs-photoshop-compression" target="_blank">Learn more</a> about why Fireworks is a better option for image compression. )<br />
Above all, never, <em>NEVER</em>, upload a 1200&#215;1200 pixel image, and resize it using html or css.  The huge full sized image will load, but just get resized on the fly by the server.  Multiply that by a 100 or so visitors and your server is overloaded and about to go offline and of course turn your <strong>Joomla speed</strong> to mush.</p>
<div id="attachment_975" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-975 " title="compress-joomla-images" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/compress-joomla-images.jpg" alt="image showing joomla speed" width="600" height="234" /><p class="wp-caption-text">Please make with the squishy-squishy for your images</p></div>
<h3>2) Extensions, scripts, bloat</h3>
<p>Joomla allows you to install an almost infinite amount of extensions and plugins and tools in seconds.  The problem is all of these have been developed by individuals who may not share the same coding practices as the Joomla core team.  One component might use jQuery 1.0 with is 19kb, one nifty gallery might use jQuery 1.5, but sends it to you uncompressed so it is 208kb, your forum might be using MooTools, (but not the one in Joomla) and thats another 180kb.   Then some other wiz-bang of an extension has some .js that is 248kb.   Before you know it you have 10 different types of frameworks being loaded on EACH PAGE LOAD.   That is huge code bloat and will bring your server to it&#8217;s knees, as well as make page load times incredibly slow.<br />
When installing a Joomla component you cannot always go for the fanciest or prettiest or nifty-ish, you need to factor in what javascript it uses as well.   If you are clever, you can do all the cool things you need, and load only a small amount of .js and save yourself loads of headaches.<br />
If anything, you need to decide if you really need that cool toy on your site, or if you simply put it there for eye candy.  Ideally, keep the amount of .js to five and under.   One is ideal.</p>
<div id="attachment_980" class="wp-caption aligncenter" style="width: 550px"><img class="size-full wp-image-980 " title="too-much-js" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/too-much-js.png" alt="if joomla is slow, this might be why" width="540" height="255" /><p class="wp-caption-text">ZOMG!  javascript overload!</p></div>
<h3>3) Compress, compress, compress</h3>
<p>In your Joomla configuration there is a setting called gzip compression.   If it is not enabled, click it and save it.  This will allow all the css and html to be compressed on the server and a much smaller packet of data get&#8217;s sent to your computer, and then uncompressed by your browser.  This might seem like a lot of work, but it will make pages load faster.<br />
(some webhosts have this enabled already on their servers.  If enabling this setting in Joomla breaks your site, the chances are good it is already being compressed and you can just change it back. It&#8217;s not possible to do multiple compressions with gzip.)</p>
<div id="attachment_983" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-983 " title="gzip-joomla" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/gzip-joomla.jpg" alt="compress using gzip for joomla" width="600" height="134" /><p class="wp-caption-text">zip-zip-zipity-zip it.</p></div>
<h3>4) Anybody got any extra cache?</h3>
<p>Caching can be enabled in your Joomla configuration.  It takes frequently accessed items and stores them so it can spit them out at you faster.  The upside, your pages load faster, the downside, your content is not always 100% fresh.   For most sites this is no huge deal, unless you are changing articles every 30 mts or so, and if you are you have other issues outside of the scope of this article.<br />
Save this tip for when your site is completed and ready to go live.  If you enable this while you are still building your site, you will wonder why changes to pages or image are not taking effect and drive yourself bonkers.</p>
<div id="attachment_988" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-988 " title="joomla-cache" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-cache.jpg" alt="speedup your joomla site with cache" width="600" height="128" /><p class="wp-caption-text">All the cache in the world.</p></div>
<h3>5) Does your webhost stink?</h3>
<p>An often overlooked issue with<strong> slow Joomla</strong> loading websites is a poor webhost.   Are you on a shared server?  If so you are sharing your internet connection with hundreds of other websites.  Where is your host located?  Are you located in Florida and your webhost is in California?  Did one of the sites on your shared host get hacked and use up tons of bandwidth?  These are all questions you need to ask yourself.   Is the 4.99 cheapie hosting really good enough when your page load times are in the double digits?  If you have a desire to be a big site, with lot&#8217;s of traffic, you need a VPS or a dedicated server.  Shared hosting is for n00bs.</p>
<div id="attachment_989" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-989 " title="crappy-server" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/crappy-server.jpg" alt="is is not a god web host" width="600" height="150" /><p class="wp-caption-text">hey, is the server offline?</p></div>
<h3>Summary</h3>
<p>By following some of these tips, not only will Google potentially rank you higher in their search engine, your visitors will have a much nicer experience.   Your dad/mom/sister/buddy/neighbor might not be bothered by waiting 10 seconds for your site to load, but the people on the web need it now, or they will take their business some place else.</p>
<h3>How about you?</h3>
<p>Do you have any tips or tricks I didn&#8217;t cover?  Let us know in the comments, we would love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iJoomla SEO now supports Zoo and WordPress</title>
		<link>http://www.ijoomla.com/blog/ijoomla-seo-now-supports-zoo-and-wordpress/</link>
		<comments>http://www.ijoomla.com/blog/ijoomla-seo-now-supports-zoo-and-wordpress/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 00:11:10 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>
		<category><![CDATA[iJoomla SEO]]></category>
		<category><![CDATA[zoo]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/index.php?option=com_wordpress&#038;p=301&#038;Itemid=7070</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/ijoomla-seo-now-supports-zoo-and-wordpress/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2009/09/seo.png" class="imgtfe" alt="" title="seo" /></a>We&#8217;ve just released iJoomla SEO version 1.1.0 and many of the improvements it contains are down to you. As you know, we monitor user suggestions on our forum very closely and tackle a different extension each time. The latest version of iJoomla SEO is packed with suggestions raised by users: Choose your Google site. Now [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fijoomla-seo-now-supports-zoo-and-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.ijoomla.com/blog/wp-content/uploads/2009/09/seo.png" rel="lightbox[301]"><img class="alignright size-full wp-image-109" title="seo" src="http://www.ijoomla.com/blog/wp-content/uploads/2009/09/seo.png" alt="" width="80" height="80" /></a>We&#8217;ve just released <a href="http://www.ijoomla.com/ijoomla-seo/ijoomla-seo/index/" target="_blank">iJoomla SEO</a> version 1.1.0 and many of the improvements it contains are down to you. As you know, we monitor user suggestions on our forum very closely and tackle a different extension each time. The latest version of iJoomla SEO is packed with suggestions raised by users:</p>
<ul>
<li><strong>Choose your Google site.</strong> Now you can choose the Google site you use to monitor keywords. Just go to the settings page and replace the .com extension with any other Google extension.</li>
</ul>
<ul>
<li><strong>Extensions metatags sync</strong>. Previous versions of iJoomla SEO retained different metatag entries in supported extensions. Now those entries sync. When you upgrade, you will be asked to choose the metatags you want to keep.</li>
</ul>
<ul>
<li><strong>Categories for internal links and redirects.</strong> Now that you can place the internal links and redirects in different categories, we&#8217;ve also added a search box and a filter by category.</li>
</ul>
<ul>
<li><strong>More supported extensions.</strong> By popular demand, we&#8217;ve added support to more extensions, including Zoo by YooJoomla and WordPress by corePHP.</li>
</ul>
<p>As always, your upgrades are free! <a href="http://www.ijoomla.com/index.php?option=com_digistore&amp;view=digistorelicenses&amp;Itemid=6677" target="_blank">So get your copy now</a> and enjoy these great new features!</p>
<h2>The new features of iJoomla SEO version 1.1.0</h2>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="720" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=13155699&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="720" height="405" src="http://vimeo.com/moogaloop.swf?clip_id=13155699&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>How to upgrade iJoomla SEO</h2>
<ol>
<li><a href="http://www.ijoomla.com/index.php?option=com_digistore&amp;view=digistorelicenses&amp;Itemid=6677" target="_blank">Download iJoomla SEO</a></li>
<li>No need to unzip the file</li>
<li>No need to uninstall previous version</li>
<li>Go to extensions-&gt;install/uninstall and install the zip file there</li>
</ol>
<h3>Don&#8217;t have iJoomla SEO yet? <a href="http://www.ijoomla.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=view&amp;pid=94&amp;cid=47&amp;Itemid=7077">Buy it here</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/ijoomla-seo-now-supports-zoo-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO Templates, get them at JoomlaShack!</title>
		<link>http://www.ijoomla.com/blog/seo-templates-get-them-at-joomlashack/</link>
		<comments>http://www.ijoomla.com/blog/seo-templates-get-them-at-joomlashack/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:24:58 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[joomlashack]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/index.php?option=com_wordpress&#038;p=145&#038;Itemid=7070</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/seo-templates-get-them-at-joomlashack/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2009/11/joomlashack-300x157.jpg" class="imgtfe" alt="joomlashack" title="joomlashack" /></a>As you know, Search Engine Optimization (SEO) is the most cost-effective way to get more traffic to your site. A finely-tuned, search engine-optimized site can do wonders for your visibility &#8212; and your bank account! That&#8217;s why we created our newest component. iJoomla SEO makes search engine optimization easy and effective. It even makes it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fseo-templates-get-them-at-joomlashack%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong> </strong>As you know, Search Engine Optimization (SEO) is the most cost-effective way to get more traffic to your site. A finely-tuned, search engine-optimized site can do wonders for your visibility &#8212; and your bank account!</p>
<p><img class="alignright size-medium wp-image-150" title="joomlashack" src="http://www.ijoomla.com/blog/wp-content/uploads/2009/11/joomlashack-300x157.jpg" alt="joomlashack" width="300" height="157" />That&#8217;s why we created our newest component. <a href="http://www.ijoomla.com/ijoomla-seo/ijoomla-seo/index/">iJoomla SEO</a> makes search engine optimization easy and effective. It even makes it fun. We want to help you and your SEO efforts succeed!</p>
<p>Managing your metatags and monitoring your keywords with the iJoomla SEO component though are not the only ways to build your Google love. There are a number of other important strategies that can help you rank higher on Google. In particular, your site should be fast, accessible and table-free!</p>
<p>And that&#8217;s where are our friends at <a href="http://ijoomla.com/index.php?option=com_ijoomla_seo&amp;amp;id=4">Joomlashack</a> can help. They offer templates that are not only beautiful, but also <strong>SEO-friendly</strong>. Because there’s no point in having a slick site if no one ever sees it, is there?</p>
<h2>JoomlaShack templates have several critical SEO features:</h2>
<ul>
<li> The super-light code framework makes for<strong> fast loading!</strong></li>
<li> The powerful grid framework is <strong>easy for search engines</strong> to read.</li>
<li> The logo image replacement produces <strong>SEO-readable text</strong> read instead of an image.</li>
</ul>
<p><strong> Get JoomlaShack templates for a discount:</strong></p>
<p>These are templates that look great to readers and are loved by search engines. The coolest part? We persuaded Joomlashack to let us give you a BIG discount! Enter the promo code &#8220;<strong><span style="color: #ff00ff;">ijoomlaseo</span></strong>&#8221; and you’ll get 15% off JoomlaShack’s templates now.</p>
<p><a href="http://ijoomla.com/index.php?option=com_ijoomla_seo&amp;id=4" target="_blank">Visit JoomlaShack &gt;&gt; </a></p>
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/seo-templates-get-them-at-joomlashack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding K2 Support to iJoomla SEO</title>
		<link>http://www.ijoomla.com/blog/adding-k2-support-to-ijoomla-seo/</link>
		<comments>http://www.ijoomla.com/blog/adding-k2-support-to-ijoomla-seo/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 00:26:10 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>
		<category><![CDATA[iJoomla SEO]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[new version]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/index.php?option=com_wordpress&#038;p=54&#038;Itemid=7070</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/adding-k2-support-to-ijoomla-seo/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/images/stories/blog/k2logo.gif" class="imgtfe" alt="K2 meta tags suported by iJoomla SEO" title="K2 meta tags suported by iJoomla SEO" /></a>Due to popular demand, we&#8217;ve decided to add meta tag support to K2, the popular extension by JoomlaWorks.gr, to our iJoomla SEO.  So now, you will be able to edit all your K2 meta tags in one place, easily. This feature will be available in the next version of iJoomla SEO, coming in mid July [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fadding-k2-support-to-ijoomla-seo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img title="K2 meta tags suported by iJoomla SEO" src="http://www.ijoomla.com/images/stories/blog/k2logo.gif" alt="K2 meta tags suported by iJoomla SEO" align="left" />Due to popular demand, we&#8217;ve decided to add meta tag support to <a onclick="window.open(this.getAttribute('href'),'');return false;" href="http://k2.joomlaworks.gr/">K2</a>, the popular extension by JoomlaWorks.gr, to our <a href="http://www.ijoomla.com/index.php?option=com_content&amp;view=article&amp;id=849&amp;Itemid=6932">iJoomla SEO</a>.  So now, you will be able to edit all your K2 meta tags in one place, easily. This feature will be available in the next version of iJoomla SEO, coming in mid July 2009, stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/adding-k2-support-to-ijoomla-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Overview video of the new features of iJoomla SEO – coming soon</title>
		<link>http://www.ijoomla.com/blog/overview-video-of-the-new-features-of-ijoomla-seo-coming-soon/</link>
		<comments>http://www.ijoomla.com/blog/overview-video-of-the-new-features-of-ijoomla-seo-coming-soon/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 00:21:58 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>
		<category><![CDATA[iJoomla SEO]]></category>
		<category><![CDATA[new version]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/index.php?option=com_wordpress&#038;p=50&#038;Itemid=7070</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/overview-video-of-the-new-features-of-ijoomla-seo-coming-soon/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/images/stories/productlogos/seo.png" class="imgtfe" alt="iJoomla SEO" title="iJoomla SEO" /></a>Here&#8217;s a video that describes what are the new features that we&#8217;ve added to the upcoming version of iJoomla SEO. As you will be able to see, this new version is MUCH more robust, and allows you to monitor your keywords placement on Google, identify problematic pages on your site and fix them easily and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Foverview-video-of-the-new-features-of-ijoomla-seo-coming-soon%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img title="iJoomla SEO" src="http://www.ijoomla.com/images/stories/productlogos/seo.png" alt="iJoomla SEO" align="right" />Here&#8217;s a video that describes what are the new features that we&#8217;ve added to the upcoming version of <a href="http://www.ijoomla.com/index.php?option=com_content&amp;view=article&amp;id=849&amp;Itemid=6932">iJoomla SEO</a>. As you will be able to see, this new version is MUCH more robust, and allows you to monitor your keywords placement on Google, identify problematic pages on your site and fix them easily and create internal and external automatic links. These new features make iJoomla SEO a very complete solution for optimizing your Joomla site for Search Engines.<br />
<object width="550" height="393" data="http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/bootstrap.swf" type="application/x-shockwave-flash"><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="flashVars" value="thumb=http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/FirstFrame.jpg&amp;containerwidth=550&amp;containerheight=393&amp;content=http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/new.swf" /><param name="allowFullScreen" value="true" /><param name="scale" value="showall" /><param name="allowScriptAccess" value="always" /><param name="base" value="http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/" /><param name="src" value="http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/bootstrap.swf" /><param name="flashvars" value="thumb=http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/FirstFrame.jpg&amp;containerwidth=550&amp;containerheight=393&amp;content=http://content.screencast.com/users/meravknafo/folders/iJoomlaSEO/media/c88d33da-432f-4440-a735-7ec9c25e9d65/new.swf" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/overview-video-of-the-new-features-of-ijoomla-seo-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Joomla! SEO Tips and Tricks</title>
		<link>http://www.ijoomla.com/blog/top-10-joomla-seo-tips-and-tricks/</link>
		<comments>http://www.ijoomla.com/blog/top-10-joomla-seo-tips-and-tricks/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 23:31:55 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[iJoomla SEO]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[top 10]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/index.php?option=com_wordpress&#038;p=9&#038;Itemid=7070</guid>
		<description><![CDATA[SEO may sound complicated and expensive, but there are a number of things you can do to improve your search engine ranking that won&#8217;t have you spending a dime or tearing your hair out. Our friends at Alledia.com have put together a list &#8212; just for iJoomla&#8217;s newsletter subscribers &#8212; of the 10 simplest SEO [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Ftop-10-joomla-seo-tips-and-tricks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>SEO may sound complicated and expensive, but there are a number of things you can do to improve your search engine ranking that won&#8217;t have you spending a dime or tearing your hair out. Our friends at Alledia.com have put together a list &#8212; just for iJoomla&#8217;s newsletter subscribers &#8212; of the 10 simplest SEO tips and tricks for Joomla sites.</p>
<p>Alledia.com really are experts at SEO for Joomla, so when they talk search engines, we listen. <a href="http://www.ijoomla.com/seo-club/" target="_blank"></a></p>
<p><strong>1) Don&#8217;t install any sample data when you set up a Joomla! site.</strong></p>
<p>When you launch your Joomla! Site, it&#8217;s very easy to forget to delete all the demo articles that come with it. That will give you pages, links and newsfeeds that are irrelevant to your topic. Delete your sample data and don&#8217;t forget to empty your trash as well!</p>
<p><strong>2) Your Site Name should be your site&#8217;s name. </strong></p>
<p>There can be a temptation to cram as many keywords as possible into the &#8220;Site Name&#8221; field. It doesn&#8217;t help and when users register at your site, they get an email saying &#8220;Welcome to Widgets, Buy Widgets, Cheap Widgets, Bargain Widgets!&#8221; You don&#8217;t want that.</p>
<p><strong>3) Turn off your PDF links. </strong></p>
<p>When we analyze Joomla! Sites, we often find PDFs ranking higher than the original pages. Because PDF pages have no menu links, they&#8217;re a dead-end. Users can&#8217;t move from the PDF to the rest of your site. So turn off those links.</p>
<p><strong>4) Don&#8217;t waste your site&#8217;s link juice with lots of social bookmarking links. </strong></p>
<p>Lets face it, very few pages have a chance to hit the Digg home page or do well on Reddit, so only place those buttons on your best articles. Your visitors appreciate clean, uncluttered pages &#8212; and so do search engines.</p>
<p><strong>5) Redirect the www and non-www versions of your site to the same place. </strong></p>
<p>All you need to do is add this little piece of code to your .htaccess file. <span style="color: #ff0000;"><strong>Note: </strong></span>Replace MyDomain with your domain name and .com with your domain extension.</p>
<table border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<td bgcolor="#eeeeee">## Can be commented out if causes errors.</p>
<p>Options FollowSymLinks</p>
<p># mod_rewrite in use</p>
<p>RewriteEngine On</p>
<p>RewriteCond %{HTTP_HOST} ^MyDomain\.com$ [NC]</p>
<p>RewriteRule ^(.*)$ http://www.MyDomain.com/$1 [R=301,L]</p>
<p>RewriteCond %{HTTP_HOST} !^.*MyDomain\.com [NC]</p>
<p>RewriteRule (.*) http://www.MyDomain.com/$1 [R=301,L]</td>
</tr>
</tbody>
</table>
<p><strong>6) Turn on your cache. </strong></p>
<p>Search in Google and you&#8217;ll see a size for each site. Smaller, faster sites are more popular with visitors and with Google. One easy way to make your site act small and load faster is to turn on your cache in Global Configuration.</p>
<p><strong>7) Enter a full description for all your sections and categories.</strong></p>
<p>These pages are great for organizing your site&#8230; and for improving Page Rank. If you organize your sections and categories carefully, your site becomes very easy for both people and search-engine spiders to navigate.</p>
<p><strong> <img src='http://www.ijoomla.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Less is often more</strong></p>
<p>Having thousands of Joomla! pages indexed in Google isn&#8217;t always a good thing, especially if those pages don&#8217;t bring value. Some components, for example, can produce lots of extra pages that are completely worthless. One easy way to check if your site is putting garbage on Google is to search for site:mydomain.com. If you find pages that don&#8217;t have good content, you might want to remove them.</p>
<p><strong>9) Empty your global configuration metadata. </strong></p>
<p>I&#8217;m sure you&#8217;re all big fans of Joomla!, but I&#8217;m equally sure that &#8220;Joomla! &#8211; the dynamic portal engine and content management system&#8221; doesn&#8217;t describe your site. Take it out.<br />
<strong><br />
10) Be confident.</strong></p>
<p>Joomla! is fantastic software that allows you to easily create lots of high quality pages that are great for your SEO. If you keep a close eye on your site and take the time to learn how Joomla! works, there&#8217;s no reason why you shouldn&#8217;t have top-flight search engine rankings!</p>
<p>Need more SEO advice?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/top-10-joomla-seo-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

