<?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>Devin R. Olsen Web Developer &#187; Magento Tutorials</title>
	<atom:link href="http://www.devinrolsen.com/category/magento-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devinrolsen.com</link>
	<description>From Developer to Developer Information and Sharing</description>
	<lastBuildDate>Fri, 20 Aug 2010 05:08:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento Determine if Current Page is Category or Not</title>
		<link>http://www.devinrolsen.com/magento-determine-if-current-page-is-category-or-not/</link>
		<comments>http://www.devinrolsen.com/magento-determine-if-current-page-is-category-or-not/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 06:22:29 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Categories Page]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[Category Page]]></category>
		<category><![CDATA[Category Page Determin]]></category>
		<category><![CDATA[Determin Category Page]]></category>
		<category><![CDATA[Determine Category]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Category]]></category>
		<category><![CDATA[Magento Category Page]]></category>
		<category><![CDATA[Magento Determine Category Page]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=863</guid>
		<description><![CDATA[Sometimes you find your self in the need to determine if the current page a visitor is viewing is of a category or not. The reason for this could drastically very, but one good reason is the need for a global element not be shown on any category page.]]></description>
			<content:encoded><![CDATA[<p>Sometimes you find your self in the need to determine if the current page a visitor is viewing is of a category or not. The reason for this could drastically very, but one good reason is the need for a global element not be shown on any category page.</p>
<p>It would be much faster to simply include this element or rather custom block globally to your Magento store via your layout XML files, and have a condition in this block&#8217;s .phtml file that excluded any output on category page.</p>
<p>This is a very simple method that simply looks to our Mage registry and asks the question &#8220;Is the current page indeed a current category page or not?&#8221;.</p>
<pre>php if(!Mage::registry('current_category')):?&gt;
//OUTPUT THE GLOBAL ELEMENTS CODE ON NONE-CATEGORY PAGES
php endif; ?&gt;</pre>
<p>Simple as that, of course the correct way would be to include this block globally via your XML layout files, and then remove it via XML (Custom Layout Update) in the backend-&gt;catalog-&gt;manage categories &#8220;Custom Design&#8221; tab for each category.</p>
<p>But this method might be faster.</p>
<p>Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-determine-if-current-page-is-category-or-not/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magento Product&#8217;s Relative Parent Category Method</title>
		<link>http://www.devinrolsen.com/magento-products-relative-parent-category-method/</link>
		<comments>http://www.devinrolsen.com/magento-products-relative-parent-category-method/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 00:14:12 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[get parent category]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[parent categories]]></category>
		<category><![CDATA[parent category]]></category>
		<category><![CDATA[product categories]]></category>
		<category><![CDATA[products parent category]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=852</guid>
		<description><![CDATA[Today I want to quickly cover an area that I get asked about at least once a month, and that is "If a product belongs to more than one category.. how do I get the correct parent category while viewing a product through one category or the other?".]]></description>
			<content:encoded><![CDATA[<p>Today I want to quickly cover an area that I get asked about at least once a month, and that is &#8220;If a product belongs to more than one category.. how do I get the correct parent category while viewing a product through one category or the other?&#8221;.</p>
<p>With that said the, the biggest scenario for this need would be to determine the products parent category in order to perform something unique to the product&#8217;s page while viewing product&#8217;s page through one category or another.</p>
<p>This is a very simple method that assumes you have the product of question loaded up or rather, you are at the product level of your store in order to obtain some information about the products parent categories.</p>
<p>So here we go.</p>
<p>First you need to gather all the category id&#8217;s this product belongs to, so to do this we simply make a new variable called &#8220;$catIds&#8221; and gather all the category id&#8217;s like so:</p>
<pre>&lt;?php
$catIds = $_product-&gt;getCategoryIds();
?&gt;</pre>
<p>Next we simply need to point to the first category in this new &#8220;$catIds&#8221; variable array like so:</p>
<p>(Remembere the number 0 is = 1 or rather first in an array.)</p>
<pre>&lt;?php
$catIds = $_product-&gt;getCategoryIds();
$relativeCatId = $catIds[0];
?&gt;</pre>
<p>So now that we have gathered our relative parent category id, we can begin to load this category up in order to gather information from it and ultimately create a unique condition for our products page:</p>
<pre>&lt;?php
$catIds = $_product-&gt;getCategoryIds();
$relativeCatId  = $catIds[0];
$category = Mage::getModel("catalog/category")-&gt;load($relativeCatId);
?&gt;</pre>
<p>Now that we have loaded up our relative parent category into this new variable called &#8220;$category&#8221; we can then say, &#8220;Grab the category&#8217;s name, or even attributes to create some kind of condition.&#8221;, like so:</p>
<pre>&lt;?php
$catIds = $_product-&gt;getCategoryIds();
$relativeCatId   = $catIds[0];
$category =  Mage::getModel("catalog/category")-&gt;load($relativeCatId);
?&gt;
&lt;?php if($category-&gt;getName()  == "Category One"): ?&gt;
//DO THIS
&lt;?php elseif($category-&gt;getName()  == "Category Two"):?&gt;
//DO THAT
&lt;?php endif;?&gt;</pre>
<p>And that&#8217;s it!</p>
<p>So to recap, all we did was while under a product level, gathered all its parent category id&#8217;s into the variable &#8220;$catIds&#8221;. Once all category id&#8217;s we captured, we proceeded to highlight or rather grabbed our first category&#8217;s id from the array (0) and used it to load the category up. Once this category was loaded, we could access its attributes or information. We used the category&#8217;s information to build a condition and perform something unique to the product page depending on if its being viewed through one category or a completely different category.</p>
<p>Thanks Everyone!</p>
<p>Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-products-relative-parent-category-method/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Obtain Custom Attribute Values in Magento</title>
		<link>http://www.devinrolsen.com/magento-custom-attributes-value/</link>
		<comments>http://www.devinrolsen.com/magento-custom-attributes-value/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 19:25:45 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[attribute value]]></category>
		<category><![CDATA[attribute values]]></category>
		<category><![CDATA[attributes]]></category>
		<category><![CDATA[custom attribute]]></category>
		<category><![CDATA[custom attribute value]]></category>
		<category><![CDATA[custom attribute values]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento attribute value]]></category>
		<category><![CDATA[magento attribute values]]></category>
		<category><![CDATA[magento custom attribute]]></category>
		<category><![CDATA[magento custom attributes]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[values]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=813</guid>
		<description><![CDATA[Today let’s talk about Magento and custom attributes. With magento you can create as many custom attributes for your products as you like, but how does one then gather the values of a custom attribute? Here I will show you how to properly gather the value of any Magento custom attribute.]]></description>
			<content:encoded><![CDATA[<p>Today let’s talk about Magento and custom attributes. With Magento you can create as many custom attributes for your products as you like, and there are different attribute types such as:</p>
<ul>
<li>Text Field</li>
<li>Text Area</li>
<li>Date</li>
<li>Yes/No</li>
<li>Multiple Select</li>
<li>Dropdown</li>
<li>Price</li>
<li>Gallery</li>
<li>Media Image</li>
<li>Fixed Product Tax</li>
</ul>
<p>Because there are different types of attributes there are also different ways of obtaining an attributes value. If we were to create a new custom attribute called &#8220;<strong>theme_color</strong>” and the attribute was of a &#8220;<strong>Text Field</strong>” type, we could do something like the following at a product level (meaning a product is loaded) to obtain its value.</p>
<pre>&lt;?php
echo $_product-&gt;getThemeColor();
?&gt;</pre>
<p>$_product is the product of question we have loaded up and ready to work with, and we use &#8220;<strong>getThemeColor();</strong>” because our attribute was named &#8220;<strong>theme_color</strong>”. It’s important to realize that when calling out the value of an attribute with this method, we start with &#8220;get” and then capitalize the first letter of each word that is divided by a &#8220;_”.</p>
<p>Now this method would give us the value of a simple &#8220;<strong>Text Field</strong>” attribute but what if the attribute was a &#8220;<strong>Dropdown or a Multiple Select</strong>&#8221; type? Well if you try to use this &#8220;<strong>getYourAttributesName()</strong>&#8221; method on a none &#8220;<strong>Text Field</strong>” or &#8220;<strong>Textarea</strong>” attribute type you will most likely get nothing.</p>
<p>So how do we obtain the value of a &#8220;<strong>Dropdown or a Multiple Select</strong>&#8221; attribute type you ask? Well some would argue that you would do so via this method:</p>
<pre>&lt;?php
echo $_product-&gt;getAttributeText('theme_color');
?&gt;</pre>
<p>However, what this would do is return an array of the &#8220;<strong>Dropdown or Multiple Select</strong>&#8221; options instead of the value of the selected option you would have set. There is another way to obtain these types of attributes selected value and it looks like this:</p>
<pre>&lt;?php
$attributes = $_product-&gt;getAttributes();
$themeColor = $attributes['theme_color']-&gt;getFrontend()-&gt;getValue($_product);
echo $themeColor;
?&gt;</pre>
<p>With this method we are simply creating a new variable called &#8220;<strong>$attributes</strong>” and pointing to our &#8220;<strong>$_product</strong>” to then using the &#8220;<strong>getAttributes()</strong>” function to gather all the attributes of this product.</p>
<p>Once we have all the product&#8217;s attributes inside of the &#8220;<strong>$attributes</strong>” variable, we make another new variable called &#8220;<strong>$themeColor</strong>”. &#8220;<strong>$themeColor</strong>” then assigns its self to our &#8220;<strong>$attributes</strong>” array that we in turn call out our custom attribute <strong>[‘theme_color’]</strong>.</p>
<p>Once we have pointed to the custom attribute in the &#8220;<strong>$attributes</strong>” array, we simply run through the front end via the function &#8220;<strong>getFrontend()</strong>” and then pull the value down via &#8220;<strong>getValue($_product)</strong>”.</p>
<p>If we then echo our &#8220;<strong>$themeColor</strong>&#8221; you should get the value of your custom Drop Down or Multiple Select attribute to do what you will with it.</p>
<p>So to recap:</p>
<pre>
&lt;?php echo $_product-&gt;getThemeColor() ?&gt;
</pre>
<p>Would get the value of an attribute wholes type is of Text Field or Text Area’s</p>
<pre>
&lt;?php echo $_product-&gt;getAttributeText('theme_color')  ?&gt;
</pre>
<p>That will not give a value of a Text Field or Text Area attribute type but rather gather an array of all options in a Drop Down or Multiple Select attribute type.</p>
<pre>
&lt;?php
$attributes = $_product-&gt;getAttributes();
$themeColor = $attributes['theme_color']-&gt;getFrontend()-&gt;getValue($_product);
?&gt;
</pre>
<p>That will give you the value of any type of attribute, even the value from &#8220;<strong>Drop Down or Multiple Select</strong>&#8221; attribute types.</p>
<p>I hope this clears some things up and helps some developers out there .</p>
<p>Thanks!</p>
<p>Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-custom-attributes-value/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Magento Custom Category Listing Block</title>
		<link>http://www.devinrolsen.com/magento-custom-category-listing-block/</link>
		<comments>http://www.devinrolsen.com/magento-custom-category-listing-block/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 02:58:24 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[category listing]]></category>
		<category><![CDATA[category listing magento]]></category>
		<category><![CDATA[custom category list block]]></category>
		<category><![CDATA[list of magento categories]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento categories list]]></category>
		<category><![CDATA[magento category listing]]></category>
		<category><![CDATA[magento custom block]]></category>
		<category><![CDATA[magento tutorial]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=753</guid>
		<description><![CDATA[Here I wanted to show you how to build a custom magento category listing block that you can use on your own magento store. We will go over each step at getting a category listing of your magneto categories and even a sub category listing.]]></description>
			<content:encoded><![CDATA[<p>Here I wanted to show you how to build a custom Magento category listing block that you can use on your own Magento store. We will go over each step at getting a category listing of your magneto categories and even a sub category listing.</p>
<p><object style="display:block; margin-left:auto; margin-right:auto;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/gt1ZF8mQxk4&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><embed style="display:block; margin-left:auto; margin-right:auto;" type="application/x-shockwave-flash" width="425" height="265" src="http://www.youtube.com/v/gt1ZF8mQxk4&amp;hl=en_US&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6" wmode="transparent" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Here is the finished code for your new category listing block.</p>
<pre>&lt;?php
$cats = Mage::getModel('catalog/category')-&gt;load(2)-&gt;getChildren();
$catIds = explode(',',$cats);
?&gt;
&lt;ul&gt;
&lt;?php foreach($catIds as $catId): ?&gt;
	&lt;li&gt;
    	&lt;?php
			$category = Mage::getModel('catalog/category')-&gt;load($catId);
			echo $category-&gt;getName();
			$subCats = Mage::getModel('catalog/category')-&gt;load($category-&gt;getId())-&gt;getChildren();
			$subCatIds = explode(',',$subCats);
		?&gt;
            &lt;?php if(count($subCatIds) &gt; 1):?&gt;
                &lt;ul&gt;
                &lt;?php foreach($subCatIds as $subCat) :?&gt;
                    &lt;li&gt;
                    &lt;?php
                        $subCategory = Mage::getModel('catalog/category')-&gt;load($subCat);
                        echo $subCategory-&gt;getName();
                    ?&gt;
                    &lt;/li&gt;
                &lt;?php endforeach;?&gt;
                &lt;/ul&gt;
            &lt;?php endif; ?&gt;
    &lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ul&gt;</pre>
<p>And The XML Block Code:</p>
<pre>&lt;block type="catalog/navigation" name="catalog.category" template="catalog/navigation/category.phtml" /&gt;</pre>
<p>NOTE:<br />
After loading each category you have a whole array of different attributes you can use. If you wanted to make each category listing be a link, simply use the getUrl() function in a similar fashion:</p>
<pre>&lt;a href="&lt;?php echo $category-&gt;getUrl()?&gt;"&gt;
	&lt;?php echo $category-&gt;getName()?&gt;
&lt;/a&gt;</pre>
<p>Enjoy everyone!<br />
Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-custom-category-listing-block/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Magento &#8211; How to import and export your products</title>
		<link>http://www.devinrolsen.com/magento-import-and-export-products/</link>
		<comments>http://www.devinrolsen.com/magento-import-and-export-products/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 20:02:17 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Product Export]]></category>
		<category><![CDATA[Magneto Product Import]]></category>
		<category><![CDATA[Product Export]]></category>
		<category><![CDATA[product export csv]]></category>
		<category><![CDATA[Product Import]]></category>
		<category><![CDATA[product import csv]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=531</guid>
		<description><![CDATA[Learn how to import and export product in and out of Magento Commerce with a single .CSV file.]]></description>
			<content:encoded><![CDATA[<p>Here I will show you how to use Magento&#8217;s product  importing and exporting feature. I will first export a simple product out to obtain an overview of Magento&#8217;s required CSV format. Then I will demonstrate how to import all your product into Magento with this single CSV file.</p>
<p><object id="stVEpSQEJIR19fRllbXVNaUlVT" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="video=stVEpSQEJIR19fRllbXVNaUlVT" /><param name="src" value="http://www.screentoaster.com/swf/STPlayer.swf" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><embed id="stVEpSQEJIR19fRllbXVNaUlVT" type="application/x-shockwave-flash" width="425" height="344" wmode="transparent" src="http://www.screentoaster.com/swf/STPlayer.swf" flashvars="video=stVEpSQEJIR19fRllbXVNaUlVT" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Thanks!<br />
Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-import-and-export-products/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Magento Cache Management Overview and Tips</title>
		<link>http://www.devinrolsen.com/magento-cache-managment-overview-and-tips/</link>
		<comments>http://www.devinrolsen.com/magento-cache-managment-overview-and-tips/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 09:34:32 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Cache Managment]]></category>
		<category><![CDATA[cache refresh]]></category>
		<category><![CDATA[Magento Cache]]></category>
		<category><![CDATA[Magento Cache Management]]></category>
		<category><![CDATA[Magento Cache Refresh]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=525</guid>
		<description><![CDATA[A brief overview of Magento Commerce's cache management system and how to flush it via Magento admin area or manually.]]></description>
			<content:encoded><![CDATA[<p>Here I am going to demonstrate how to use Magento cache management system. I will also show you how to do a hard cache flush of your magneto cache.</p>
<p><object id="stVEpSQEJIR19fRlxcWlpbU1Rc" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="video=stVEpSQEJIR19fRlxcWlpbU1Rc" /><param name="src" value="http://www.screentoaster.com/swf/STPlayer.swf" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><embed id="stVEpSQEJIR19fRlxcWlpbU1Rc" type="application/x-shockwave-flash" width="425" height="344" src="http://www.screentoaster.com/swf/STPlayer.swf" wmode="transparent" flashvars="video=stVEpSQEJIR19fRlxcWlpbU1Rc" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Enjoy!<br />
Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/magento-cache-managment-overview-and-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing Magento Commerce and XAMPP on Windows 7</title>
		<link>http://www.devinrolsen.com/installing-magento-commerce-and-xampp-on-windows-7/</link>
		<comments>http://www.devinrolsen.com/installing-magento-commerce-and-xampp-on-windows-7/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 08:40:58 +0000</pubDate>
		<dc:creator>Devin R. Olsen</dc:creator>
				<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Install Magento]]></category>
		<category><![CDATA[Install Magento Xampp]]></category>
		<category><![CDATA[Install XAMPP Win7]]></category>
		<category><![CDATA[magento xampp]]></category>
		<category><![CDATA[Windows 7 Magento]]></category>
		<category><![CDATA[windows 7 xampp]]></category>
		<guid isPermaLink="false">http://www.devinrolsen.com/?p=496</guid>
		<description><![CDATA[Here I will show you how to install a XAMPP localhost and Magento Commerce solution on your Windows 7 machine.]]></description>
			<content:encoded><![CDATA[<p>Sometimes it nice to have a local install of Magento on your machine so you may test different settings, extensions or modifications to your live site. Here I am going to show you how to properly setup a local host and install Magento on a Windows 7 Machine.</p>
<p>In order to have your localhost be directed as <strong>www.localhost.com</strong>, go to the bottom of your <strong>c:/Windows/System32/drivers/etc/host</strong> host file and include this:</p>
<blockquote><p><strong>127.0.0.1    www.localhost.com</strong></p></blockquote>
<p>Hit save and refresh Apache. Your local host should now be accessible to by going to <strong>http://www.localhost.com</strong> instead of <strong>http://127.0.0.1</strong>.</p>
<p><object id="stVEpSQEJIR19fRl1aW11YU1NR" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="align" value="center" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="video=stVEpSQEJIR19fRl1aW11YU1NR" /><param name="src" value="http://www.screentoaster.com/swf/STPlayer.swf" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><embed id="stVEpSQEJIR19fRl1aW11YU1NR" type="application/x-shockwave-flash" width="425" height="344" src="http://www.screentoaster.com/swf/STPlayer.swf" wmode="transparent" flashvars="video=stVEpSQEJIR19fRl1aW11YU1NR" allowscriptaccess="always" allowfullscreen="true" align="center"></embed></object></p>
<p><a title="XAMPP v1.6.7" href="http://www.devinrolsen.com/wp-content/themes/typebased/downloads/xampp-win32-1.6.7-installer.exe">Download XAMPP 1.6.7 (PHP 5.2) Here!</a></p>
<p>Also you many notice or experince the error I recived when I tried to view the front end for the first time after installing the sample data. Simple goto your localhost folder <strong>magento/var/cache/</strong> and delete all the folders in this cache directory. Hit refresh and you should be good to go.</p>
<p>Hope this helps someone out there.</p>
<p>Thanks and Enjoy.</p>
<p>Devin R. Olsen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.devinrolsen.com/installing-magento-commerce-and-xampp-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
