<?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>Context Technology Solutions &#187; E Commerce</title>
	<atom:link href="http://www.contextllc.com/blog/category/e-commerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.contextllc.com/blog</link>
	<description>Information about Website Design, Search Engine Optimization (SEO), and Internet Technology</description>
	<lastBuildDate>Sun, 18 Jul 2010 15:41:10 +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>Initial Thoughts on the Magento E-Commerce Platform</title>
		<link>http://www.contextllc.com/blog/2008/12/initial-thoughts-on-the-magento-e-commerce-platform/</link>
		<comments>http://www.contextllc.com/blog/2008/12/initial-thoughts-on-the-magento-e-commerce-platform/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 03:12:43 +0000</pubDate>
		<dc:creator>Jim Keller</dc:creator>
				<category><![CDATA[E Commerce]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.contextsolutions.net/blog/?p=16</guid>
		<description><![CDATA[This past week, we have been working to integrate Magento as a shopping cart and complete E-commerce solution for two of our clients. This is our foray into the world of Magento, after having used CS-Cart for E-commerce deployments in the past.
I chose to go with Magento this time around for several reasons. First, after [...]]]></description>
			<content:encoded><![CDATA[<p>This past week, we have been working to integrate <a href="http://www.magentocommerce.com">Magento</a> as a shopping cart and complete E-commerce solution for two of our clients. This is our foray into the world of Magento, after having used <a href="http://www.cs-cart.com">CS-Cart</a> for E-commerce deployments in the past.</p>
<div id="attachment_24" class="wp-caption alignleft" style="width: 210px"><a href="http://www.contextsolutions.net/blog/wp-content/uploads/2008/12/magento-main-large.jpg"><img class="size-medium wp-image-24" style="margin: 5px;" title="magento-main-large" src="http://www.contextsolutions.net/blog/wp-content/uploads/2008/12/magento-main-large-262x300.jpg" alt="" width="200" height="229" /></a><p class="wp-caption-text">Magento Demo Store</p></div>
<p>I chose to go with Magento this time around for several reasons. First, after browsing the documentation, a little bit of the code, and the administrative backend, it was immediately apparent that the software architecture of Magento is superb. It&#8217;s written on PHP and built on an <a href="http://en.wikipedia.org/wiki/Model-view-controller">MVC</a> framework, and here at Context we always strive to work with as much <a href="http://www.phpfuse.net">Model View Controller</a> code as possible. However, proper software design alone isn&#8217;t enough to push me toward a given product. To maintain our time frames and ensure that our clients receive a deliverable that can offer ROI as quickly as possible, any third party products we implement also need to have good documentation and an easy to use administrative interface, especially since we&#8217;re going to be training clients on how to use the system once the site is ready for deployment. Finally, one of the projects called for very specific custom layout design, and I felt that Magento had the most robust templating system of its competitors.  Since all of my initial criteria were met, I decided it was time to move forward.</p>
<p>The installation itself is as easy as it can be, though you need to make sure that your PHP and mySQL versions are somewhat recent (PHP 5.2+ and mySQL 4.20+). We were able to get Magento up and running on both our local Windows XP environments and our staging server, which is currently running FreeBSD 6 without any headache.</p>
<div id="attachment_27" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.contextsolutions.net/blog/wp-content/uploads/2008/12/magento-admin-full.jpg"><img class="size-full wp-image-27" title="magento-admin-full" src="http://www.contextsolutions.net/blog/wp-content/uploads/2008/12/magento-admin-full.jpg" alt="Magento Admin Panel" width="500" height="274" /></a><p class="wp-caption-text">Magento Admin Panel</p></div>
<p>As I mentioned above, Magento has a very robust templating system. However, this templating system is what&#8217;s probably going to cause the biggest learning curve for your development team. I won&#8217;t go into too much detail, but in order to provide extreme levels of customization without hacking up the code with if/else blocks or switch statements, Magento uses xml based layout definitions (or &#8220;blocks&#8221;) that apply dynamic data (e.g. products, categories, etc) to &#8220;skeleton&#8221; PHP templates that mainly consist of placeholders for the blocks. It will be a little confusing at first, but it&#8217;s worth getting over the learning curve since the extensibility is almost limitless.</p>
<p>Magento also offers a nice built-in CMS, though we chose to deploy Magento to a subdirectory beneath our already content-managed sites, one being written in <a href="http://www.expressionengine.com">ExpressionEngine</a>, the other being a custom <a href="http://www.phpfuse.net">Fuse</a>-based CMS we built ourselves. We integrated each one differently in order to product the same result. For the Fuse-based CMS, we were able to include the Fuse bootstrap and templating engine in Magento&#8217;s PHP-based template files, giving us full access to Fuse functionality from within Magento. ExpressionEngine didn&#8217;t play as well with Magento directly due to naming conflicts and such, so we chose to use <a href="http://www.jquery.com">jQuery</a> to load content from individual ExpressionEngine files (e.g. the header and footer) via AJAX. Each is working well so far.</p>
<p>At this point, we&#8217;re about a week into these Magento projects, and things are going well. Acquainting ourselves with the template system definitely caused some head scratching and foul language at first, but I think we have a good handle on it at this point. I know Steve, one of our developers, is having an image uploading issue in his local environment that he hasn&#8217;t pinned down, but image uploading is working fine on the development server. I&#8217;m looking forward to the launch and hoping that Magento delivers as well as I expect it to.</p>
<div><table > <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.contextllc.com%2Fblog%2F2008%2F12%2Finitial-thoughts-on-the-magento-e-commerce-platform%2F&amp;t=Initial+Thoughts+on+the+Magento+E-Commerce+Platform&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.contextllc.com%2Fblog%2F2008%2F12%2Finitial-thoughts-on-the-magento-e-commerce-platform%2F&amp;title=Initial+Thoughts+on+the+Magento+E-Commerce+Platform&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.contextllc.com%2Fblog%2F2008%2F12%2Finitial-thoughts-on-the-magento-e-commerce-platform%2F&amp;title=Initial+Thoughts+on+the+Magento+E-Commerce+Platform&amp;t=1 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.contextllc.com/blog/2008/12/initial-thoughts-on-the-magento-e-commerce-platform/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
