<?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>Delighted Stupid Wind &#124; Empire Illusion &#187; zen-cart</title>
	<atom:link href="http://www.dswei.com/tag/zen-cart/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dswei.com</link>
	<description>Dreamland of Business, On the Way</description>
	<lastBuildDate>Sat, 13 Aug 2011 22:17:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Add a Sidebox to Zen Cart</title>
		<link>http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/</link>
		<comments>http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 19:09:21 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Zencart]]></category>
		<category><![CDATA[sidebox]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.dswei.com/?p=170</guid>
		<description><![CDATA[A Zen Cart sidebox is what displays various items in the side columns of your Zen Cart store.There are already so many sideboxes in zencart, like category, like user reviews, like search, but sometimes we need more functions to customize, so we have to add the new sidebox to zencart.
but as you konw, zen cart [...]]]></description>
			<content:encoded><![CDATA[<p>A Zen Cart sidebox is what displays various items in the side columns of your Zen Cart store.There are already so many sideboxes in <span class='bm_keywordlink'><a href="http://www.dswei.com/category/internet/zencart/">zencart</a></span>, like category, like user reviews, like search, but sometimes we need more functions to customize, so we have to add the new sidebox to <span class='bm_keywordlink'><a href="http://www.dswei.com/category/internet/zencart/">zencart</a></span>.</p>
<p>but as you konw, zen cart is php developed, it&#8217;s not easy to find the way to add it in the control panel for a zen cart new learner as me, so I prepare you a tutorial way to add a new sidebox, here you go.</p>
<p><strong>1, Create Sidebox Template:</strong>Add a new file to the server in the following directory: zen-cart-root/includes/templates/template-name/sideboxes/. You should name the file something relating to the contents of the sidebox. In this example we will be adding a welcome message sidebox so we might name the file tpl_welcome.php. The contents of the file will include what you want to display in the box and will be in a $content variable. Below is an example of the contents of the file if you wanted it to just display a message like “Welcome to my store”.</p>
<pre>
<div class="dp-highlighter">
<div class="alt" style="width: 417px;"><span>&lt;?php </span></div>
<div style="width: 417px;"><span class="comment">/**</span></div>
<div class="alt" style="width: 417px;"><span class="comment">* Side Box Template</span></div>
<div style="width: 417px;"><span class="comment">*</span></div>
<div class="alt" style="width: 417px;"><span class="comment">*/</span><span> </span></div>
<div style="width: 417px;"><span class="vars">$content</span><span> = </span><span class="string">'Welcome to my store.'</span><span>; </span></div>
<div class="alt" style="width: 417px;">?&gt;</div>
</div>
</pre>
<p><strong>2,</strong><strong>Create Sidebox:</strong>Now we want to add the actual sidebox which goes into the following directory: /zen-cart-root/includes/modules/sideboxes. Again name the file something relating to the contents of the sidebox which in this case will be welcome.php. The contents of this file will look something like the below so just modify the variables that relate to your template.</p>
<div class="alt" style="width: 461px;"><span>&lt;?php </span></div>
<div style="width: 461px;"><span class="comment">/**</span></div>
<div class="alt" style="width: 461px;"><span class="comment">* welcome sidebox - used to display a welcome message in a sidebox</span></div>
<div style="width: 461px;"><span class="comment">*</span></div>
<div class="alt" style="width: 461px;"><span class="comment">*/</span><span>// test </span><span class="keyword">if</span><span> box should display </span></div>
<div style="width: 461px;"><span class="vars">$show_welcome</span><span> = true;</span><span class="keyword">if</span><span> (</span><span class="vars">$show_welcome</span><span> == true) {</span><span class="keyword">require</span><span>(</span><span class="vars">$template</span><span>-&gt;get_template_dir(</span><span class="string">&#8216;tpl_welcome.php&#8217;</span><span>,DIR_WS_TEMPLATE, </span><span class="vars">$current_page_base</span><span>,</span><span class="string">&#8217;sideboxes&#8217;</span><span>). </span><span class="string">&#8216;/tpl_welcome.php&#8217;</span><span>);</span></div>
<div style="width: 461px;"><span class="vars">$title</span><span> = BOX_HEADING_WELCOME; </span></div>
<div class="alt" style="width: 461px;"><span class="vars">$title_link</span><span> = false; </span></div>
<div style="width: 461px;"><span class="keyword">require</span><span>(</span><span class="vars">$template</span><span>-&gt;get_template_dir(</span><span class="vars">$column_box_default</span><span>, DIR_WS_TEMPLATE, </span><span class="vars">$current_page_base</span><span>,</span><span class="string">&#8216;common&#8217;</span><span>) . </span><span class="string">&#8216;/&#8217;</span><span> . </span><span class="vars">$column_box_default</span><span>); </span></div>
<div class="alt" style="width: 461px;">}</div>
<div style="width: 461px;">?&gt;</div>
<p><strong>3, Add Language Variables:</strong>You now need to modify the english.php language file to add the definitions for any text variables you have used in either file. In this example we have added a new variable called BOX_HEADING_WELCOME. So for this example you would add the below to english.php.</p>
<div class="alt" style="width: 417px;"><span class="comment">// welcome box text in sideboxes/welcome.php</span><span> </span></div>
<div style="width: 417px;">define(<span class="string">&#8216;BOX_HEADING_WELCOME&#8217;</span><span>, </span><span class="string">&#8216;Welcome Message&#8217;</span><span>); </span></div>
<p>Note above that BOX_HEADING_WELCOME is the name of the variable used and “Welcome Message” is the text that is displayed anywhere that the variable is used.<strong></strong></p>
<p><strong>4, Enable Sidebox:</strong>Now visit the Zen Cart admin system in your browser to turn the sidebox on. Once you have logged into the admin hover over Tools and select “Layout Boxes Controller” from the drop down. You will see the new sidebox in the list which in this example is sideboxes/welcome.php. Click on the new box twice and in the upper right of the window you will see fields that  you can edit. Type the correct number is the sort order field to display the box, select the radio button next to on in “Left/Right Column Status”, and then click the Update button. Your new sidebox is now enabled on your site.<strong></strong></p>
<p><strong>5, Verify Sidebox:</strong>Now visit your Zen Cart store in a browser and the sidebox should show.</p>
<h4>Incoming search terms for the article:</h4><ul><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="how to create new sidebox in zen cart">how to create new sidebox in zen cart</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="hp zeen root">hp zeen root</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="zen cart chat box">zen cart chat box</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="create a sidebox in zen cart">create a sidebox in zen cart</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="sidebox zen cart">sidebox zen cart</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="zen cart welcome box">zen cart welcome box</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="add right side box zen cart">add right side box zen cart</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="rooting hp zeen">rooting hp zeen</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="zen cart layout boxes controller">zen cart layout boxes controller</a></li><li><a href="http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/" title="insert chatbox in zencart">insert chatbox in zencart</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.65 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.dswei.com/2009/11/how-to-add-a-sidebox-to-zen-cart/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zen-cart Administrator&#8217;s User Manual Ebook</title>
		<link>http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/</link>
		<comments>http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 18:09:23 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Zencart]]></category>
		<category><![CDATA[Administrator's User Manual]]></category>
		<category><![CDATA[oscommerce]]></category>
		<category><![CDATA[shopping-cart]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.dswei.com/?p=73</guid>
		<description><![CDATA[Last month, I was trying to study a ebook of e-Start Your Web Store with zen-cart
I just wanted to learn the zen-cart and share my happy of being with it, but unfortunately I failed, because of some copyright things maybe, it&#8217;s the situation of GLOBAL e-commerce.
so today I&#8217;m trying to study a new kind of [...]]]></description>
			<content:encoded><![CDATA[<p>Last month, I was trying to study a ebook of <a title="Permanent Link to e-Start Your Web Store with zen-cart ebook" rel="bookmark" href="../2009/08/e-start-your-web-store-with-zen-cart-ebook-free-download/">e-Start Your Web Store with zen-cart</a></p>
<p>I just wanted to learn the zen-cart and share my happy of being with it, but unfortunately I failed, because of some copyright things maybe, it&#8217;s the situation of GLOBAL e-commerce.</p>
<p>so today I&#8217;m trying to study a new kind of ebook,  only for study and learn.</p>
<p>I&#8217;m not sure whether it is legal, but yea, just waiting for some copyright guys maybe.</p>
<p>you can go to buy the zen-cart ebook in <cite>www.cucumbermedia.com</cite></p>
<h4>Incoming search terms for the article:</h4><ul><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart user manual">zen cart user manual</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart user guide">zen cart user guide</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart manual">zen cart manual</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart manual ebook">zen cart manual ebook</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart instruction manual">zen cart instruction manual</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart users manual">zen cart users manual</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart users guide">zen cart users guide</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen cart ebook">zen cart ebook</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zen-cart user guide">zen-cart user guide</a></li><li><a href="http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/" title="zencart user guide">zencart user guide</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.205 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.dswei.com/2009/09/zen-cart-administrators-user-manual-ebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>e-Start Your Web Store with zen-cart ebook</title>
		<link>http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/</link>
		<comments>http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 07:52:58 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Zencart]]></category>
		<category><![CDATA[e-shop]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[oscommerce]]></category>
		<category><![CDATA[web store]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.dswei.com/?p=65</guid>
		<description><![CDATA[A Hands-On Guide For Entrepreneurs &#38; Businesses
This book serves to address two major concerns for store owners who are using Zen Cart to run their online stores.
Firstly, it goes into detail on how to set up a Zen Cart store on a reader&#8217;s local computer.
With this approach, store owners can familiarize themselves with the software [...]]]></description>
			<content:encoded><![CDATA[<p>A Hands-On Guide For Entrepreneurs &amp; Businesses</p>
<p>This book serves to address two major concerns for store owners who are using Zen Cart to run their online stores.</p>
<p>Firstly, it goes into detail on how to set up a Zen Cart store on a reader&#8217;s local computer.<br />
With this approach, store owners can familiarize themselves with the software before they start searching for a web<br />
hosting provider and putting their store on the Internet.<br />
Another advantage is that the local installation of Zen Cart is able to act as a test bed for store owners to try out</p>
<p>different ideas before they actually implement those ideas on their &#8216;live&#8217; online store on the Internet.<br />
Secondly, this book acts as a form of structured documentation for Zen Cart.</p>
<p>Now, anyone can start learning how to use this powerful piece of software in a structured manner and see how the<br />
different pieces fit together. This !proactive!– aroach is in stark contrast to the !reactive!– apprch that current<br />
users employ: asking questions in the forums, reading the Wiki or browsing the FAQs on Zen Cart&#8217;s site.</p>
<p>Ultimately, store owners can save themselves the time, effort and headaches of sifting through the forums to look for<br />
answers to most of their problems. The developers of Zen Cart can then have more time to continue enhancing this<br />
wonderful software and not repeatedly answering the same questions that keep popping up ever so often on the<br />
forums.</p>
<h3>How To Use  This Book</h3>
<p>This book covers Zen Cart version 1.3.7.1 which is the latest version at the time this book goes to print.<br />
This book is divided into 5 parts. If you are reading this book for the first time, you should go through the book in<br />
sequence from Part 1 to Part 5. After that, you can jump around the different chapters to accomplish a specific task.</p>
<h3>What is Zen Cart</h3>
<p>Zen Cart (http://www.zen-cart.com) is a piece of shopping cart software that allows you to create an online, e-<br />
commerce store for selling your goods and services. It is written in PHP and requires a MySQL database to work.<br />
You can use Zen Cart to create an online store to sell physical goods like shoes, pianos or digital goods like gift<br />
certificates, music downloads, etc. You can even sell services like insurance policies, IT support plans, etc.</p>
<p>The developers of Zen Cart have adopted the line, !The Art of E-Commerce!–, as their goal when developng the<br />
software. Hence, you will find that the software is designed to cater specifically to the requirements of store owners<br />
and shoppers first. Store owners do not need an IT degree to set up and administer their web sites, and shoppers can<br />
navigate the online store and check out their items easily. Programmers are also not forgotten, as the code for Zen<br />
Cart is well-structured and well-designed for easy maintenance and custom logic.</p>
<p>Zen Cart comes absolutely free with many e-commerce features available out-of-the-box. Therefore, you do not have<br />
to invest a lot of money to establish an online, robust and professional e-commerce presence. All you need is to pay<br />
the web hosting fees and possibly some web design fees if you want to give your online store a more polished look.</p>
<p>The source code for Zen Cart is distributed under the GNU General Public License (GPL). In essence, this license<br />
gives anyone the right to modify the source code to suit their needs. However, derivative works that modify the<br />
source code have to adhere to certain restrictions if they are to be re-distributed.</p>
<p>And if you want this ebook[<a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook-free-download">e-Start Your Web Store </a>], please go to buy this ebook in the website below http://www.cucumbermedia.com/</p>
<p>thank you</p>
<h4>Incoming search terms for the article:</h4><ul><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store with Zen Cart">e-Start Your Web Store with Zen Cart</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store With Zen Cart torrent">e-Start Your Web Store With Zen Cart torrent</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-start zen cart torrent">e-start zen cart torrent</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-start your web store with zen cart 2nd edition">e-start your web store with zen cart 2nd edition</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store with Zen Cart (2nd edition)">e-Start Your Web Store with Zen Cart (2nd edition)</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store With Zen Cart download">e-Start Your Web Store With Zen Cart download</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="Using Zen Cart to Make Money Online torrents">Using Zen Cart to Make Money Online torrents</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store with Zen Cart 2nd edition torrent">e-Start Your Web Store with Zen Cart 2nd edition torrent</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="e-Start Your Web Store with Zen Cart ebook">e-Start Your Web Store with Zen Cart ebook</a></li><li><a href="http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/" title="goldswatches com">goldswatches com</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.691 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.dswei.com/2009/08/e-start-your-web-store-with-zen-cart-ebook/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Most Popular Zen-cart Modules and Some Skills</title>
		<link>http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/</link>
		<comments>http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 10:12:40 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Zencart]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[search engine friendly]]></category>
		<category><![CDATA[sef]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.dswei.com/?p=61</guid>
		<description><![CDATA[I collect 5 best Zen-cart modules for structure and also for the seo, but it is for the board version 1.38
1.Install  Ultimate SEO URLs, Purpose: make the URL search engine friendly
download：http://www.zen-cart.com/index.php?main_page=product_contrib_info&#38;products_id=231
2.Tabbed Products Pro, Purpose: optimize the categories and products page, also the meta tag
download：http://www.zen-cart.com/index.php?main_page=product_contrib_info&#38;products_id=924
3.Simple SEO URL module, Purpose: change the URL path, use the channel
download：http://www.zen-cart.com/index.php?main_page=product_contrib_info&#38;products_id=1013
4. [...]]]></description>
			<content:encoded><![CDATA[<p>I collect 5 best Zen-cart modules for structure and also for the seo, but it is for the board version 1.38</p>
<p>1.Install  Ultimate <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> URLs, Purpose: make the URL search engine friendly<br />
download：<a href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=231">http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=231</a></p>
<p>2.Tabbed Products Pro, Purpose: optimize the categories and products page, also the meta tag<br />
download：<a href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=924">http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=924</a></p>
<p>3.Simple <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> URL module, Purpose: change the URL path, use the channel<br />
download：<a href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=1013">http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=1013</a></p>
<p>4. Optimize RSS Feed module, Purpose: RSS submit for any page<br />
download：<a href="http://www.zen-cart.cn/modules/wfdownloads/visit.php?cid=2&amp;lid=217">http://www.zen-cart.cn/modules/wfdownloads/visit.php?cid=2&amp;lid=217</a></p>
<p>5. EZ pages rel=nofollow attribute module, module: nofollow control the page index and crawl<br />
download：<a href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=944">http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;products_id=944</a></p>
<p>Other skills about the Optimization</p>
<ul>
<li>Changes the dynamic URLs to static pages with <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> friendly URLs</li>
<li>Generates well-structured URLs in relation to catalogue content</li>
<li>Verifies and validates each URL<br />
<em>If the user/visitor makes any mistake in the URL, it is redirected to the correct URL &#8211; no HTTP 404/Not Found error or content penalty occur. E.g.:<br />
www.example.com/your-wrong-category-name-1/ your-wrong-subcategory-name-1/your-wrong-product-name-1.html to www.example.com/your-category-name-1/your-subcategory-name-1/ your-product-name-1.html</em></li>
<li>Supports safe changes of URLs<br />
<em>If any page receives new URL due to change in the content, all older URLs still work and the web browser or crawler is redirected through HTTP 301 Moved Permanently to the new URL. E.g.:<br />
www.example.com/your-category-name-1/ to www.example.com/your-new-category-name-1/</em></li>
<li>Supports redirections from ALL original ZenCart URLs<br />
<em>E.g.: www.example.com/index.php?mainpage=index&amp;cPath=2_5 to www.example.com/category-name-2/subcategory-name-5/</em></li>
<li>Prevents possible duplicate content penalties &#8211; no duplicate content available on the different URLs<br />
<em>E.g.: www.example.com/index.php?mainpage=product_info&amp;pro ducts_id=1 and www.example.com/index.php?mainpage=product_info&amp;cPath=1_4&amp;pro ducts_id=1 will be www.example.com/category-name-1/subcategory-name-1/ product-name-1.html<br />
…and more &#8211; Magic <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> URL for ZenCart fix many duplicate content penalties such as:<br />
www.example.com/index.php?mainpage=product_info&amp;products_id=1<br />
www.example.com/index.php?mainpage=product_info&amp;manu facturers_id=1&amp;products_id=1<br />
www.example.com/index.php?mainpage=product_reviews&amp;products_id=1<br />
www.example.com/index.php?mainpage=products_new&amp;act ion=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;cPath=1_4&amp;sort=2a&amp;act ion=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;cPath=1_4&amp;sort=2d&amp;act ion=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;cPath=1_4&amp;sort=3a&amp;act ion=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;cPath=1_4&amp;sort=3d&amp;act ion=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;manu facturers_id=1&amp;sort=2a&amp;action=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;manu facturers_id=1&amp;sort=2d&amp;action=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;manu facturers_id=1&amp;sort=3a&amp;action=buy_now&amp;products_id=1<br />
www.example.com/index.php?mainpage=index&amp;manu facturers_id=1&amp;sort=3d&amp;action=buy_now&amp;products_id=1<br />
and much more!</em></li>
<li>Prevents possible duplicate content penalties of Notify (add/remove) links</li>
<li>Prevents home page content penalties<br />
<em>www.example.com/?, www.example.com/index.php and www.example.com/index.php? will be www.example.com only!<br />
(also incorrect backward links are redirected to www.example.com)</em></li>
<li>Multi language mode and single language mode<br />
<em>If your ZenCart based shopping cart is using several languages, Magic <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> URL for ZenCart splits your shopping cart to virtual directories containing language code. Otherwise there is no any splitting to language code directories.</em></li>
<li>Supports unlimited Products Types<br />
<em>Properly handles settings of Product Types in ZenCart administration (Catalog &#8211; Product Types).</em></li>
<li>Makes all relative URLs absolute<br />
<em>Search Engines will spider your shopping cart easier.</em></li>
<li>Properly Sessions IDs handling<br />
<em>Sessions IDs (zenid parameter in URLs) are removed when one of 120 worldwide webcrawlers is detected. Also, if the webcrawler finds backward link with Session ID, it is redirected to the URL without this parameter.</em></li>
<li>Possibility to set Maximum number of words in one URI’s level<br />
<em>Others are omitted in URIs.</em></li>
<li>Possibility to set Minimum word’s length<br />
<em>Shorter words are excluded from URIs.</em></li>
<li>Various versions for different encodings (ISO/CP), UTF-8 supported.</li>
<li>High speed without negative effects to server load or web server response due to two level cache and RegEx optimizations<br />
<em>Does not add any SQL queries &#8211; fancy data for <span class='bm_keywordlink'><a href="http://www.dswei.com/category/search-engine-marketing/seo/">SEO</a></span> friendly URLs are cached in the system memory during script execution and are also stored to the special files for future usage to save database server resources.<br />
All Rewrite Rules are optimized for maximum speed.</em></li>
<li>Does not break any installed Add-ons, Modules or Templates/Themes</li>
<li>No modifications to ZenCart files required<br />
<em>You add only one line of code for installation.</em></li>
</ul>
<h4>Incoming search terms for the article:</h4><ul><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="zen cart modules">zen cart modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="most popular zen cart modules">most popular zen cart modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="zencart modules">zencart modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="best zen cart modules">best zen cart modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="zen cart most popular modules">zen cart most popular modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="zencart popular searches">zencart popular searches</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="ZEN CART Popular Searches">ZEN CART Popular Searches</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="zen cart module for blogging">zen cart module for blogging</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="popular zen cart modules">popular zen cart modules</a></li><li><a href="http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/" title="wrong utf in zen cart checkout cart">wrong utf in zen cart checkout cart</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 1.227 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.dswei.com/2009/08/most-popular-zencart-modules-and-some-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zencart Template Sheet Path Instruction</title>
		<link>http://www.dswei.com/2009/08/zencart-template-sheet-path/</link>
		<comments>http://www.dswei.com/2009/08/zencart-template-sheet-path/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 08:07:03 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Zencart]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[shopping-cart]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[zen-cart]]></category>

		<guid isPermaLink="false">http://www.dswei.com/?p=59</guid>
		<description><![CDATA[I&#8217;m researching the shopping cart name Zen-Cart recently, and it is built base on the Oscommerce, another shopping cart system, but zen-cart is really awesome better than any other shopping cart in china, it even getting a chinese version
below is the list of zen-cart template list






path
annotation


index.php
main file


includes/templates/[custom template folder]/common/html_header.php
header


includes/templates/[custom template folder]/common/tpl_main_page.php
body


includes/templates/[custom template folder]/common/tpl_header.php
header for all [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m researching the shopping cart name Zen-Cart recently, and it is built base on the Oscommerce, another shopping cart system, but zen-cart is really awesome better than any other shopping cart in china, it even getting a chinese version</p>
<p><span>below is the list of zen-cart template list<br />
</span></p>
<div class="Jba526"><a class="al" href="http://www.444p.com/"><br />
</a></div>
<table border="0">
<tbody>
<tr bgcolor="#ccffff">
<td style="border: 0px 0px 2px solid #0000ff;"><strong>path</strong></td>
<td style="border: 0px 0px 2px solid #0000ff;"><strong>annotation</strong></td>
</tr>
<tr bgcolor="#ffffcc">
<td>index.php</td>
<td>main file</td>
</tr>
<tr bgcolor="#ffff99">
<td style="padding-left: 10px;">includes/templates/[custom template folder]/common/html_header.php</td>
<td>header</td>
</tr>
<tr bgcolor="#ffff99">
<td style="padding-left: 10px;">includes/templates/[custom template folder]/common/tpl_main_page.php</td>
<td>body</td>
</tr>
<tr bgcolor="#ffff33">
<td style="padding-left: 20px;">includes/templates/[custom template folder]/common/tpl_header.php</td>
<td>header for all pages</td>
</tr>
<tr bgcolor="#ffff33">
<td style="padding-left: 20px;">(column left)</td>
<td></td>
</tr>
<tr bgcolor="#ffff33">
<td style="padding-left: 20px;">includes/templates/[custom template folder]/common/main_template_vars.php</td>
<td>content of the page，default is  &#8216;tmp_index_default.php&#8217;</td>
</tr>
<tr bgcolor="#ffdfff">
<td style="padding-left: 30px;" colspan="2"><strong>首页 &#8211; 缺省</strong></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;">includes/templates/[custom template folder]/templates/tmp_index_default.php</td>
<td>homepage template</td>
</tr>
<tr bgcolor="#ffdfff">
<td style="padding-left: 30px;" colspan="2"><strong>首页 &#8211; 显示分类</strong></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;">includes/templates/[custom template folder]/templates/tpl_index_categories.php</td>
<td>categories</td>
</tr>
<tr bgcolor="#ccff80">
<td style="padding-left: 60px;">includes/modules/[custom template folder]/pages/index/category_row.php</td>
<td>categories you chosed to show</td>
</tr>
<tr bgcolor="#e4ffb7">
<td style="padding-left: 70px;">includes/templates/[custom template folder]/templates/tpl_index_category_row.php</td>
<td>show category</td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;" colspan="2" bgcolor="#ffdfff"><strong>首页 &#8211; 显示指定分类</strong></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;">includes/templates/[custom template folder]/templates/tpl_index_product_list.php</td>
<td>different category different template</td>
</tr>
<tr bgcolor="#ccff80">
<td style="padding-left: 60px;">includes/modules/[custom template folder]/product_listing.php</td>
<td>add the product</td>
</tr>
<tr bgcolor="#e4ffb7">
<td style="padding-left: 70px;">includes/templates/[custom template folder]/templates/tpl_modules_product_listing.php</td>
<td>show quanqity</td>
</tr>
<tr bgcolor="#d7fcd1">
<td style="padding-left: 80px;">includes/templates/[custom template folder]/common/tpl_list_box_content.php</td>
<td></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;" colspan="2" bgcolor="#ffdfff"><strong>商品信息页面</strong></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;">includes/templates/[custom template folder]/templates/tpl_product_info_display.php</td>
<td>show product information</td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;" colspan="2" bgcolor="#ffdfff"><strong>购物车页面</strong></td>
</tr>
<tr bgcolor="#99ff00">
<td style="padding-left: 30px;">includes/templates/[custom template folder]/templates/tpl_shopping_cart_default.php</td>
<td>shopping cart page</td>
</tr>
<tr bgcolor="#ffff33">
<td style="padding-left: 20px;">(column right)</td>
<td></td>
</tr>
<tr bgcolor="#ffff33">
<td style="padding-left: 20px;">includes/templates/[custom template folder]/common/tpl_footer.php</td>
<td>footer for all pages</td>
</tr>
</tbody>
</table>
<p>This is just for a record to learn the zen-cart, e-commerce.</p>
<h4>Incoming search terms for the article:</h4><ul><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="cPath fishing index php cPath fishing index php">cPath fishing index php cPath fishing index php</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="cPath fishing index php">cPath fishing index php</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="template zen cart sewing machine">template zen cart sewing machine</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="tpl_index_category_row php zen cart">tpl_index_category_row php zen cart</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="zen cart tmp_index_default php">zen cart tmp_index_default php</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="zencart china template">zencart china template</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="zencart contact page path">zencart contact page path</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="zencart directory path in template page">zencart directory path in template page</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="zencart template path">zencart template path</a></li><li><a href="http://www.dswei.com/2009/08/zencart-template-sheet-path/" title="awesome zencart templates">awesome zencart templates</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 2.183 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.dswei.com/2009/08/zencart-template-sheet-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

