<?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>NY INTERACTIVE AGENCY « iFUEL INTERACTIVE / AGENCY212</title>
	<atom:link href="http://blogs.ifuelinteractive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.ifuelinteractive.com</link>
	<description>A NY INTERACTIVE AGENCY</description>
	<lastBuildDate>Fri, 02 Jul 2010 15:38:25 +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>FIX Google Analytics _gaq is not defined In Magento 1.4.0.1</title>
		<link>http://blogs.ifuelinteractive.com/2010/07/02/fix-google-analytics-_gaq-is-not-defined-in-magento-1-4-0-1/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/07/02/fix-google-analytics-_gaq-is-not-defined-in-magento-1-4-0-1/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 15:33:18 +0000</pubDate>
		<dc:creator>Robert Nicklin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=259</guid>
		<description><![CDATA[Locate: /app/design/frontend/base/default/layout/googleanalytics.xml
Replace With:


&#60;default&#62;
&#60;!-- Mage_GoogleAnalytics --&#62;
&#60;reference name=&#34;before_body_end&#34;&#62;
&#60;block type=&#34;googleanalytics/ga&#34; name=&#34;google_analytics&#34; as=&#34;google_analytics&#34; /&#62;
&#60;/reference&#62;
&#60;/default&#62;
&#60;/layout&#62;


^ This will move the Google Analytics code to before the closing of the HTML &#60;/body&#62; tag (for faster page load times)
Locate: /app/code/core/Mage/GoogleAnalytics/Block/ga.php
Replace at around LINE 171: 


&#60;!-- BEGIN GOOGLE ANALYTICS CODE --&#62;
&#60;script type=&#34;text/javascript&#34;&#62;
//&#60;![CDATA[
var _gaq = _gaq &#124;&#124; [];
_gaq.push([&#34;_setAccount&#34;, &#34;&#039; . $this-&#62;getAccount() . &#039;&#34;]);
_gaq.push([&#34;_trackPageview&#34;, &#34;&#039;.$this-&#62;getPageName().&#039;&#34;]);
(function() {
var [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Locate: /app/design/frontend/base/default/layout/googleanalytics.xml</strong></p>
<p>Replace With:</p>
<pre>
<pre class="brush: php">
&lt;default&gt;
&lt;!-- Mage_GoogleAnalytics --&gt;
&lt;reference name=&quot;before_body_end&quot;&gt;
&lt;block type=&quot;googleanalytics/ga&quot; name=&quot;google_analytics&quot; as=&quot;google_analytics&quot; /&gt;
&lt;/reference&gt;
&lt;/default&gt;
&lt;/layout&gt;
</pre>
</pre>
<p>^ This will move the Google Analytics code to before the closing of the HTML &lt;/body&gt; tag (for faster page load times)</p>
<p><strong>Locate: /app/code/core/Mage/GoogleAnalytics/Block/ga.php</strong></p>
<p>Replace at around LINE 171: </p>
<pre>
<pre class="brush: php">
&lt;!-- BEGIN GOOGLE ANALYTICS CODE --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
//&lt;![CDATA[
var _gaq = _gaq || [];
_gaq.push([&quot;_setAccount&quot;, &quot;&#039; . $this-&gt;getAccount() . &#039;&quot;]);
_gaq.push([&quot;_trackPageview&quot;, &quot;&#039;.$this-&gt;getPageName().&#039;&quot;]);
(function() {
var ga = document.createElement(\&#039;script\&#039;); ga.type = \&#039;text/javascript\&#039;; ga.async = true;
ga.src = (\&#039;https:\&#039; == document.location.protocol ? \&#039;https://ssl\&#039; : \&#039;http://www\&#039;) + \&#039;.google-analytics.com/ga.js\&#039;;
(document.getElementsByTagName(\&#039;head\&#039;)[0] || document.getElementsByTagName(\&#039;body\&#039;)[0]).appendChild(ga);
})();

//]]&gt;
&lt;/script&gt;
&lt;!-- END GOOGLE ANALYTICS CODE --&gt;
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/07/02/fix-google-analytics-_gaq-is-not-defined-in-magento-1-4-0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Regular Expression Tool</title>
		<link>http://blogs.ifuelinteractive.com/2010/04/06/nice-regular-expression-tool/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/04/06/nice-regular-expression-tool/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 22:02:36 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=252</guid>
		<description><![CDATA[While working on some ASP.NET form validation today, I came across a great  regex tester / builder called Regex Hero.  The main feature is their .NET Regex Tester,  a Silverlight app, and while it requires registration (Google, Yahoo, AOL,  OpenID, etc.), this gives you the ability save your regular expressions to your  personal [...]]]></description>
			<content:encoded><![CDATA[<p>While working on some ASP.NET form validation today, I came across a great  regex tester / builder called <a href="http://regexhero.net/" target="_blank">Regex Hero</a>.  The main feature is their <a href="http://regexhero.net/tester/" target="_blank">.NET Regex Tester</a>,  a Silverlight app, and while it requires registration (Google, Yahoo, AOL,  OpenID, etc.), this gives you the ability save your regular expressions to your  personal library on the site.  You can also use the site’s public library, but contributions  are a little anemic at this point.  The app has a few other nice features,  including real-time expression matching, a built-in regular expression  reference, .NET code generation, and performance benchmarking.</p>
<p>The app is free for basic use, but it will nag you every 5 minutes to buy the  paid version.  The full version is $20 and comes with the nice addition of  Intellisense-like code completion and a desktop version of the app.  Future  upgrades are free for the full version.</p>
<p><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/04/sshot-5.png"><img class="alignnone size-medium wp-image-251" title="Regex Hero" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/04/sshot-5-300x198.png" alt="Regex Hero" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/04/06/nice-regular-expression-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tips and Tricks: Developing with Magento</title>
		<link>http://blogs.ifuelinteractive.com/2010/04/05/tips-and-tricks-developing-with-magento/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/04/05/tips-and-tricks-developing-with-magento/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 20:54:05 +0000</pubDate>
		<dc:creator>Robert Nicklin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[file structure]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[Magento Guide]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=227</guid>
		<description><![CDATA[Things you Should Know Before Developing With Magento
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
Now being more experienced with Magento we definitely feel the need to share our findings with the masses. We only wish we knew these things prior to trying to the hack the crap out of magento to make it do what we want.
Turning on Template Path Hints
If you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight:bold;color:#3a3a3a;">Things you Should Know Before Developing With Magento</span></p>
<p><span style="color:DarkGray;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></p>
<p>Now being more experienced with Magento we definitely feel the need to share our findings with the masses. We only wish we knew these things prior to trying to the hack the crap out of magento to make it do what we want.</p>
<p><span style="font-weight:bold;">Turning on Template Path Hints</span><br />
If you&#8217;re new to Magento you will realize that it is quite a hassle to understand the logic behind the file structure and block structure of a magento layout when trying to customize your storefront. There is a very under-publicized built-in magento feature that we&#8217;d like to share with you that should help you on your journey. Magento actually has the ability to display hints showing where the different files of your layout is contained so that you can edit it. </p>
<p><a href="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/04/template-path-hints.jpg"><img src="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/04/template-path-hints.jpg" alt="Magento&#039;s Built-In Template Path Hints" title="template-path-hints" width="600" height="178" /></a></p>
<p>To achieve this, Follow these simple steps&#8230;</p>
<ul>
<li>Log in to your administration panel. Go to Sytem > Configuration.</li>
<li>From the left navigation column on top there will be &#8220;Current Configuration Scope&#8221;. In the drop down menu select &#8220;Main Website&#8221;</li>
<li>Then navigate to Developer > Advance, also in the left navigation column.</li>
<li>Under &#8220;Debug&#8221; you&#8217;ll see Template Path Hints. Select Yes and click the Save Config button.</li>
</ul>
<p>Now when you navigate to your storefront you&#8217;ll see a bunch of red boxes displaying the underlying structure of the pages regarding templates and blocks. </p>
<p><span style="font-style: italic;font-size:11px;color:#707070;">Note: This should only be used in a development environment, considering this will make your storefront look hideous with big red blocks everywhere.</span></p>
<p><span style="color:DarkGray;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></p>
<p><span style="font-weight:bold;">Never edit core files</span><br />
Problem: When developing with Magento you will find it necesary to edit core files to achieve certain functionality. However, By editting a core file you are basically blocking yourself into a corner. DON&#8217;T DO IT! If you ever wish to upgrade at any point in the future you will not be able to because any changes that you have made in the core files will be overwritten. Never fear, there is a way around this. </p>
<p>Solution: The &#8220;local&#8221; folder (\app\code\local\) is your saviour. Say you need to edit the &#8220;Shipping.php&#8221; file located at &#8220;\app\code\core\Mage\Shipping\Model\Shipping.php&#8221; you can create the same basic directory structure in the local folder and copy and paste the Shipping.php file into the new directory. So, your new &#8220;local&#8221; Shipping.php file will be located at \app\code\local\Mage\Shipping\Model\Shipping.php. You will be able to safely edit anything and everything within that local file and never have to worry about it being overwritten during an upgrade. This trick works because Magento will look for files in a local directory before looking for a file in the core directory. </p>
<p><span style="font-style: italic;font-size:11px;color:#707070;">Note: The above solution will only overpower files that exist within the \app\code\core\ or \app\code\community\ directories. Also note that any files within your magento theme (\app\design\frontend\default\YOURTHEME\) or (\skin\frontend\default\YOURTHEME\) are not considered core files and you are free to edit them as you please. </span></p>
<p>These are just to name a few&#8230; <a href="http://blogs.ifuelinteractive.com/feed/rss/">Follow our blog to read more!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/04/05/tips-and-tricks-developing-with-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notice Anything Different?</title>
		<link>http://blogs.ifuelinteractive.com/2010/03/29/notice-anything-different/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/03/29/notice-anything-different/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 20:23:15 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=193</guid>
		<description><![CDATA[No, you&#8217;re not in the wrong place. We just decided that it was time to  do a little redecorating around here. It&#8217;s actually been on our &#8220;To Do&#8221;  list for quite a while now and we finally found enough time to make it  happen. So, what do you think of our new [...]]]></description>
			<content:encoded><![CDATA[<p>No, you&#8217;re not in the wrong place. We just decided that it was time to  do a little redecorating around here. It&#8217;s actually been on our &#8220;To Do&#8221;  list for quite a while now and we finally found enough time to make it  happen. So, what do you think of our new look?</p>
<p><a href="http://blogs.ifuelinteractive.com"><img class="alignleft size-full wp-image-224" title="new-look-same-great-taste" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/03/new-look-same-great-taste5.jpg" alt="iFuel's New Look" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/03/29/notice-anything-different/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using .htaccess Force Adding www. to URL for SSL Certificate Authentication</title>
		<link>http://blogs.ifuelinteractive.com/2010/03/09/using-htaccess-force-adding-www-to-url-for-ssl-certificate-authentication/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/03/09/using-htaccess-force-adding-www-to-url-for-ssl-certificate-authentication/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:43:09 +0000</pubDate>
		<dc:creator>Robert Nicklin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=184</guid>
		<description><![CDATA[In this day and age of many online scams it is necessary for every successful eCommerce storefront to have SSL Authentication for online purchases. These SSL Certificates are usually only good for one specific URL and are very picky as to whether or not the URL has to have &#8220;www.&#8221; attached to it. Here is [...]]]></description>
			<content:encoded><![CDATA[<p>In this day and age of many online scams it is necessary for every successful eCommerce storefront to have SSL Authentication for online purchases. These SSL Certificates are usually only good for one specific URL and are very picky as to whether or not the URL has to have &#8220;www.&#8221; attached to it. Here is a simple solution that we&#8217;ve created to force appending &#8220;www.&#8221; to the URL when trying to access a &#8220;https://&#8221; (http secure) address.</p>
<p><strong><em>Some things you must know:</em></strong></p>
<ul>
<li>This will only work on an Apache server</li>
<li>You must have mod_rewrite installed under Apache</li>
</ul>
<p>First, Create an .htaccess file if you don&#8217;t already have one. Then enter one of the following solutions based on your needs.</p>
<h3>Force appending www. to only http secure (https://) requests</h3>
<pre>
<pre class="brush: php">

# Redirect non-www to www

	Options +FollowSymLinks
	# turn mod_rewrite on
	RewriteEngine On

	# If https send to https://www.
	RewriteCond %{HTTP_HOST} ^YOURDOMAIN.COM$ [NC]
	RewriteCond %{HTTPS} on
	RewriteRule ^(.*)$ https://www.YOURDOMAIN.COM/$1 [R=301,L]
</pre>
</pre>
<h3>Force appending www. to both http (http://) and http secure (https://) requests</h3>
<pre>
<pre class="brush: php">

# Redirect non-www to www

	Options +FollowSymLinks
	# turn mod_rewrite on
	RewriteEngine On

	# If https send to https://www.
	RewriteCond %{HTTP_HOST} ^YOURDOMAIN.COM$ [NC]
	RewriteCond %{HTTPS} on
	RewriteRule ^(.*)$ https://www.YOURDOMAIN.COM/$1 [R=301,L]

	# If http send to http://www.
	RewriteCond %{HTTP_HOST} ^YOURDOMAIN.COM$ [NC]
	RewriteCond %{HTTPS} off
	RewriteRule ^(.*)$ http://www.YOURDOMAIN.COM/$1 [R=301,L]
</pre>
</pre>
<p>With these examples it is necesary for you to make sure that you replace &#8220;YOURDOMAIN.COM&#8221; to reflect the actual domain name of the website you will be using this on. Once you have done this, save your .htaccess file and upload it to the base directory of your website.</p>
<p>Believe it or not a few search engines distinguish your website as two different websites <strong>http://www.</strong>yourdomain.com and <strong>http://</strong>yourdomain.com. It is often considered good practice to add this htaccess rewrite to any website you create so that you can rest assured that your website is not being indexed as two different websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/03/09/using-htaccess-force-adding-www-to-url-for-ssl-certificate-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling Compression on a Magento Site on OpenSuse</title>
		<link>http://blogs.ifuelinteractive.com/2010/01/26/enabling-compression-on-a-magento-site-on-opensuse/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/01/26/enabling-compression-on-a-magento-site-on-opensuse/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 16:18:39 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Compression]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSuse]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=174</guid>
		<description><![CDATA[If you&#8217;re running Magento on OpenSuse (or any platform for that matter), you can really benefit from turning on http compression, especially to remote areas or from hosts that have limited bandwidth.
There are a lot of references out there on this, but you have to sort of pull it all together on your own for [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re running Magento on OpenSuse (or any platform for that matter), you can really benefit from turning on http compression, especially to remote areas or from hosts that have limited bandwidth.</p>
<p>There are a lot of references out there on this, but you have to sort of pull it all together on your own for this particular combination.</p>
<p><strong>Verify that mod_deflate has been installed in Apache:<br />
</strong><br />
1. Open /etc/sysconfig/apache2.</p>
<p>2. Find the line that starts:</p>
<p>APACHE_MODULES=&#8230;</p>
<p>3. Verify that &#8220;deflate&#8221; is one of the modules listed (may not be in alphabetical order).</p>
<p><strong>Now, enable compression in the virtual host file for your site:</strong></p>
<p>1. Open /etc/apache2/vhosts.d/.conf.</p>
<p>2. Add the following lines inside the  tag:</p>
<pre>
<pre class="brush: php">

    &lt;IfModule mod_deflate.c&gt;
	DeflateBufferSize 32768
	DeflateCompressionLevel 5

	&lt;Location /&gt;
		SetOutputFilter DEFLATE
		BrowserMatch ^Mozilla/4 gzip-only-text/html
		BrowserMatch ^Mozilla/4\.0[678] no-gzip
		BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
		SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png|tiff)$ no-gzip dont-vary
		# Header append Vary User-Agent env=!dont-vary
	&lt;/Location&gt;
    &lt;/IfModule&gt;
</pre>
</pre>
<p><strong>Now restart Apache using:</strong></p>
<p>sudo /etc/init.d/apache2 restart</p>
<p>and you should be in business!</p>
<p><strong>Validate that compression is working</strong></p>
<p>A great, handy online site that you can use to validate that compression is working is <a href="http://www.gidnetwork.com/tools/gzip-test.php" target="_blank">http://www.gidnetwork.com/tools/gzip-test.php</a>.</p>
<p>=============================<em><br />
“e-commerce done right</em>”<br />
<a href="http://www.ifuelinteractive.com/" target="_blank">http://www.ifuelinteractive.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/01/26/enabling-compression-on-a-magento-site-on-opensuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agency212 on Facebook</title>
		<link>http://blogs.ifuelinteractive.com/2010/01/15/agency212-on-facebook/</link>
		<comments>http://blogs.ifuelinteractive.com/2010/01/15/agency212-on-facebook/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 22:00:18 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[agency212]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[ifuel]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=153</guid>
		<description><![CDATA[
Hey Everyone,
Be sure to check out our new Agency212 facebook page.
While you&#8217;re there, don&#8217;t forget to also visit the iFuel page.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.facebook.com/pages/Agency212/188810906625?v=app_4949752878"><img class="alignleft size-full wp-image-154" style="border: 0pt none;" title="Agency212" src="http://blogs.ifuelinteractive.com/wp-content/uploads/2010/01/212-facebook.jpg" alt="Agency212" width="103" height="116" /></a></p>
<p>Hey Everyone,</p>
<p>Be sure to check out our new <a title="Agency212 on facebook" href="http://www.facebook.com/pages/Agency212/188810906625?v=app_4949752878">Agency212 facebook page</a>.</p>
<p>While you&#8217;re there, don&#8217;t forget to also visit the <a title="iFuel" href="http://www.facebook.com/pages/iFUEL-Interactive-Agency212/72437327077?v=app_23798139265#/pages/iFUEL-Interactive-Agency212/72437327077?v=wall" target="_self">iFuel page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2010/01/15/agency212-on-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Holidays From iFuel</title>
		<link>http://blogs.ifuelinteractive.com/2009/12/24/happy-holidays-from-ifuel/</link>
		<comments>http://blogs.ifuelinteractive.com/2009/12/24/happy-holidays-from-ifuel/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 16:13:26 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[iFuel Interactive]]></category>
		<category><![CDATA[ifuel]]></category>
		<category><![CDATA[interactive agency]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=139</guid>
		<description><![CDATA[We just wanted to take a minute and wish you all a happy and healthy holiday from everyone here at our interactive agency. 
]]></description>
			<content:encoded><![CDATA[<p><strong>We just wanted to take a minute and wish you all a <a title="Happy Holidays" href="http://www.ifuelinteractive.com/holiday/holiday.html" target="_blank">happy and healthy holiday</a> from everyone here at our <a href="http://www.ifuelinteractive.com">interactive agency</a>. </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2009/12/24/happy-holidays-from-ifuel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing Test Data From Magento</title>
		<link>http://blogs.ifuelinteractive.com/2009/11/02/clearing-test-data-from-magento/</link>
		<comments>http://blogs.ifuelinteractive.com/2009/11/02/clearing-test-data-from-magento/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:46:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[reset database]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=134</guid>
		<description><![CDATA[On many occasions we&#8217;ve needed to clear out the test data from a Magento site in preparation for going live.  It&#8217;s not as trivial as you&#8217;d think, but I found a nice sql script thanks to Elias Interactive that was just what I needed.  I&#8217;ve removed a bit as I didn&#8217;t need to reset all [...]]]></description>
			<content:encoded><![CDATA[<p>On many occasions we&#8217;ve needed to clear out the test data from a Magento site in preparation for going live.  It&#8217;s not as trivial as you&#8217;d think, but I found a nice sql script thanks to <a href="http://eliasinteractive.com/blog/magento-ecommerce-how-to-reset-all-test-order-information-and-set-unique-prefix-for-orders-invoices-shipments-and-credit-memos/" target="_blank">Elias Interactive </a>that was just what I needed.  I&#8217;ve removed a bit as I didn&#8217;t need to reset all the order numbers, etc.</p>
<p><em>updated 6/30/2010 for Magento 1.4<br />
</em></p>
<pre>
<pre class="brush: sql">
-- Reset Magento TEST Data

SET FOREIGN_KEY_CHECKS=0;

-- reset dashboard search queries
TRUNCATE `catalogsearch_query`;
ALTER TABLE `catalogsearch_query` AUTO_INCREMENT=1;

-- reset sales order info
TRUNCATE `sales_order`;
TRUNCATE `sales_order_datetime`;
TRUNCATE `sales_order_decimal`;
TRUNCATE `sales_order_entity`;
TRUNCATE `sales_order_entity_datetime`;
TRUNCATE `sales_order_entity_decimal`;
TRUNCATE `sales_order_entity_int`;
TRUNCATE `sales_order_entity_text`;
TRUNCATE `sales_order_entity_varchar`;
TRUNCATE `sales_order_int`;
TRUNCATE `sales_order_text`;
TRUNCATE `sales_order_varchar`;
TRUNCATE `sales_flat_quote`;
TRUNCATE `sales_flat_quote_address`;
TRUNCATE `sales_flat_quote_address_item`;
TRUNCATE `sales_flat_quote_item`;
TRUNCATE `sales_flat_quote_item_option`;
TRUNCATE `sales_flat_order_item`;
TRUNCATE `sendfriend_log`;
TRUNCATE `tag`;
TRUNCATE `tag_relation`;
TRUNCATE `tag_summary`;
TRUNCATE `wishlist`;
TRUNCATE `log_quote`;
TRUNCATE `report_event`;
TRUNCATE `sales_flat_quote_payment`;
TRUNCATE `sales_flat_quote_shipping_rate`;
TRUNCATE `log_url`;
TRUNCATE `log_url_info`;
TRUNCATE `log_visitor`;
TRUNCATE `log_visitor_info`;

ALTER TABLE `sales_order` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_datetime` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_decimal` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity_datetime` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity_decimal` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity_int` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity_text` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_entity_varchar` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_int` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_text` AUTO_INCREMENT=1;
ALTER TABLE `sales_order_varchar` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_quote` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_quote_address` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_quote_address_item` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_quote_item` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_quote_item_option` AUTO_INCREMENT=1;
ALTER TABLE `sales_flat_order_item` AUTO_INCREMENT=1;
ALTER TABLE `sendfriend_log` AUTO_INCREMENT=1;
ALTER TABLE `tag` AUTO_INCREMENT=1;
ALTER TABLE `tag_relation` AUTO_INCREMENT=1;
ALTER TABLE `tag_summary` AUTO_INCREMENT=1;
ALTER TABLE `wishlist` AUTO_INCREMENT=1;
ALTER TABLE `log_quote` AUTO_INCREMENT=1;
ALTER TABLE `report_event` AUTO_INCREMENT=1;
</pre>
</pre>
<p>Just run this script against the Magento database (make a backup first!).</p>
<p>=============================<em><br />
“e-commerce done right</em>”<br />
<a href="http://www.ifuelinteractive.com/" target="_blank">http://www.ifuelinteractive.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2009/11/02/clearing-test-data-from-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Files in Vista by Date Range</title>
		<link>http://blogs.ifuelinteractive.com/2009/10/18/finding-files-in-vista-by-date-range/</link>
		<comments>http://blogs.ifuelinteractive.com/2009/10/18/finding-files-in-vista-by-date-range/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:30:39 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://blogs.ifuelinteractive.com/?p=115</guid>
		<description><![CDATA[I had no idea you could find files in Vista by date range until I found this post:
http://www.howtogeek.com/howto/windows-vista/find-files-within-a-date-range-with-windows-vista-search/
Lots of options, but simply put:
modified: 10/1/2009 .. 10/10/2009
or
modified: &#62; 10/1/2009
That goes into the vista search box.  Not crazy about Vista, but I have to admit, that&#8217;s definitely handy!
=============================
“e-commerce done right”
http://www.ifuelinteractive.com
]]></description>
			<content:encoded><![CDATA[<p>I had no idea you could find files in Vista by date range until I found this post:</p>
<p><a href="http://www.howtogeek.com/howto/windows-vista/find-files-within-a-date-range-with-windows-vista-search/" target="_blank">http://www.howtogeek.com/howto/windows-vista/find-files-within-a-date-range-with-windows-vista-search/</a></p>
<p>Lots of options, but simply put:</p>
<p>modified: 10/1/2009 .. 10/10/2009</p>
<p>or</p>
<p>modified: &gt; 10/1/2009</p>
<p>That goes into the vista search box.  Not crazy about Vista, but I have to admit, that&#8217;s definitely handy!</p>
<p>=============================<em><br />
“e-commerce done right</em>”<br />
<a href="http://www.ifuelinteractive.com/" target="_blank">http://www.ifuelinteractive.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.ifuelinteractive.com/2009/10/18/finding-files-in-vista-by-date-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
