<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Data-Diggers.com</title>
	<atom:link href="http://www.data-diggers.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.data-diggers.com</link>
	<description>Zen Cart Optimization, Data Mining and Performance Modules for Zen Cart</description>
	<lastBuildDate>Wed, 10 Mar 2010 12:03:51 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on User Tracking Interface v1.1 by admin</title>
		<link>http://www.data-diggers.com/index.php/2010/03/user-tracking-interface-v1-1/comment-page-1/#comment-27</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Mar 2010 12:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.com/?p=216#comment-27</guid>
		<description>UTI does not store any information in cookies besides UTI session ids. All information that is gathered by UTI is stored in store database.

Now, back to your question. Let&#039;s assume that You want to display list of recently viewed products. Edit includes/templates/YOUR_TEMPLATE/common/tpl_footer.php (or copy it from template_default if Your template does not yet have this file). Put following code where You want to display recently viewed products:

$content = &quot;&quot;;
  foreach ($recently_viewed_products as $rpid) {
    $rpprice = zen_get_products_display_price($rpid);;
    $content .= &#039;&#039;;
    //$content .=  zen_image(DIR_WS_IMAGES . zen_get_products_image($rpid), $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
    $img = $db-&gt;Execute(&quot;SELECT * FROM &quot; . TABLE_PRODUCTS . &quot; WHERE products_id = &#039;&quot; . (int)$rpid . &quot;&#039;&quot;);
    $img = $img-&gt;fields[&#039;products_image&#039;];
    $content .=  &#039;&lt;a href=&quot;&#039; . zen_href_link(zen_get_info_page($rpid), &#039;products_id=&#039; . $rpid) . &#039;&quot; rel=&quot;nofollow&quot;&gt;&#039; . zen_image(DIR_WS_IMAGES . $img, $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
    $content .= &#039;&#039; . zen_get_products_name($rpid) . &#039;&lt;/a&gt;&#039;;
    $content .= &#039;&#039; . $rpprice . &#039;&#039;;
    $content .= &#039;&#039;;
  }
echo $content;

You&#039;ll have to format the divs with css - I really suck at HTML&amp;CSS. If You wish to not show sidebox You&#039;ll have to either comment out whole includes/templates/YOUR_TAMPLATE/sideboxes/tpl_recently_viewed_products.php file. Disabling the sidebox in Admin panel will also disable logic behind it and $recently_viewed_products variable will be empty then.</description>
		<content:encoded><![CDATA[<p>UTI does not store any information in cookies besides UTI session ids. All information that is gathered by UTI is stored in store database.</p>
<p>Now, back to your question. Let&#8217;s assume that You want to display list of recently viewed products. Edit includes/templates/YOUR_TEMPLATE/common/tpl_footer.php (or copy it from template_default if Your template does not yet have this file). Put following code where You want to display recently viewed products:</p>
<p>$content = &#8220;&#8221;;<br />
  foreach ($recently_viewed_products as $rpid) {<br />
    $rpprice = zen_get_products_display_price($rpid);;<br />
    $content .= &#8221;;<br />
    //$content .=  zen_image(DIR_WS_IMAGES . zen_get_products_image($rpid), $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);<br />
    $img = $db-&gt;Execute(&#8221;SELECT * FROM &#8221; . TABLE_PRODUCTS . &#8221; WHERE products_id = &#8216;&#8221; . (int)$rpid . &#8220;&#8216;&#8221;);<br />
    $img = $img-&gt;fields['products_image'];<br />
    $content .=  &#8216;<a href="' . zen_href_link(zen_get_info_page($rpid), 'products_id=' . $rpid) . '" rel="nofollow">&#8216; . zen_image(DIR_WS_IMAGES . $img, $rpid, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);<br />
    $content .= &#8221; . zen_get_products_name($rpid) . &#8216;</a>&#8216;;<br />
    $content .= &#8221; . $rpprice . &#8221;;<br />
    $content .= &#8221;;<br />
  }<br />
echo $content;</p>
<p>You&#8217;ll have to format the divs with css &#8211; I really suck at HTML&amp;CSS. If You wish to not show sidebox You&#8217;ll have to either comment out whole includes/templates/YOUR_TAMPLATE/sideboxes/tpl_recently_viewed_products.php file. Disabling the sidebox in Admin panel will also disable logic behind it and $recently_viewed_products variable will be empty then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query Cache v1.6 released by admin</title>
		<link>http://www.data-diggers.com/index.php/2009/01/query-cache-v1-6-released/comment-page-1/#comment-26</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Mar 2010 11:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=41#comment-26</guid>
		<description>No, unfortunately there isn&#039;t any switch. If You want to turn off query cache edit includes/auto_loaders/config.query_cache.php and comment the line:
&lt;code&gt;
$autoLoadConfig[0][] = array(&#039;autoType&#039;=&gt;&#039;classInstantiate&#039;,
                               &#039;className&#039;=&gt;&#039;QueryCache&#039;,
                               &#039;objectName&#039;=&gt;&#039;queryCache&#039;,
                               &#039;checkInstantiated&#039;=&gt;true);
&lt;/code&gt;

Make also sure to turn off all switches in includes/extra_configuration/query_cache.php</description>
		<content:encoded><![CDATA[<p>No, unfortunately there isn&#8217;t any switch. If You want to turn off query cache edit includes/auto_loaders/config.query_cache.php and comment the line:</p>
<div class="codesnip-container" >$autoLoadConfig[0][] = array(&#8217;autoType&#8217;=>&#8217;classInstantiate&#8217;,<br />
                               &#8216;className&#8217;=>&#8217;QueryCache&#8217;,<br />
                               &#8216;objectName&#8217;=>&#8217;queryCache&#8217;,<br />
                               &#8216;checkInstantiated&#8217;=>true);</div>
<p>Make also sure to turn off all switches in includes/extra_configuration/query_cache.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on User Tracking Interface v1.1 by David</title>
		<link>http://www.data-diggers.com/index.php/2010/03/user-tracking-interface-v1-1/comment-page-1/#comment-25</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.com/?p=216#comment-25</guid>
		<description>Instead of displaying the contents of the cookie in sideboxes, how can you display it at the bottom of the page, right above the footer area?</description>
		<content:encoded><![CDATA[<p>Instead of displaying the contents of the cookie in sideboxes, how can you display it at the bottom of the page, right above the footer area?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query Cache v1.6 released by David</title>
		<link>http://www.data-diggers.com/index.php/2009/01/query-cache-v1-6-released/comment-page-1/#comment-24</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:31:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=41#comment-24</guid>
		<description>Is there a way to &#039;turn off&#039; Query Cache easily instead of deleting and re-installing files.  Want to compare differences in performance with and w/o Query Cache.</description>
		<content:encoded><![CDATA[<p>Is there a way to &#8216;turn off&#8217; Query Cache easily instead of deleting and re-installing files.  Want to compare differences in performance with and w/o Query Cache.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zen Cart v1.3.8a product generator, anyone interested? by mark</title>
		<link>http://www.data-diggers.com/index.php/2009/05/zen-cart-v1-3-8a-product-generator-anyone-interested/comment-page-1/#comment-23</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Sun, 07 Mar 2010 07:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=46#comment-23</guid>
		<description>interested in trying it. thnx.</description>
		<content:encoded><![CDATA[<p>interested in trying it. thnx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query Cache v1.6 released by admin</title>
		<link>http://www.data-diggers.com/index.php/2009/01/query-cache-v1-6-released/comment-page-1/#comment-20</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 16 Feb 2010 09:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=41#comment-20</guid>
		<description>Query Cache does not use file based caching and does not store anything in cache/ folder. I&#039;m not quite sure but I think it&#039;s impossible to limit Zen Carts own cache. There are other cache solutions for Zen Cart - do You use any of them?</description>
		<content:encoded><![CDATA[<p>Query Cache does not use file based caching and does not store anything in cache/ folder. I&#8217;m not quite sure but I think it&#8217;s impossible to limit Zen Carts own cache. There are other cache solutions for Zen Cart &#8211; do You use any of them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Query Cache v1.6 released by Steven</title>
		<link>http://www.data-diggers.com/index.php/2009/01/query-cache-v1-6-released/comment-page-1/#comment-19</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Mon, 15 Feb 2010 22:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=41#comment-19</guid>
		<description>How do I limit the size of the cache dir, it seems to be getting massive</description>
		<content:encoded><![CDATA[<p>How do I limit the size of the cache dir, it seems to be getting massive</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Future contributions for Zen Cart 1.3.8 by admin</title>
		<link>http://www.data-diggers.com/index.php/2009/06/future-contributions-for-zen-cart-1-3-8/comment-page-1/#comment-18</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Feb 2010 19:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=60#comment-18</guid>
		<description>Yes, there is some news. I&#039;ve added the modules to &#039;To Do&#039; list on yellow notes on my desktop. They annoy me quite much so I&#039;ll probably make the contributions in &#039;near&#039; future to get rid of them ;)</description>
		<content:encoded><![CDATA[<p>Yes, there is some news. I&#8217;ve added the modules to &#8216;To Do&#8217; list on yellow notes on my desktop. They annoy me quite much so I&#8217;ll probably make the contributions in &#8216;near&#8217; future to get rid of them <img src='http://www.data-diggers.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on User Tracking Interface v1.0 Released by admin</title>
		<link>http://www.data-diggers.com/index.php/2009/07/user-tracking-interface-v1-0-released/comment-page-1/#comment-17</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Feb 2010 19:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=68#comment-17</guid>
		<description>Thanks! I&#039;ll keep that in mind and fix it in new releases.</description>
		<content:encoded><![CDATA[<p>Thanks! I&#8217;ll keep that in mind and fix it in new releases.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Randomized Tests version 1.3 by admin</title>
		<link>http://www.data-diggers.com/index.php/2009/11/randomized-tests-version-1-3/comment-page-1/#comment-16</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 10 Feb 2010 19:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.data-diggers.eu/?p=77#comment-16</guid>
		<description>If it&#039;s possible I&#039;ll do it. But from I know it isn&#039;t as the don&#039;t provide any API.</description>
		<content:encoded><![CDATA[<p>If it&#8217;s possible I&#8217;ll do it. But from I know it isn&#8217;t as the don&#8217;t provide any API.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
