<?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>eLief Blog &#187; Magento Tutorials</title>
	<atom:link href="http://www.elief.com/blog/category/magento-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elief.com/blog</link>
	<description>Web Hosting, Magento Hosting, Cpanel Reseller Hosting, Company Announcements &#38; More</description>
	<lastBuildDate>Sun, 15 Aug 2010 02:20:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Setup Multiple Stores With Magento</title>
		<link>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/</link>
		<comments>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 01:29:47 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=53</guid>
		<description><![CDATA[Magento Multi-Store &#38; Setting Up Multiple Magento Stores Using One Admin Area If you want to setup multiple Magento stores and multiple domains that share the same admin area, the tutorial below will assist you in doing so. This is very useful if you have a lot of stores that share the same or related [...]]]></description>
			<content:encoded><![CDATA[<h1>Magento Multi-Store &amp; Setting Up Multiple Magento Stores Using One Admin Area</h1>
<p>If you want to setup multiple Magento stores and multiple domains that share the same admin area, the tutorial below will assist you in doing so. This is very useful if you have a lot of stores that share the same or related products and you wish to manage it from one central location. You will also be able to track your sales and customers without having to login to the admin area of each website.</p>
<p>With the latest release of Magento Commerce it is much easier to set this up than it was in previous versions. Before it required you to modify the index.php file to handle your different domains pointing at different stores and various other complicated modifications. With Magento 1.4.x it is now much easier. The new index php contains the following code:</p>
<p><code>$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';<br />
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';<br />
</code><br />
It checks two variables(code &amp; type) and then uses them to run Magento. With the new code you&#8217;re able to set which store is supposed to be running under your main domain directly within your virtual host definition(root access required) or for our shared hosting and <a title="cPanel hosting" href="http://www.elief.com">cPanel hosting</a> customers you can actually now use .htaccess to accomplish this.</p>
<h2>Creating your additional stores</h2>
<p>If you haven&#8217;t already done so, the first thing you will need to do is setup your second store in the Magento admin area:</p>
<ol>
<li>Login to the Magento admin area.</li>
<li> Go to the Catalog tab, then select Manage Categories.</li>
<li> Click the &#8216;Add Root Category&#8217; button on the left.</li>
<li> On the right, for the Name, enter your secondwebsite.com. In the dropdown set Yes for both &#8216;Is Active&#8217; and &#8216;Is Anchor&#8217;.</li>
<li> Click on &#8216;Save Category&#8217;.</li>
<li> Next you should go to the &#8216;System&#8217; tab and select &#8216;Manage Stores&#8217;.</li>
<li>Click the &#8216;Create Website&#8217; button.</li>
<li> For the Name enter your Secondwebsite.com, and for the &#8216;Code&#8217; you should enter secondwebsite. You&#8217;ll be using this value later so make sure your note it down somewhere.</li>
<li> Click &#8216;Save Website&#8217;.</li>
<li> In the same area, click on the &#8216;Create Store&#8217; button.</li>
<li> For the Website, select your Secondwebsite.com from the dropdown. For the &#8216;Name&#8217;, you can enter Secondary Store. For the Root Category, select your now created Secondwebsite.com from the dropdown.</li>
<li> Click the &#8216;Save Store&#8217; button.</li>
<li>Next click on the &#8216;Create Store View&#8217; button.</li>
<li> For the &#8216;Store&#8217;, select Secondary Store from the dropdown menu, make sure it&#8217;s for the created Secondwebsite.com. For the Name, you can enter English. For the &#8216;Code&#8217;, you should enter secondwebsite_en. For the Status, select &#8216;Enabled&#8217; from the dropdown menu.</li>
<li> Click on &#8216;Save Store View&#8217;.</li>
<li> Next you will need to go to the &#8216;System&#8217; tab and select &#8216;Configuration&#8217;</li>
<li> For &#8216;Current Configuration Scope&#8217; (located near the top left), change the dropdown menu from &#8216;Default Config&#8217; to Secondwebsite.com.</li>
<li> Select &#8216;Web&#8217; from the left sidebar under the &#8216;Genera&#8217;l headline.</li>
<li> For both the Unsecure and Secure sections, uncheck the Use default box next to the Base URL item, and enter the URL for your store, e.g. secondwebsite.com. Make sure to include the trailing backslash.</li>
<li> Click the &#8216;Save Config&#8217; button.</li>
</ol>
<p>You&#8217;re almost done so hang in there!</p>
<p>Once you are finished creating the store, if you have not added your second domain as an add-on domain you will need to login to your cPanel account with us and create it as an Add-on domain now. Once you have done this you then need to <strong><em>copy your index.php and .htaccess file</em></strong> to the created directory for your add-on domain.</p>
<p>After copying over your index.php file, you should replace the following lines of code in the index.php file located <em><strong>only </strong></em>in the new add-on directory:</p>
<p>Replace this line:</p>
<p><code>$mageFilename = ‘app/Mage.php’;</code></p>
<p>With the following:</p>
<p><code>$mageFilename = ‘../public_html/app/Mage.php’;</code></p>
<p>Next you will need to either use the <em>VirtualHost method</em>(VPS and dedicated servers) or the <em>.htacess method</em> (for regular <a title="Magento hosting" href="http://www.elief.com/magento-hosting.php">magento hosting</a> / shared hosting accounts).</p>
<h2>Using VirtualHost:</h2>
<p>To set this up using the Virtualhost method you should simply add the following lines within your VirtualHost definition file:</p>
<p><code>SetEnv MAGE_RUN_CODE "base"  #Put your main/base website or store code here.<br />
SetEnv MAGE_RUN_TYPE "secondwebsite"  #Here you should put 'secondwebsite' if the URL of the additional store you are adding is secondwebsite.com.</code></p>
<h2>Using the .htaccess method:</h2>
<p>If you do not have access to the virtual host file and are not a VPS or dedicated server customer, you can still use .htaccess for this.</p>
<p>In your .htaccess code you will need to define your main and secondary websites. For example if the URL of your main/base website is base.com and the URL of your second website is secondwebsite.com you should put the following code in your .htaccess</p>
<p><code><br />
SetEnvIf Host .*base.* MAGE_RUN_CODE="base";<br />
SetEnvIf Host .*secondwebsite.* MAGE_RUN_TYPE="secondwebsite";<br />
</code></p>
<p>You are, of course, not limited to using just 2 websites. To add additional stores you would simply add the additional lines of necessary code:</p>
<p><code><br />
SetEnvIf Host .*thirdwebsite.* MAGE_RUN_TYPE="thirdwebsite";<br />
</code></p>
<p>etc.</p>
<p>You should now be all setup using Magento multi-stores and have multiple stores with one main admin area in Magento, without messing around with the code and the other previous lengthy methods <img src='http://www.elief.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>If you have any questions, additions or issues with this feel free to comment.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2010/08/how-to-setup-multiple-stores-with-magento/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Magento 1.7 Released</title>
		<link>http://www.elief.com/blog/2010/01/magento-enterprise-upgrade/</link>
		<comments>http://www.elief.com/blog/2010/01/magento-enterprise-upgrade/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 21:24:30 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Magento Tutorials]]></category>

		<guid isPermaLink="false">http://www.elief.com/blog/?p=49</guid>
		<description><![CDATA[Magento Enterprise Edition Version 1.7 was recently announced.  The new release features enhancements and new functionality focusing on enhancing customer loyalty through a reward points system, performance enhancement through full page caching and many other key administrative functionality improvements. New Features in Enterprise Edition Version 1.7 Magento Enterprise Edition version 1.7 features the all new reward [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.magentocommerce.com/product/enterprise-edition">Magento Enterprise Edition</a> Version 1.7 was recently announced.  The new release features enhancements and new functionality focusing on enhancing customer loyalty through a reward points system, performance enhancement through full page caching and many other key administrative functionality improvements.</p>
<h4><strong>New Features in Enterprise Edition Version 1.7</strong></h4>
<p>Magento Enterprise Edition version 1.7 features the all new reward points system, which allows merchants to implement unique programs designed to enhance user experience and increase customer loyalty. Points are awarded based on purchases, as well as actions such as registering on the site, inviting others to register, submitting product reviews and tags and more.  Points are managed by customers through their account and are redeemable at checkout time towards the price of a purchase.</p>
<p>Magento Enterprise Edition version 1.7 also places a focus on highly tuned page performance by making use of Full Page Caching.  Forrester Research has recently hailed caching as the “best practice” behind some of the internet’s fastest sites and new performance optimizations included in this version of Magento Enterprise Edition provide significant benefits for merchants of all sizes through a new Full Page Caching module. The optimizations, which together with other performance-enhancing functionality already in Magento, significantly reduce page load times, increase conversions, and enhance the customer browsing experience.</p>
<p>Additionally, Magento Enterprise Edition version 1.7 included no less than fifteen new features available to store administrator users to help augment the range of tools administrators have at their disposal for managing their site.  These include such features as sales report optimization, WYSIWYG Editing for Products, Categories, and email templates, Design Theme &amp; Packages Facilitation, Custom Variables for use in email templates and CMS, and upgrades to the Magento Enterprise Edition CMS+ content management engine.</p>
<p><strong>Magento Hosting For Enterprise Edition</strong></p>
<p>In addition to our regular optimized <strong><a title="Web Hosting Services" href="http://www.elief.com">web hosting services</a>, </strong>all eLief VPS and dedicated servers can be optimized for <a title="eLief Magento Hosting" href="http://www.elief.com/magento-hosting.php">Magento hosting</a> &#8211; with our expertise and experience with Magento we can customize a solution based on your exact needs, number of products and SKU&#8217;s in your store, growth expectations and much more. <a title="eLief contact" href="https://www.elief.com/billing/submitticket.php?step=2&amp;deptid=4">Contact us</a> today for a free quote.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.elief.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2010/01/magento-enterprise-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All hosting blogs are not created equal.</title>
		<link>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/</link>
		<comments>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/#comments</comments>
		<pubDate>Thu, 14 May 2009 17:35:10 +0000</pubDate>
		<dc:creator>eLief</dc:creator>
				<category><![CDATA[Company Announcements]]></category>
		<category><![CDATA[Magento Hosting]]></category>
		<category><![CDATA[Magento Tutorials]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://blog.elief.com/?p=3</guid>
		<description><![CDATA[web hosting, magento hosting, company announcement]]></description>
			<content:encoded><![CDATA[<p>A blog from <a href="http://www.elief.com">eLief</a>? Does the world really need another blog? We think so. Let me tell you why &#8211; eLief is at the epicenter of an exciting transformation in the hosting industry. Did you know your average hosting company is still using the same technology that was around 10 years ago? Not here. eLief runs state of the art technology using LiteSpeed web server. <a href="http://www.litespeedtech.com">LiteSpeed</a> is an advanced web server that processes pages up to 8x faster, reduces server loads for better performance with less CPU and memory consumption, and also allows us to perform servers updates, maintenance, and restarts without downtime. We are here to revolutionize the industry and you will only continue to see more big things coming from us. <a href="http://www.elief.com/web-hosting.php">LiteSpeed hosting</a> is just the beginning.</p>
<p>Ok cool, so what..you created this blog just to talk about your services? Not exactly! This blog will serve as a great way to communicate and interact with our readers and customers, gather opinions, collaborate with industry veterans, or to just come and read the mindless ramblings from the creators of eLief.</p>
<p>The scoop you can get from here:</p>
<ul>
<li>Upcoming news and insider perspectives</li>
<li>New feature announcements</li>
<li>How-to tutorials</li>
<li>Webmaster tips &amp; techniques.</li>
<li>In-depth information about what happens behind the scenes at eLief.</li>
<li>Why eLief is the best hosting company in the galaxy and how it will come to rule the world. Just kidding, no but seriously.</li>
</ul>
<p>To start things off, during the month of April, we will be focusing on tutorials and information about running a <a href="http://www.magentocommerce.com">Magento Commerce</a> store for all our <a href="http://www.elief.com/magento-hosting.php">magento hosting</a> and ecommerce customers.</p>
<p><a rel="me" href="http://technorati.com/claim/SRYPT9BRM7YW">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.elief.com/blog/2009/05/all-hosting-blogs-are-not-created-equal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
