<?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>Treewalker Blog</title>
	<atom:link href="http://www.treewalker.in/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.treewalker.in/blog</link>
	<description>Treewalker, a Magento Expert Company</description>
	<lastBuildDate>Wed, 11 Jan 2012 17:18:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Magento redirect functions</title>
		<link>http://www.treewalker.in/blog/magento-redirect-functions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=magento-redirect-functions</link>
		<comments>http://www.treewalker.in/blog/magento-redirect-functions/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 17:18:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[redirect functions]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=109</guid>
		<description><![CDATA[/* Redirect to certain url */ _redirectUrl($url) /* Redirect to certain path */ _redirect($path, $arguments=array()) /* Redirect to success page */ _redirectSuccess($defaultUrl) /* Redirect to error page */ _redirectError($defaultUrl) /* Set referer url for redirect in response */ _redirectReferer($defaultUrl=null) /* &#8230; <a href="http://www.treewalker.in/blog/magento-redirect-functions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>/* Redirect to certain url  */<br />
_redirectUrl($url)</p>
<p>/* Redirect to certain path */<br />
_redirect($path, $arguments=array())</p>
<p>/* Redirect to success page */<br />
_redirectSuccess($defaultUrl)</p>
<p>/* Redirect to error page */<br />
_redirectError($defaultUrl)</p>
<p>/* Set referer url for redirect in response */<br />
_redirectReferer($defaultUrl=null)</p>
<p>/*  Identify referer url via all accepted methods (HTTP_REFERER, regular or base64-encoded request param) */<br />
_getRefererUrl()</p>
<p>/* Check url to be used as internal */<br />
_isUrlInternal($url)</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/magento-redirect-functions/&text=Magento redirect functions" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/magento-redirect-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento urls and paths</title>
		<link>http://www.treewalker.in/blog/magento-urls-and-paths/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=magento-urls-and-paths</link>
		<comments>http://www.treewalker.in/blog/magento-urls-and-paths/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 17:35:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento paths]]></category>
		<category><![CDATA[magento urls]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=107</guid>
		<description><![CDATA[Below are the ways to access magento urls and paths : URLS: Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK) http://www.domain.com/index.php/ Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB) http://www.domain.com/ Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN) http://www.domain.com/skin/ Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS ) http://www.domain.com/js/ Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) http://www.domain.com/media/ Paths : base Mage::getBaseDir() Mage::getBaseDir(&#8216;base&#8217;) /var/www/magento/ app Mage::getBaseDir(&#8216;app&#8217;) /var/www/magento/app/ code Mage::getBaseDir(&#8216;code&#8217;) /var/www/magento/app/code design Mage::getBaseDir(&#8216;design&#8217;) /var/www/magento/app/design/ etc Mage::getBaseDir(&#8216;etc&#8217;) &#8230; <a href="http://www.treewalker.in/blog/magento-urls-and-paths/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Below are the ways to access magento urls and paths :</p>
<p>URLS:</p>
<p>Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK)</p>
<p>http://www.domain.com/index.php/</p>
<p>Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB)</p>
<p>http://www.domain.com/</p>
<p>Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN)</p>
<p>http://www.domain.com/skin/</p>
<p>Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_JS )</p>
<p>http://www.domain.com/js/</p>
<p>Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA)</p>
<p>http://www.domain.com/media/</p>
<p>Paths :</p>
<p>base	Mage::getBaseDir()<br />
Mage::getBaseDir(&#8216;base&#8217;)	 /var/www/magento/<br />
app	Mage::getBaseDir(&#8216;app&#8217;)	 /var/www/magento/app/<br />
code	Mage::getBaseDir(&#8216;code&#8217;)	/var/www/magento/app/code<br />
design	Mage::getBaseDir(&#8216;design&#8217;)	/var/www/magento/app/design/<br />
etc	Mage::getBaseDir(&#8216;etc&#8217;)	/var/www/magento/app/etc<br />
lib	Mage::getBaseDir(&#8216;lib&#8217;)	/var/www/magento/lib<br />
locale	Mage::getBaseDir(&#8216;locale&#8217;)	/var/www/magento/app/locale<br />
media	Mage::getBaseDir(&#8216;media&#8217;)	/var/www/magento/media/<br />
skin	Mage::getBaseDir(&#8216;skin&#8217;)	/var/www/magento/skin/<br />
var	Mage::getBaseDir(&#8216;var&#8217;)	/var/www/magento/var/<br />
tmp	Mage::getBaseDir(&#8216;tmp&#8217;)	/var/www/magento/var/tmp<br />
cache	Mage::getBaseDir(&#8216;cache&#8217;)	/var/www/magento/var/cache<br />
log	Mage::getBaseDir(&#8216;log&#8217;)	/var/www/magento/var/log<br />
session	Mage::getBaseDir(&#8216;session&#8217;)	/var/www/magento/var/session<br />
upload	Mage::getBaseDir(&#8216;upload&#8217;)	/var/www/magento/media/upload<br />
export	Mage::getBaseDir(&#8216;export&#8217;)	/var/www/magento/var/export</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/magento-urls-and-paths/&text=Magento urls and paths" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/magento-urls-and-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EBS Payment module for Magento</title>
		<link>http://www.treewalker.in/blog/ebs-magento-plugin-module/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ebs-magento-plugin-module</link>
		<comments>http://www.treewalker.in/blog/ebs-magento-plugin-module/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 14:37:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[E-Billing Solutions (EBS)]]></category>
		<category><![CDATA[E-Billing Solutions (EBS) payment module in magento]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[magento extension]]></category>
		<category><![CDATA[magento modules]]></category>
		<category><![CDATA[payment module in magento]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=97</guid>
		<description><![CDATA[As E-Billing Solutions (EBS) Payment gateway is one of the latest payment methodology used in India now days  as it provides a consultative approach to Indian Merchants for facilitating suitable online payment solutions and benefit from the exponential growth witnessed in &#8230; <a href="http://www.treewalker.in/blog/ebs-magento-plugin-module/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As <strong>E-Billing Solutions <a href="http://www.ebs.in/" target="_blank">(EBS)</a></strong> Payment gateway is one of the latest payment methodology used in India now days  as it provides a consultative approach to Indian Merchants for facilitating suitable online payment solutions and benefit from the exponential growth witnessed in E-commerce. Magento is one of the most popular E-commerce open source and its capturing the Indian Market as well . It help us to have the development faster and with advance features .We can provide as an extension also.</p>
<p>If you need the  <strong>E-Billing Solutions (EBS)</strong> Payment Module for Magento site I can provide you.<br />
If you have any queries please contact me at my<br />
Email address : surjan.negi@treewalker.in<br />
Skype: treewalker.technologies<br />
Gtalk: treewalker.technologies@gmail.com<br />
Phone: 080-65832315<br />
Mobile: +91-9916024769</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/ebs-magento-plugin-module/&text=EBS Payment module for Magento" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/ebs-magento-plugin-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>customers in admin taking too much time to load</title>
		<link>http://www.treewalker.in/blog/customers-in-admin-taking-too-much-time-to-load/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=customers-in-admin-taking-too-much-time-to-load</link>
		<comments>http://www.treewalker.in/blog/customers-in-admin-taking-too-much-time-to-load/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 18:12:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=88</guid>
		<description><![CDATA[In magento if you have many customers and trying to load the products in admin under customers &#62; manage customers , it takes too long to load or in some case it hangs the system . I faced this problem &#8230; <a href="http://www.treewalker.in/blog/customers-in-admin-taking-too-much-time-to-load/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In magento if you have many customers and trying to load the products in admin under customers &gt; manage customers , it takes too long to load or in some case it hangs the system .</p>
<p>I faced this problem in on of the project and after debugging the issue , i found that the issue is caused because of the  sql query created to load the customers in grid . In the sql query if you remove the &#8220;order by&#8221; clause then it loads the products without any problem</p>
<p>To make it work I just comment one line  at this path &#8220;app\code\core\Mage\Adminhtml\Block\Customer&#8221;</p>
<p>From the below code comment this line &#8220;<span style="line-height: 19px;">$this-&gt;setDefaultSort(&#8216;entity_id&#8217;);&#8221;</span></p>
<div id="_mcePaste">public function __construct()</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">parent::__construct();</div>
<div id="_mcePaste">$this-&gt;setId(&#8216;customerGrid&#8217;);</div>
<div id="_mcePaste">$this-&gt;setUseAjax(true);</div>
<div id="_mcePaste">//$this-&gt;setDefaultSort(&#8216;entity_id&#8217;);</div>
<div id="_mcePaste">$this-&gt;setSaveParametersInSession(true);</div>
<div id="_mcePaste">}</div>
<p>Try this ,i think it would help</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/customers-in-admin-taking-too-much-time-to-load/&text=customers in admin taking too much time to load" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/customers-in-admin-taking-too-much-time-to-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ebill payment module in magento</title>
		<link>http://www.treewalker.in/blog/ebill-payment-module-in-magento/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ebill-payment-module-in-magento</link>
		<comments>http://www.treewalker.in/blog/ebill-payment-module-in-magento/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 06:43:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento payment module]]></category>
		<category><![CDATA[payment module]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=84</guid>
		<description><![CDATA[Ebill is a payment method which is used . As i saw there is no extension for this payment module to integrate with magento .I have developed this module for one of my client . If you need the Ebill Payment &#8230; <a href="http://www.treewalker.in/blog/ebill-payment-module-in-magento/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ebill is a payment method which is used . As i saw there is no extension for this payment module to integrate with magento .I have developed this module for one of my client .</p>
<p>If you need the Ebill Payment Module for Magento site I can provide you.<br />
If you have any queries please contact me at my email address : surjan.negi@treewalker.in</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/ebill-payment-module-in-magento/&text=ebill payment module in magento" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/ebill-payment-module-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skip import row, is not valid value &#8220;&#8221; for field &#8220;type&#8221;</title>
		<link>http://www.treewalker.in/blog/skip-import-row-is-not-valid-value-for-field-type/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=skip-import-row-is-not-valid-value-for-field-type</link>
		<comments>http://www.treewalker.in/blog/skip-import-row-is-not-valid-value-for-field-type/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 06:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[bulk import]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=80</guid>
		<description><![CDATA[While trying the magento bulk import , we come across some of the issues . One of the issue which come across while updating the product which existing sku is as follow : &#8221; Skip import row, is not valid &#8230; <a href="http://www.treewalker.in/blog/skip-import-row-is-not-valid-value-for-field-type/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While trying the magento bulk import , we come across some of the issues . One of the issue which come across while updating the product which existing sku is as follow :</p>
<p>&#8221; Skip import row, is not valid value &#8220;&#8221; for field &#8220;type&#8221; &#8221;</p>
<p>The reason for this is that the data which you are trying to update using the sku , does not exist, so magento display this error.</p>
<p>I hope this will help ..</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/skip-import-row-is-not-valid-value-for-field-type/&text=Skip import row, is not valid value "" for field "type"" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/skip-import-row-is-not-valid-value-for-field-type/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Skip Import Row, Required Field &#8220;sku&#8221; Not Defined</title>
		<link>http://www.treewalker.in/blog/skip-import-row-required-field-sku-not-defined/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=skip-import-row-required-field-sku-not-defined</link>
		<comments>http://www.treewalker.in/blog/skip-import-row-required-field-sku-not-defined/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 07:52:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=74</guid>
		<description><![CDATA[While importing the bulk import of products in magento  we usually face this issue. &#8220;Skipping import row, required field &#8220;sku&#8221; is not defined.&#8221; The reason for this is that if the csv is not saved in UTF-8 format and you &#8230; <a href="http://www.treewalker.in/blog/skip-import-row-required-field-sku-not-defined/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While importing the bulk import of products in magento  we usually face this issue.</p>
<p>&#8220;Skipping import row, required field &#8220;sku&#8221; is not defined.&#8221;</p>
<p>The reason for this is that if the csv is not saved in UTF-8 format and you are using some special characters in the csv like some other language names . To avoid this you must save the csv using UTF-8 format .</p>
<p>To create a csv in UTF -8 format you just download the Open Office Org and when you are on the save screen, tick the “Edit filter settings” box and then once you click save you will be given the option of choosing the encoding format.</p>
<p>Hope this will fix the problem</p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/skip-import-row-required-field-sku-not-defined/&text=Skip Import Row, Required Field "sku" Not Defined" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/skip-import-row-required-field-sku-not-defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization Tutorials StepByStep</title>
		<link>http://www.treewalker.in/blog/search-engine-optimization-tutorials-stepbystep/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=search-engine-optimization-tutorials-stepbystep</link>
		<comments>http://www.treewalker.in/blog/search-engine-optimization-tutorials-stepbystep/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 15:44:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[affordable seo]]></category>
		<category><![CDATA[all in one seo pack tutorial]]></category>
		<category><![CDATA[all in one seo tutorial]]></category>
		<category><![CDATA[best seo]]></category>
		<category><![CDATA[best seo company]]></category>
		<category><![CDATA[best seo tools]]></category>
		<category><![CDATA[cheap seo]]></category>
		<category><![CDATA[cheap seo services]]></category>
		<category><![CDATA[free seo]]></category>
		<category><![CDATA[free seo tutorial]]></category>
		<category><![CDATA[free seo tutorials]]></category>
		<category><![CDATA[google seo]]></category>
		<category><![CDATA[google seo guide]]></category>
		<category><![CDATA[google seo tutorial]]></category>
		<category><![CDATA[guaranteed seo]]></category>
		<category><![CDATA[how to do seo]]></category>
		<category><![CDATA[how to seo]]></category>
		<category><![CDATA[internet marketing seo]]></category>
		<category><![CDATA[internet seo]]></category>
		<category><![CDATA[joomla seo]]></category>
		<category><![CDATA[joomla seo tutorial]]></category>
		<category><![CDATA[learn seo]]></category>
		<category><![CDATA[local seo]]></category>
		<category><![CDATA[marketing seo]]></category>
		<category><![CDATA[off page seo]]></category>
		<category><![CDATA[organic seo]]></category>
		<category><![CDATA[outsource seo]]></category>
		<category><![CDATA[professional seo]]></category>
		<category><![CDATA[professional seo services]]></category>
		<category><![CDATA[search engine optimization seo]]></category>
		<category><![CDATA[search engine optimization seo tutorial]]></category>
		<category><![CDATA[search engine optimization tutorial]]></category>
		<category><![CDATA[search engine seo]]></category>
		<category><![CDATA[sem seo]]></category>
		<category><![CDATA[seo advice]]></category>
		<category><![CDATA[seo agency]]></category>
		<category><![CDATA[seo analysis]]></category>
		<category><![CDATA[seo audit]]></category>
		<category><![CDATA[seo basics]]></category>
		<category><![CDATA[seo certification]]></category>
		<category><![CDATA[seo company]]></category>
		<category><![CDATA[seo consultants]]></category>
		<category><![CDATA[seo consulting]]></category>
		<category><![CDATA[seo course]]></category>
		<category><![CDATA[seo courses]]></category>
		<category><![CDATA[seo elite]]></category>
		<category><![CDATA[seo experts]]></category>
		<category><![CDATA[seo firm]]></category>
		<category><![CDATA[seo google]]></category>
		<category><![CDATA[seo guide]]></category>
		<category><![CDATA[seo help]]></category>
		<category><![CDATA[seo internet marketing]]></category>
		<category><![CDATA[seo jobs]]></category>
		<category><![CDATA[seo link building]]></category>
		<category><![CDATA[seo management]]></category>
		<category><![CDATA[seo marketing]]></category>
		<category><![CDATA[seo online]]></category>
		<category><![CDATA[seo optimisation]]></category>
		<category><![CDATA[seo optimization services]]></category>
		<category><![CDATA[seo optimization tutorial]]></category>
		<category><![CDATA[seo outsourcing]]></category>
		<category><![CDATA[seo package]]></category>
		<category><![CDATA[seo packages]]></category>
		<category><![CDATA[seo prices]]></category>
		<category><![CDATA[seo pricing]]></category>
		<category><![CDATA[seo promotion]]></category>
		<category><![CDATA[seo rank]]></category>
		<category><![CDATA[seo ranking]]></category>
		<category><![CDATA[seo report]]></category>
		<category><![CDATA[seo search engine]]></category>
		<category><![CDATA[seo search engine optimization]]></category>
		<category><![CDATA[seo service]]></category>
		<category><![CDATA[seo services]]></category>
		<category><![CDATA[seo services company]]></category>
		<category><![CDATA[seo site]]></category>
		<category><![CDATA[seo solutions]]></category>
		<category><![CDATA[seo specialists]]></category>
		<category><![CDATA[seo strategy]]></category>
		<category><![CDATA[seo submission]]></category>
		<category><![CDATA[seo techniques]]></category>
		<category><![CDATA[seo tips]]></category>
		<category><![CDATA[seo tips and tricks]]></category>
		<category><![CDATA[seo tutorial]]></category>
		<category><![CDATA[seo tutorial for beginners]]></category>
		<category><![CDATA[seo tutorial pdf]]></category>
		<category><![CDATA[seo tutorial step by step]]></category>
		<category><![CDATA[seo tutorial video]]></category>
		<category><![CDATA[seo tutorials for beginners]]></category>
		<category><![CDATA[seo tutorials pdf]]></category>
		<category><![CDATA[seo video tutorial]]></category>
		<category><![CDATA[seo video tutorials]]></category>
		<category><![CDATA[seo web design]]></category>
		<category><![CDATA[seo website]]></category>
		<category><![CDATA[seo websites]]></category>
		<category><![CDATA[seo work]]></category>
		<category><![CDATA[small business seo]]></category>
		<category><![CDATA[top seo]]></category>
		<category><![CDATA[website seo]]></category>
		<category><![CDATA[what is seo]]></category>
		<category><![CDATA[white hat seo]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=69</guid>
		<description><![CDATA[Hi Everyone, My name is Sushant dass, I am Business Developer @ treewalker  and i am going to introduce basic of SEO with step by step instructions. SEO Definition: SEO Stands for Search Engine Optimization. SEO is all about optimizing &#8230; <a href="http://www.treewalker.in/blog/search-engine-optimization-tutorials-stepbystep/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi Everyone,</p>
<p><span style="color: #000000;">My name is Sushant dass, I am Business Developer @ treewalker  and i am going to introduce basic of SEO with step by step instructions.</span><strong><br />
SEO Definition:</strong><br />
SEO Stands for Search Engine Optimization.<br />
SEO is all about optimizing a web site for Search Engines.<br />
SEO is the process of designing and developing a web site to rank well in search engine results.<br />
SEO is to improve the volume and quality of traffic to a web site from search engines.<br />
SEO is a subset of search engine marketing.<br />
SEO is the art of ranking in the search engines.<br />
SEO is marketing by understanding how search algorithms work and what human visitors might search.</p>
<blockquote><p>This is the best thing i found to describe the SEO if you want a other way around here it is:</p></blockquote>
<p>SEO is a technique which helps search engines find and rank your site higher than the millions of other sites in response to a search query. SEO thus helps you get traffic from search engines.</p>
<p><strong>Various way a Search Engine Works:</strong></p>
<p>Search engines perform several activities in order to deliver search results</p>
<ul> <strong>Crawling<br />
Indexing<br />
Processing<br />
Calculating Relevancy<br />
Retrieving Results<br />
</strong></ul>
<blockquote><p>Each of these activities perform by a search engine effects the ranking of a site we will carry on these in detail as we move forward</p></blockquote>
<h2><strong><span style="text-decoration: underline;">White Hat and Black Hat SEO:</span></strong></h2>
<blockquote>
<p style="text-align: left;"><strong> </strong><br />
There always remain a Good and  a Bad Side of every thing in this World.Same Goes for SEO as Well.It&#8217;s  a quiet a time from SEO existence there are people who are got the first hand on SEO for there personal benefits, Hence the Laws has been forged by Development Community and Webmasters are developed for placing and development of rules and standards for Search Engine Optimization,The terms are Coined White hat and Black hat SEO.White Hat follows the Guideline Provided by the Webmaster for Successive SEO of a webpage and Black hat do exactly opposite to conquer the top position in a search .</p>
</blockquote>
<h3><strong><span style="text-decoration: underline;"><strong><span style="color: #333300;"> White Hat SEO:</span></strong></span></strong></h3>
<p style="text-align: left;">•	If it conforms to the search engine&#8217;s guidelines.<br />
•	If it does not involves any deception.<br />
•	It ensures that the content a search engine indexes and subsequently ranks is the same content a user will see.<br />
•	It ensures that a Web Page content should have been created for the users and not just for the search engines.<br />
•	It ensures the good quality of the web pages<br />
•	It ensures the useful content available on the web pages</p>
<h3><strong><span style="text-decoration: underline;">Black Hat SEO :</span></strong></h3>
<p>•	Try to improve rankings that are disapproved of by the search engines and/or involve deception.<br />
•	Redirecting users from a page that is built for search engines to one that is more human friendly.<br />
•	Redirecting users to a page that was different from the page the search engined ranked.<br />
•	Serving one version of a page to search engine spiders/bots and another version to human visitors. This is called Cloaking SEO tactic.<br />
•	Using Hidden or invisible text or with the page background color, using a tiny font size or hiding them within the HTML code such as &#8220;no frame&#8221; sections.<br />
•	Repeating keywords in the Meta tags, and using keywords that are unrelated to the site&#8217;s content. This is called Meta tag stuffing.<br />
•	Calculated placement of keywords within a page to raise the keyword count, variety, and density of the page. This is called Keyword stuffing .<br />
•	Creating low-quality web pages that contain very little content but are instead stuffed with very similar key words and phrases. These pages are called Doorway or Gateway Pages<br />
•	Mirror web sites by hosting multiple web sites all with conceptually similar content but using different URLs.<br />
•	Creating a rogue copy of a popular web site which shows contents similar to the original to a web crawler, but redirects web surfers to unrelated or malicious web sites. This is called <strong>Page hijacking.</strong></p>
<blockquote><p><span style="color: #000000;"><strong>Importance&#8217;s of Web Domain:</strong></span></p></blockquote>
<p>While choosing a domain name you should consider the followings:</p>
<ul>
<li>Who would be your target audience.</li>
<li>What you intend to sell to them. Is it a tangible item or just text content.</li>
<li>What will make your business idea unique or different than everything else that is already on the market.</li>
</ul>
<blockquote><p><strong>File Naming Convention for SEO:</strong></p></blockquote>
<ul>
<li>The filename should preferably be short and descriptive. Its always good to use same keywords in file name as well as in page title.</li>
<li>Don&#8217;t use file names like <em>service.htm</em> or <em>job.htm</em>. But use actual service name in your file name like <em>computer-repairing.htm</em></li>
<li>Don&#8217;t use more than 3-4 words in file name and separate them with hyphens rather than underscores. Try to use 2 keywords if possible.</li>
</ul>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/search-engine-optimization-tutorials-stepbystep/&text=Search Engine Optimization Tutorials StepByStep" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/search-engine-optimization-tutorials-stepbystep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>upgrade magento to 1.5 or latest version</title>
		<link>http://www.treewalker.in/blog/upgrade-magento-to-1-5-or-latest-version/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrade-magento-to-1-5-or-latest-version</link>
		<comments>http://www.treewalker.in/blog/upgrade-magento-to-1-5-or-latest-version/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 07:17:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=66</guid>
		<description><![CDATA[To upgrade the magento from 1.3.x ,1.4.x to 1.5.x or 1.6.x: Take the backup of the site and database Download the magento $ wget http://www.magentocommerce.com/downloads/assets/1.5.1.0/magento-1.5.1.0.tar.gz Extract it $ tar xvfz magento-1.5.1.0.tar.gz Flush Cache $ rm -rf var/cache/* $ rm -rf &#8230; <a href="http://www.treewalker.in/blog/upgrade-magento-to-1-5-or-latest-version/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To upgrade the magento from 1.3.x ,1.4.x to 1.5.x or 1.6.x:<br />
Take the backup of the site and database<br />
Download the magento<br />
$ wget http://www.magentocommerce.com/downloads/assets/1.5.1.0/magento-1.5.1.0.tar.gz<br />
Extract it<br />
$ tar xvfz magento-1.5.1.0.tar.gz<br />
Flush Cache<br />
$ rm -rf var/cache/*<br />
$ rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*<br />
 Remove the &#8216;downloader&#8217; and &#8216;app/design/frontend/base&#8217; directory<br />
$ rm -rf downloader<br />
$ rm -rf app/design/frontend/base</p>
<p>Copy &#8216;downloader&#8217; and &#8216;app/design/frontend/base&#8217; folder from magento-1.5.1.0<br />
$ cp -a magento/downloader .<br />
$ cp -a magento/app/design/frontend/base/ app/design/frontend/</p>
<p>$ cp magento/mage .<br />
$ chmod 550 ./mage</p>
<p>Upgrade now :<br />
$ ./mage mage-setup .<br />
$ ./mage sync &#8211;force<br />
$ ./mage install http://connect20.magentocommerce.com/community Mage_All_Latest &#8211;force<br />
$ rm -rf var/cache/* var/session/*<br />
$ rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*<br />
$ chmod 755 mage<br />
$ php shell/indexer.php reindexall<br />
$ ./mage upgrade-all &#8211;force<br />
( NOTE: you may skip this &#8216;upgrade-all&#8217; step if you just went ahead and did the following:<br />
<code><br />
$ yes | cp -Rf magento/* .  #this copies over all the magento files you extracted over your current installation</p>
<p>-----<br />
To know more about the upgrade , follow this link:<br />
<a href="http://duntuk.com/magento-upgrade-15">Upgrade magento</a></p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/upgrade-magento-to-1-5-or-latest-version/&text=upgrade magento to 1.5 or latest version" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/upgrade-magento-to-1-5-or-latest-version/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reindexing in Magento using command line</title>
		<link>http://www.treewalker.in/blog/reindexing-in-magento-using-command-line/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=reindexing-in-magento-using-command-line</link>
		<comments>http://www.treewalker.in/blog/reindexing-in-magento-using-command-line/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 06:10:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[reindexing]]></category>

		<guid isPermaLink="false">http://www.treewalker.in/blog/?p=63</guid>
		<description><![CDATA[When running Magento is dealing with the indexes that it relies on. Usually you can do this from the admin panel by going to System -> Index Management. When indexing fails from the admin panel you get a message saying &#8230; <a href="http://www.treewalker.in/blog/reindexing-in-magento-using-command-line/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When running Magento is dealing with the indexes that it relies on. Usually you can do this from the admin panel by going to System -> Index Management.</p>
<p>When indexing fails from the admin panel you get a message saying that it failed with no reason why it failed. Now in most cases you cannot ignore this. </p>
<div style="clear:both;margin-bottom:5px;">
				<a href="http://twitter.com/share?url=http://www.treewalker.in/blog/reindexing-in-magento-using-command-line/&text=Reindexing in Magento using command line" target="_blank" title="Click here if you liked this article">
					<img src="http://www.treewalker.in/blog/wp-content/plugins/twitter-plugin/images/twitt.gif" alt="Twitt" />
				</a>
			</div>]]></content:encoded>
			<wfw:commentRss>http://www.treewalker.in/blog/reindexing-in-magento-using-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

