<?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>Ecommerce Solutions Blog &#124; Gorilla</title>
	<atom:link href="http://blog.gorillagroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gorillagroup.com</link>
	<description>Observations about design, code and the world of commerce.</description>
	<lastBuildDate>Fri, 17 Feb 2012 22:53:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Validating Magento Extensions with PHPUnit</title>
		<link>http://blog.gorillagroup.com/validating-magento-extensions-with-phpunit/</link>
		<comments>http://blog.gorillagroup.com/validating-magento-extensions-with-phpunit/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 19:48:11 +0000</pubDate>
		<dc:creator>David Joly</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1528</guid>
		<description><![CDATA[PHPUnit is an open-source Unit Testing Framework by Sebastian Bergmann. In combination with PHP 5.3&#8242;s powerful Reflection API and careful attention to class design, it can be used to validate custom Magento extension code. The Art of Writing Testable Code &#8230; <a href="http://blog.gorillagroup.com/validating-magento-extensions-with-phpunit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://github.com/sebastianbergmann/phpunit/" target="_blank">PHPUnit</a> is an open-source Unit Testing Framework by Sebastian Bergmann. In combination with PHP 5.3&#8242;s powerful Reflection API and careful attention to class design, it can be used to validate custom Magento extension code.</p>
<h3>The Art of Writing Testable Code</h3>
<p>Magento can present unique challenges to conventional unit testing. The reason for this is that most of the Magento code base has a dependency on Mage, a global class that provides service location, event dispatching and many helper methods. These hard dependencies are readily recognizable:</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">class My_Module_Model_SomeClass
{
    public function getSomeService()
    {
        return Mage::getModel('some/service');
    }
}</pre>
<p>The method getSomeService is coupled to Mage. This method is challenging, because we are unable to isolate the class for testing. But the hard dependency on Mage is not a requisite when developing Magento extensions. We can make this class unit test friendly by making two minor changes:</p>
<h4>1) Use Properties with Getters</h4>
<p>Add a some service property to the class and only request some service from Mage if it does not already exist in the class:</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">class My_Module_Model_SomeClass
{
    protected $_someService;

    public function getSomeService()
    {
        if(null === $this-&gt;_someService){
            $this-&gt;_someService = Mage::getModel('some/service');
        }
        return $this-&gt;_someService;
    }
}</pre>
<p>While this change may seem minor, it can make a huge difference when it comes to testing. Using PHP&#8217;s Reflection API, we can inject some service into the some service property, removing the hard dependency to Mage.</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">$prop = new ReflectionProperty('My_Module_Model_SomeClass','_someService');
$prop-&gt;setAccessible(true);
$someClass = new My_Module_Model_SomeClass();
$prop-&gt;setValue($someClass,new Some_Module_Model_SomeService());</pre>
<p>The code above accesses the protected, normally inaccessible $_someService property and injects a My_Module_Model_SomeService instance into it. This instance will be returned by the getSomeService method, allowing us to effectively mock out the My_Module_Model_SomeService class.</p>
<h4>2) Use Setter Methods:</h4>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">class My_Module_Model_SomeClass
{
    //...

    public function setSomeService(My_Module_Model_SomeService $someService)
    {
        $this-&gt;_someService = $someService;
    }

    //...
}</pre>
<p>With the setter, we now don&#8217;t need Reflection:</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">$someClass = new My_Module_Model_SomeClass();
$someClass-&gt;setSomeService(new My_Module_Model_SomeService());</pre>
<h3>When to Use Reflection, When to Use Setters</h3>
<p>Before deciding to simply throw setters on your objects, consider the purpose of your object. What should the public API do? For most purposes, I recommend using setters, as this adheres to the inversion of control principle. The power of reflection is best left to the testing of protected methods.</p>
<h3>Installing PHPUnit</h3>
<p>PHPUnit is available as a PEAR package and on <a title="github" href="https://github.com/sebastianbergmann/phpunit/" target="_blank">github</a>. If you want to use PHP&#8217;s Reflection to access protected properties or methods you will need PHP v 5.3 or greater.</p>
<h3>Testing Your Extension</h3>
<p>Testing your Magento module is easy when best practices are followed with regard to your codebase structure. I like to organize my tests in a &#8216;tests&#8217; directory. To use PHPUnit&#8217;s autoloader, you need to be sure to follow PEAR/PSR-0 conventions (same as Magento and Zend). This means if you have the test class My_Module_Model_SomeClassTest, the directory structure must be organized as the one below:</p>
<pre>My/
  Module/
  .  Block/
  .  Helper/
  .  Model/
  .  . SomeClass.php
  .  controllers/
  .  etc/
  .  sql/
  .  tests/
  .  . My/
  .  .  Module/
  .  .  .  Model/
  .  .  .  . SomeClassTest.php
  .  .  bootstrap.php
  .  .  phpunit.xml</pre>
<p>To configure your test suite, you will first need a phpunit.xml config file. the PHPUnit test runner will use these settings to configure the test environment:</p>
<pre class="brush: xml; gutter: true; first-line: 1; highlight: []; html-script: false"><!--?xml version="1.0" encoding="UTF-8"?-->
< phpunit backupGlobals="false"
        backupStaticAttributes="false"
        bootstrap="bootstrap.php"
        colors="false"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        processIsolation="false"
        stopOnFailure="true"
        syntaxCheck="false"
>
    < testsuites>
        < testsuite name="My_Module">
            < directory>./My< /directory>
        < /testsuite>
    < /testsuites>
< /phpunit></pre>
<p>Running tests normally requires more than just an XML config file. If you look carefully, the phpunit.xml phpunit node contains a &#8216;bootstrap&#8217; attribute. We direct PHPUnit to load bootstrap.php. We use this file to bootstrap the Magento environment, giving us access Magento services:</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;?php
//Start Magento Environment
require_once '../../../../../Mage.php';
Mage::app();</pre>
<p>Now we can create our test class:</p>
<pre class="brush: php; gutter: true; first-line: 1; highlight: []; html-script: false">&lt;?php
class My_Module_Model_SomeClassTest extends PHPUnit_Framework_TestCase
{
    protected $someclass;

    public function setUp()
    {
       $this-&gt;someclass = Mage::getModel('my_module/someClass');
    }

    public function testSomeClass()
    {
        $this-&gt;assertInstanceOf('My_Module_Model_SomeClass',$this-&gt;someclass);
    }

    public function testProtectedMethod()
    {
       $r = new ReflectionClass('My_Module_Model_SomeClass');
       $m = $r-&gt;getMethod('_protectedMethod');
       $m-&gt;setAccessible(true);
       $result = $m-&gt;invoke($this-&gt;someclass,'some input');

       $this-&gt;assertEquals('expected output',$result);
    }
}</pre>
<p>This test can now be run using PHPUnit&#8217;s command line test runner. Open up a console and navigate to your module&#8217;s tests directory and type the following:</p>
<pre>#phpunit My_Module_Model_SomeClassTest</pre>
<h3>Final Comments</h3>
<p>PHPUnit is an incredible tool, and makes testing rather easy, but when should you use it? I suggest testing difficult-to-write and mission-critical code. Case in point, suppose your module integrates Magento with a third party service, an ERP system perhaps. You should definitely write tests for your integration points, including testing failure conditions.</p>
<p>Generally speaking, testing 100% of your code is not feasible and only worth while if 100% of your code is mission critical. Testing block classes for example are usually not necessary as visual content is tested thoroughly while testing the user interface, both during development and in QA.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/validating-magento-extensions-with-phpunit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Value of Photography and Your Website</title>
		<link>http://blog.gorillagroup.com/the-value-of-photography-and-your-website/</link>
		<comments>http://blog.gorillagroup.com/the-value-of-photography-and-your-website/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 14:30:50 +0000</pubDate>
		<dc:creator>Eric Dunlap</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1577</guid>
		<description><![CDATA[&#160; The design of a web site can work wonders to redefine a brand and increase conversions, but don’t forget about the photography. Properly executed photography can bring emotion (on some level) to nearly anything, whether it’s shoes, apparel, peanuts &#8230; <a href="http://blog.gorillagroup.com/the-value-of-photography-and-your-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/02/PEA0665-P-Peanut_Club_image.jpg"><img class="alignnone size-full wp-image-1579" title="PEA0665-P-Peanut_Club_image" src="http://blog.gorillagroup.com/wp-content/uploads/2012/02/PEA0665-P-Peanut_Club_image.jpg" alt="" width="700" height="650" /></a></p>
<p>&nbsp;</p>
<p>The design of a web site can work wonders to redefine a brand and increase conversions, but don’t forget about the photography. Properly executed photography can bring emotion (on some level) to nearly anything, whether it’s shoes, apparel, peanuts or a drill press. This concept may sound a bit crazy, but think about it. If you’re selling food; wouldn’t you want your product to look as delicious as possible? Wouldn’t you want your potential customer’s stomachs to growl just seeing your goods online? If you’re selling clothing, the customer is going to want to see themselves (or someone else) in it. The customer wants to know how it will look on their body, what it looks like from various angles, and if there are any interesting design details. </p>
<p>Use your photography to connect with your customers and build an emotional response. The photos should be commanding enough that whoever is viewing them can imagine using or enjoying the products being showcased. This emotional connection can be used in all occasions, whether it’s showing an image of a pretty girl in a skirt, or a dad building a cradle for his child. Using emotional imagery can influence a customer’s decision to buy a product.</p>
<p>Build visual reputation with your brand by presenting your products in a unique way. Look at your competition and see what they’re doing with their imagery. Look at other well-known brands outside of your industry. Are they using techniques that could help you separate your brand from your competition?</p>
<p>If you are in a highly competitive field such as footwear, the more angles of your product that you can offer, the better. Your website cannot put the shoe in their hands, or on their feet, but you can do your best to emulate that experience by providing images that present the shoe from every angle.</p>
<p>Other imagery options that can be beneficial are video or 360 degree spin. Both have been shown to increase conversion rates by as much as 50%. Including short video interviews or product reviews can increase customer’s overall perception of your brand, as well as create better customer service experiences. Zappos, for example, has been using videos very effectively on their website for some time. It’s another feature of their site that really separates them from the competition. The videos are interesting, informative and quick. 360 spin maybe a great way to go if you are selling consumer electronics or fashion accessories. In general, 360 works better for smaller products, so that would be something to keep in mind when exploring these possibilities. Both video and 360 spin come with potential considerations—video production, lighting, audio, time to complete, and associated cost—that can determine if either of these options will work for you.</p>
<p>Creating polished and analogous content can work toward increasing you brand equity. When your products look good (photography) and your site looks good (design and UX), your brand has a better opportunity to increase your ROI.</p>
<p>In the end, it is important to set the correct expectations for your photography. This is an investment in your brand and your bottom line. Whether you’re photographing purses or peanuts, professional photography takes some time and proper editing to make it standout. You will NOT be able to go from snapping a shot to putting it on your site and have it look amazing, without some extra work. But in the end, that extra work will be well worth the effort.</p>
<p>Here is some more food for thought to give you some more insight into the benefits of adding <a title="360 view vs. video" href="http://www.shotfarm.com/blog/the-great-debate-spin-photography-vs-video/" target="_blank">360 views</a> and <a title="Benefits of video" href="http://econsultancy.com/us/blog/6834-why-etailers-need-product-videos" target="_blank">video</a> into your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/the-value-of-photography-and-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GEMS Success Stories: Very Pashmina</title>
		<link>http://blog.gorillagroup.com/gems-success-stories-very-pashmina/</link>
		<comments>http://blog.gorillagroup.com/gems-success-stories-very-pashmina/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 16:34:54 +0000</pubDate>
		<dc:creator>Anya Twillie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1564</guid>
		<description><![CDATA[Launching an ecommerce site can be an exciting and daunting time for any company. The thrill of seeing your site live for the first time and the knowledge of knowing that you’re able to provide your products and/or services to &#8230; <a href="http://blog.gorillagroup.com/gems-success-stories-very-pashmina/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Launching an ecommerce site can be an exciting and daunting time for any company. The thrill of seeing your site live for the first time and the knowledge of knowing that you’re able to provide your products and/or services to a wider audience is enough to put a smile on a merchant’s face. At the same time, the challenge of maintaining, marketing, and keeping your site afloat can be an intimidating idea to think about. Luckily Gorilla has developed a team of highly trained Magento and Demandware professionals to tackle all of your maintenance needs.</p>
<p>One company who has quickly learned the value of our service is Very Pashmina. After launching their site in Summer 2011, owner Matthew Oldham quickly discovered that the site needed changes. He stated, “I wanted to improve my SEO, change the site&#8217;s navigation options, and make a bunch of other changes to improve the experience.” Unsure on how to make those changes internally, Matthew looked to other sources to make his ideas come to life.<br />
After compiling a list of requirements for his site, he sent the list out to developers. In return he received a bunch of offers from off shore developers that were willing to do the job at a cheap price, and local developers that were charging exorbitant fees .</p>
<p>In the end Matthew chose Gorilla’s GEMS service as the best solution for Very Pashmina’s needs. When asked about his reasoning behind choosing GEMS, Matthew mentioned that, “As Magento 2010 Partner of the year I knew the Gorilla team had a reputation for quality, and the price point for the service was still competitive.” Thus began the wonderful partnership between Very Pashmina and GEMS.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/02/VeryPashmina-screenshot.jpg"><img class="alignnone size-full wp-image-1565" title="VeryPashmina screenshot" src="http://blog.gorillagroup.com/wp-content/uploads/2012/02/VeryPashmina-screenshot.jpg" alt="" width="700" height="500" /></a></p>
<p>Since the beginning of the partnership in late 2011, Matthew has already begun to see his website change for the better. “Working with the GEMS team I’ve broken the project down into chunks and have already made significant adjustments to the design of my homepage and the site’s navigational structure.” When interacting with the GEMS Customer Service Portal, Matthew was pleased with its ease of use. “What surprised me most is how ‘low maintenance’ the whole experience was. Typically I send an email with instructions and details of the design changes to the GEMS staff and in a couple of days the changes are made on the test server.”</p>
<p>GEMS ability to provide an easy maintenance solution for Very Pashmina has helped them have peace of mind when submitting a ticket request for any alterations for their site. As a result of having adequate turnaround times for submitted tickets, Very Pashmina is able to see their changes pushed to a live server in a matter of days instead of weeks, or (shudder) months. Nowadays, a website’s functionality can be the difference between a customer making a purchase on your site or abandoning their shopping cart. With this in mind, it has become increasingly important to make sure your ecommerce site functions properly, and is still user friendly and relevant for your customers.</p>
<p>Every GEMS technician has the client’s best interest in mind at all time because the success of our client’s website is the ultimate goal for GEMS. By providing top tier customer service to every GEMS subscriber, we believe that Very Pashmina will be the first of many GEMS success stories that you’ll read about on our blog.</p>
<p>To learn more about our GEMS services please visit our Managed Services <a title="GEMS" href="http://www.gorillagroup.com/Services/Managed-Services/Plans" target="_blank">page</a>, and to learn more about Very Pashmina please visit their <a title="Very Pashmina" href="http://www.verypashmina.com" target="_blank">homepage</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/gems-success-stories-very-pashmina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Value of a Project Manager</title>
		<link>http://blog.gorillagroup.com/the-value-of-a-project-manager/</link>
		<comments>http://blog.gorillagroup.com/the-value-of-a-project-manager/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 20:43:33 +0000</pubDate>
		<dc:creator>Lauren Miller</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1533</guid>
		<description><![CDATA[Some clients struggle with the value of a Project Manager on their new website initiatives. They often think, &#8220;a Project Manager isn&#8217;t really building anything or designing anything, so what am I paying for, exactly?&#8221; In truth, the Project Manager &#8230; <a href="http://blog.gorillagroup.com/the-value-of-a-project-manager/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some clients struggle with the value of a Project Manager on their new website initiatives. They often think, &#8220;a Project Manager isn&#8217;t really building anything or designing anything, so what am I paying for, exactly?&#8221; In truth, the Project Manager is one of the most important roles in the lifecycle of the project.</p>
<p>The key word there is <strong>lifecycle</strong>. Sure, many important members of the team are critical in the success of the project, but no other team member besides the PM is in the trenches with the project every single day, from pre-kickoff to post-launch:</p>
<p>A designer more or less moves away from the project after the design phase. The Architect shifts gears once the Front End and Back End Developers are happily coding away. The Developers miss the beginning of the project, when all of the business requirements are defined with the Architect. The QA team gets the brunt of the action right before launch. The PM, however, is with the project every step of the way. They manage not only the <strong>internal team</strong>, but also the <strong>client contacts</strong>, and the <strong>demand for resources</strong> competing with their project.</p>
<p>Oh, and multiply all this times <strong>5</strong>, which is the average number of projects a PM at Gorilla juggles at the same time.</p>
<p>A big part of my job is <strong>communicating</strong> to the client and keeping their business goals clearly in sight. The client doesn&#8217;t need to know (and rarely asks for) every detail of the project, every road bump we&#8217;ve hit, and every time we had a success. But they <strong>do</strong> need to know that the PM is <strong>advocating</strong> for them, communicating critical <strong>milestones</strong>, and giving feedback on the <strong>status</strong> of the project. I reassure them that we are all working towards the same goal, and I gain their trust. The client&#8217;s success, after all, is a Gorilla success.</p>
<p>A PM also facilitates <strong>collaboration</strong> and <strong>communication</strong> between all involved. Whether that&#8217;s with a stand up daily meeting, weekly client calls, status reports to clients, resource allocation meetings, budget check-ins, and of course the myriad of ways I lovingly nag my fellow Gorillas (email, IM, phone, and the good old fashioned desk visit).</p>
<p>Another part of my job I really enjoy is making sure my Gorillas are <strong>set up to do what they do best</strong>, and speaking their language. Some fancy-pants business people call this <strong>style flexing</strong>. For example, I make sure my Designers have clear direction from the client, proper assets, and requirements laid out in front of them. I challenge them to solve for business objectives and I speak their language, if only for a few hours a week. I do the same for all team members, I make sure my Developers have the tools and the information they need so they can have an uninterrupted stream of &#8220;headphones on, head down, and code&#8221; time. I am not a Developer by any stretch of the imagination, but I have to turn on my &#8220;developer&#8221; switch and speak their language. I work with my Account Managers and the executive team on giving them insight into high level opportunities and challenges the client may be facing &#8211; and you guessed it, I have to switch gears speak their language too.</p>
<p>I fight for my team when there is a resource pinch, which involves communicating to the other PM&#8217;s on the Gorilla team facing the exact same challenges. I alternate between a <strong>cheerleader</strong> and a <strong>task-master</strong>, sometimes all in the span of a 30-minute meeting. I give my team members high-fives when they are on track and on budget, and I work with them and help them find solutions when things get off track or when they fall into a &#8220;black hole of code&#8221;.</p>
<p>Call me crazy, but I absolutely love shifting gears every hour, every day, every week, to talk to my different internal teams and clients. For a Project Manager, it&#8217;s just part of the daily routine to be juggling a thousand things at once. Whereas a Designer or Developer can work on something for 3-hour chunk of uninterrupted time, I find it luxurious to find the opportunity to spend a 20-minute interval on one task. And in reality, that is why I like my job. It&#8217;s constantly <strong>moving, changing,</strong> and <strong>propelling forward</strong>.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/02/photo-1.jpg"><img class="alignnone size-full wp-image-1534" title="photo (1)" src="http://blog.gorillagroup.com/wp-content/uploads/2012/02/photo-1.jpg" alt="" width="500" height="550" /></a></p>
<p><strong>Here&#8217;s a simplistic view of a PM&#8217;s role, above</strong>. It&#8217;s a wheel in which the team members are all the spokes, and the hub is (you guessed it) the PM. That&#8217;s precisely what a PM is, a <strong>hub</strong> of information and communication. Somehow we PM&#8217;s keep it all straight in our heads. Somehow we can remember most of the details of <strong>ALL</strong> of the spokes along the entire lifecycle of the project. And remember, we have 4-5 wheels (projects) going on at once! Somehow we greet our clients with a smile even if something, or some things, have completely blown up. Somehow we Gorilla PM&#8217;s remember what every team member is working on, when it&#8217;s due, what the hour allocation is, and what their favorite coffee is from the cafe down the street. Somehow we remember every personality quirk, business objective, and team member on the client side. Somehow we remember to take a breath, a step back, and find humor in our crazy little office.</p>
<p>A Project without a PM is like building a house without a Foreman. It&#8217;s like playing a symphony without a Conductor. It&#8217;s like putting on a show without a Director. Hopefully you get the point now, a PM is an incredibly valuable and absolutely <strong>essential</strong> role, and the Gorilla process would fall apart without that <strong>hub of information and communication</strong> that is the Project Manager.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/the-value-of-a-project-manager/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GEMS Ticket Submission Process</title>
		<link>http://blog.gorillagroup.com/gems-ticket-submission-process/</link>
		<comments>http://blog.gorillagroup.com/gems-ticket-submission-process/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 17:05:29 +0000</pubDate>
		<dc:creator>Anya Twillie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1515</guid>
		<description><![CDATA[Over the last couple of months Gorilla has been receiving a lot of questions and interest about our Gorilla Enhanced Managed Services, more commonly known as GEMS. For those of you who aren’t familiar with the service yet, GEMS is &#8230; <a href="http://blog.gorillagroup.com/gems-ticket-submission-process/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the last couple of months Gorilla has been receiving a lot of questions and interest about our Gorilla Enhanced Managed Services, more commonly known as GEMS. For those of you who aren’t familiar with the service yet, GEMS is our subscription-based service that provides maintenance and technical support for Magento and Demandware ecommerce sites. Now that we’re all on the same page I’m going to give you all an inside tour of how the GEMS process works.</p>
<p>After selecting your plan and officially becoming a GEMS client, the next step is setting up your company’s Customer Service Portal (CSP) user accounts and escalation contacts. Because every user is allowed to submit tickets to our support team, GEMS limits the number of users to 6. Escalation contacts are used when a GEMS support member is trying to get in touch with the client because a CSP ticket hasn’t been responded to. This is important, because a GEMS technician cannot begin work on a ticket until it is approved by the client.</p>
<p>Now that your company’s account has been setup and your users have been assigned, we can figure out how the process of creating a ticket works. When you are experiencing problems or want to make changes to your website the way to submit these issues/requests is by submitting a ticket through the GEMS CSP. The CSP offers five fields to help categorize tickets; change, incident, problem, question, and other. These fields are defined as:</p>
<ul>
<li>Change &#8211; Request to change a feature or functionality specific to the site</li>
<li>Incident &#8211; One-time error issue related to the site</li>
<li>Problem &#8211; On-going site issue that affects functionality or performance</li>
<li>Question &#8211; Any general question related to your site from either an IT or Business User Perspective</li>
<li>Other &#8211; If you are unsure how to categorize a ticket, or the ticket was submitted via email</li>
</ul>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/GEMS2.jpg"><img class="alignnone size-full wp-image-1516" title="GEMS2" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/GEMS2.jpg" alt="" width="525" height="582" /></a></p>
<p>In addition to categorizing and describing the ticket, GEMS also has an issue severity scale that helps GEMS manage follow-ups and turnaround time for submitted tickets. This scale ranges from level one, which consists of cosmetic issues, to level five which pertains to full site outages and checkout/shopping cart problems that prevent customers from purchasing products. Issues that have a severity of level 4 or 5 are the only time where a GEMS technician will begin work on your site without authorization. This exception is put in place to limit your website’s downtime and to quickly get your site back up and running.</p>
<p>After submitting your ticket, it is then assigned to a GEMS technician. This technician will be in contact with you throughout the resolution of the ticket, and will periodically send you updates on the status of your ticket. Once the technician believes that the ticket has been sufficiently fulfilled, they will send a confirmation to the CSP user for their approval. When the changes get the final seal of approval, they are launched on the client’s live server and the ticket is closed.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/GMES-Customer-Ticket2.jpg"><img src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/GMES-Customer-Ticket2.jpg" alt="" title="GMES Customer Ticket2" width="558" height="513" class="alignnone size-full wp-image-1520" /></a></p>
<p>The overall goal of the services that GEMS offers is to make receiving technical support for your company as easy and pain free as possible. The CSP portal provides clients with a quick way to communicate their technical needs with the members of the GEMS support team. The 24/7 technical support that GEMS offers is more than an economical ecommerce support option for websites, it is also a service that implements best in-class protocols for site management based on the ITIL framework. Furthermore, GEMS is the easiest way to ensure that your website is being managed even when you can’t, giving you peace of mind that your site’s in good hands.</p>
<p>Visit the <a href="http://www.gorillagroup.com/Services/Managed-Services" title="GEMS Website" target="_blank">GEMS website</a> to learn more about the plans and features that GEMS has to offer. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/gems-ticket-submission-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our New Kiev Office Joins the Gorilla Family</title>
		<link>http://blog.gorillagroup.com/our-new-kiev-office-joins-the-gorilla-family/</link>
		<comments>http://blog.gorillagroup.com/our-new-kiev-office-joins-the-gorilla-family/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 23:42:07 +0000</pubDate>
		<dc:creator>Randy Kohl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1488</guid>
		<description><![CDATA[One of the oldest cities in Eastern Europe, with a history dating back to 482 (not a typo), Kiev is a cosmopolitan city of 3 million, roughly the size of Chicago. From the beautiful Maidan Nezalezhnosti (Independence Square) to the &#8230; <a href="http://blog.gorillagroup.com/our-new-kiev-office-joins-the-gorilla-family/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/visit-kiev-ukraine.jpg"><img class="aligncenter  wp-image-1491" title="Independence Square" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/visit-kiev-ukraine.jpg" alt="" width="614" height="461" /></a></p>
<p>One of the oldest cities in Eastern Europe, with a history dating back to 482 (not a typo), Kiev is a cosmopolitan city of 3 million, roughly the size of Chicago. From the beautiful Maidan Nezalezhnosti (Independence Square) to the baroque majesty of St. Andrews church, Kiev is a blend of the ancient and the modern. And in recent years, the city has emerged as a high tech hub, home to a highly educated and skilled workforce that has spawned a number of innovative technologies and companies.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/St.-andrews-Kiev.jpg"><img class="aligncenter size-full wp-image-1496" title="St. Andrews Kiev" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/St.-andrews-Kiev.jpg" alt="" width="234" height="216" /></a></p>
<p>At the end of 2011, Gorilla announced the acquisition R3Si, a former Magento Silver partner located in Kiev. This so happens to be just a stone’s throw from Magento’s local offices where the ecommerce platform was first developed. Following the announcement, Gorilla Principal Brian Grady and COO Justin Finnegan traveled to Kiev to meet the team, learn more about their work culture and environment and instill their vision for the future of the company.</p>
<p style="text-align: left;">Enthusiasm for the visit was immediately apparent when a half dozen members of the Kiev team greeted Brian and Justin at the airport. From there, Brian and Justin spent their first day touring the city. It so happened that this fell on Orthodox Christmas, one of the most important days on the Ukrainian calendar, which provided a unique insight into the city’s rich heritage, and equally rich cuisine.</p>
<p>Day 2 was spent at the Kiev offices formally introducing the Kiev team to Gorilla and vice versa. First came a tour of the office and the carpal tunnel-inducing realization that the office wi-fi password was 64 characters long—courtesy of our security-conscious Director of Technology, Igor Rafalovsky. The first order of business was to have this changed. Next came a walkthrough of the 2012 business plan and an overview of Gorilla’s overall philosophy. This included an organizational realignment of resources to better support the rapid growth of Gorilla’s dedicated Enhanced Managed Services offering GEMS and our newly launched In Store product development business unit.</p>
<p style="text-align: left;"><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0840.jpg"><img class="aligncenter size-full wp-image-1502" title="Kiev Preso" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0840.jpg" alt="" width="480" height="268" /></a></p>
<p>Following the company meeting, one on one discussions were held with each staff member to answer questions and solicit their input and suggestions. And to bring a taste of the camaraderie that is a core part of Gorilla culture, the entire group embarked on a team-building exercise that translates to any language: bowling.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0630.jpg"><img class="aligncenter size-full wp-image-1505" title="A 300 game hangs in the balance" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0630.jpg" alt="" width="480" height="449" /></a></p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0629.jpg"><img class="aligncenter size-full wp-image-1507" title="Strike" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0629.jpg" alt="" width="480" height="427" /></a></p>
<p>Overall, Brian and Justin were tremendously impressed by the professionalism of the entire Kiev team and what they will bring to Gorilla as we continue to grow. Chicago and Kiev may be 5,000 miles apart, but our people are already more closely aligned than any of us could have imagined.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0603.jpg"><img class="aligncenter size-full wp-image-1509" title="The team Relaxes" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0603.jpg" alt="" width="480" height="330" /></a></p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0839.jpg"><img class="aligncenter size-full wp-image-1510" title="Brian, Justin and the Kiev Management Team" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/100_0839.jpg" alt="" width="480" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/our-new-kiev-office-joins-the-gorilla-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Human Centered Design for Interactive</title>
		<link>http://blog.gorillagroup.com/human-centered-design-for-interactive/</link>
		<comments>http://blog.gorillagroup.com/human-centered-design-for-interactive/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 22:09:16 +0000</pubDate>
		<dc:creator>Ethan Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[cross channel]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[Gorilla]]></category>
		<category><![CDATA[multi-channel]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1478</guid>
		<description><![CDATA[We&#8217;re committed to changing the way we do things around here. A lot. One of the changes on the horizon is to push our design services in a direction closer to a human-centered approach. That&#8217;s a tall order when we &#8230; <a href="http://blog.gorillagroup.com/human-centered-design-for-interactive/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/sitemap.jpg"><img class="alignnone size-full wp-image-1483" title="sitemap" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/sitemap.jpg" alt="sitemap sketch" width="580" height="387" /></a></p>
<p>We&#8217;re committed to changing the way we do things around here. A lot.</p>
<p>One of the changes on the horizon is to push our design services in a direction closer to a human-centered approach. That&#8217;s a tall order when we practice a medium that is roundly criticized for doing more to make people anti-social than anything else. Adopting design methods historically reserved for industrial design and product development won&#8217;t be easy in interactive design, but we&#8217;re committed to it as a path for Gorilla.</p>
<p>Aren&#8217;t you just talking about user-centered design?</p>
<p>I get that question a lot. In some ways yes, but Chad Camara has a <a href="http://www.peoplefirstdesign.com/blog/human-centered-vs-user-centered/" target="_blank">post on his blog</a> that encapsulates the differences very well in my opinon. We&#8217;re striving to focus on real, human improvement in our offering, not just improving efficiency. I will be challenging all of Gorilla&#8217;s clients to consider how their product or service improves the lives of their customers. Focusing on holistic design concerns <em>in addition</em> to efficiency is something we&#8217;re seeing as critical to the mutli-channel environment. People are smart enough these days to know when you&#8217;re trying to sell to them versus have a relationship with them. For a lot of our clients, user-centered just isn&#8217;t going to cut it anymore.</p>
<p>We&#8217;ve got a lot of work to do in this respect. The ephemeral nature of digital media is going to be an advantage and a drawback. The technology moves far too quickly to be mired in research for too long, but the relative ease of deployment means when you consider the long view, you can take a cyclic approach that will put human concerns first.</p>
<p>It will be interesting and challenging no doubt to see where this direction takes us in the years to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/human-centered-design-for-interactive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chartbeat AKA: Analytics Score Zone</title>
		<link>http://blog.gorillagroup.com/chartbeat-aka-analytics-score-zone/</link>
		<comments>http://blog.gorillagroup.com/chartbeat-aka-analytics-score-zone/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 18:49:33 +0000</pubDate>
		<dc:creator>Anya Twillie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillagroup.com/?p=1461</guid>
		<description><![CDATA[It can be tricky to break into the game of analytics, especially when competing against the likes of Google. This didn’t stop Chartbeat from aspiring to become a go to name in the world of web analytics. Launched in 2009 &#8230; <a href="http://blog.gorillagroup.com/chartbeat-aka-analytics-score-zone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It can be tricky to break into the game of analytics, especially when competing against the likes of Google. This didn’t stop Chartbeat from aspiring to become a go to name in the world of web analytics. Launched in 2009 by Tony Haile and a team of five employees, Chartbeat didn’t seem like a company that had the potential to be the go to analytical source for Forbes, The Onion, and Gawker. In two short years Chartbeat has cemented itself as a force to be reckoned with by providing companies with a better way to analyze customer traffic online.</p>
<p>The purpose behind Chartbeat is it provides companies with real-time information on what people are viewing while they visit their website. Unlike traditional analytic services that gives companies insight into what visitors are looking at during a period of time, Chartbeat lays out what people are looking at the second they click on a link. This allows clients to take advantage of trending pages the moment it happens, giving them an edge over their competitors.</p>
<p><strong>Data Express Train</strong></p>
<p>So you have an analytics account linked to your e-commerce web page, and it gets a few views here and traffic may spike occasionally, but have you ever wondered what those viewers are looking at while they’re on your site? Well that’s basically where Chartbeat comes into play. The data that Chartbeat collects isn’t just views, clicks, and amount time spent on the site. It allows clients to see what a visitor is doing while they are on a website. For example, if a viewer is scrolling through an article on your site, Chartbeat will display this information in your dashboard. This is key because a viewer who is actively engaging with your website is going to be a much more valuable asset to your business than someone who left the page open while they left to pick up their kids.</p>
<p>Chartbeat also gives clients the ability to see how their visitors are finding them. The Traffic Source feature diagrams how many visitors are coming from a direct source, a search, or a link from another page. In addition, Chartbeat goes even further to breakdown which sites viewers are linking from as well as the words used in a search, which gives clients the ability to capitalize on SEO opportunities with trending keywords that work.</p>
<p><strong>It’s Not Rocket Science</strong></p>
<p>Analytics can be a complicated and daunting task for an average online retailer or blogger. Occasionally being able to read between the lines to draw insights about your customers’ online viewing tendencies can in fact be a little overwhelming. To combat the feeling that you’re in over your head, Chartbeat has laid out all of your analytic data in a way that is easy to read and navigate. Located near the top of the page are modules for a 24 hour time line, Active Visits, and Top Sites. Located further down the page are modules for viewer locations, Source Traffic, Site Performance, Viewer Engagement, and Conversations.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/chartbeat1.png"><img class="alignnone  wp-image-1466" title="chartbeat1" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/chartbeat1.png" alt="" width="600" height="750" /></a></p>
<p>All of these statistics are broken down in a way that is easy to comprehend, and because all of this data is being updated in real time, it’s clear to see what pages or products are worth promoting. Using the Conversations module puts Twitter conveniently into the Chartbeat dashboard, allowing you to see what people are commenting on when they tweet about a product or article on your webpage, without having to open as second tab or window. By simply clicking on a username you’re able to quickly respond to their tweet making it easier to stay in touch with visitors who are interested in your site.</p>
<p><strong>Analytics on the Go</strong></p>
<p>Today it can be a considered unfortunate to some that work doesn’t end when you leave the office, but for those of us who have a website to run it can seem like work never ends. Chartlabs has added some mobile features that can be crucial to anyone with a website let alone an e-commerce website. In addition to having real-time updates, Chartbeat also enables you to receive email or SMS messages with important data on your site. This means that if there’s a spike in visitors on a page, or if the site itself slows to a stop, you will be the first to know.</p>
<p>The addition of the Chartbeat application in the iPhone App Store makes it easy for you to make decisions on trending (or not trending) pages right from your phone.  A mobile version of the Chartbeat dashboard is available at your fingertips. This translates into being able to account for and quickly react to unexpected increases and decreases in traffic while you’re away from your desk.</p>
<p><a href="http://blog.gorillagroup.com/wp-content/uploads/2012/01/chartbeat+app.png"><img class="alignnone size-full wp-image-1469" title="chartbeat+app" src="http://blog.gorillagroup.com/wp-content/uploads/2012/01/chartbeat+app.png" alt="" width="600" height="500" /></a></p>
<p><strong>What Does It All Mean?</strong></p>
<p>With the variety of features that Chartbeat has to offer it’s easy to see how and why they went from being a small and relatively unknown name in the business of analytics, to servicing over 2,500 corporate customers. Despite the undeniable usefulness of this real-time analytics service, I feel that it’s important to note that for all the good things Chartbeat does, it still doesn’t completely replace Google Analytics. It’s not exactly like comparing apples to oranges, but the two services are used for different tasks. Chartbeat lays out this concept by saying,</p>
<blockquote><p><em>“Traditional analytics services are focused on understanding usual behaviour across persistent content. For example, how well a sign up flow converts a visitor into a user. In contrast, real-time analytics is focused on unusual behaviour, the peaks and troughs of the social web, and it is focused upon transient content: content that might not have existed yesterday, might not be looked at tomorrow but today is driving your site.”</em></p></blockquote>
<p>It’s clear to see that while Google Analytics and Chartbeat seemed to be competing in the same race, they’re actually striving towards a common goal, which is to help you make the most out of analytic data. That is until Google’s recently launched Real-Time Analytics feature becomes a full feature of their analytics service instead of just being a beta. Then it’s game on!</p>
<p>There are some website management services that include Chartbeat analytics in their amenities. One management solution that we know very well here at Gorilla is our very own Gorilla Enhanced Managed Support, or for short GEMS. Our GEMS service offers 24/7 web maintenance for Demandware or Magento websites. Every subscription to GEMS includes a Chartbeat account that can be used to monitor your ecommerce website. Click <a title="GEMS" href="http://www.gorillaenterprisecommerce.com/Services/Managed-Services" target="_blank">here</a> to learn more about what our GEMS can offer.</p>
<p>In an ecommerce world that is always changing, the most important thing is to stay on top of consumer trends. Having the ability to track your viewers in real-time as they view your site can be a key way to gain a competitive edge against any other retailers within your industry. Online trends are changing every day and it forces websites to respond in a matter of hours instead of days. In an online e-commerce world where timing is everything, Chartbeat could be the analytic edge that gets you the worm.</p>
<p>Click <a title="Chartbeat" href="http://www.chartbeat.com" target="_blank">here</a> to visit Chartbeat’s website to find information on all of their real-time analytics solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/chartbeat-aka-analytics-score-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gorilla Culture: Dog Fridays!</title>
		<link>http://blog.gorillagroup.com/gorilla-culture-dog-fridays/</link>
		<comments>http://blog.gorillagroup.com/gorilla-culture-dog-fridays/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 15:59:49 +0000</pubDate>
		<dc:creator>Trisha Bates</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillachicago.com/?p=1420</guid>
		<description><![CDATA[Should you stop by our West Loop office on a Friday, you’ll likely find that Gorilla has gone to the dogs. Literally. That’s because Dog Day Fridays are a tradition here at Gorilla, where employees are welcome to bring their &#8230; <a href="http://blog.gorillagroup.com/gorilla-culture-dog-fridays/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Should you stop by our West Loop office on a Friday, you’ll likely find that Gorilla has gone to the dogs. Literally. That’s because Dog Day Fridays are a tradition here at Gorilla, where employees are welcome to bring their canine companions to the office. While here, our furry friends are free to sit in on meetings, roam around, grab a snooze beneath a desk, eat Beggin’ Strips, snarl menacingly at our Marketing Director, John Budz, and give their owners and co-workers a little break in the day.</p>
<p>Dogs Fridays is just one of the many ways our hard working Gorillas beat stress at work and lighten the mood.  Other benefits of dogs in the workplace include increased morale and productivity, happier employees, lower absenteeism rates, and even improved relationships among coworkers and increased camaraderie among employees. And if you don’t believe me…</p>
<p>A <a title="Central Michigan University Dog Study" href="http://www.economist.com/node/16789216" target="_blank">study</a> out of Central Michigan University reveals that dogs in the workplace can lead to more trust between coworkers and that leads to more collaboration among team members!  Research also shows that pets in the workplace can lead to a more creative work environment. (We also come up with great ideas between Monday and Thursday as well.)</p>
<p>Take a look at a few of our regular Gorilla visitors:</p>
<p>Xiomara Ortiz’ (Front End Developer) Kirikou, a Bichon-poo, and Chris Englerts’ (Application Engineer) Shitzu Snarf battle it out to see which is Alpha Gorilla.</p>
<p><iframe src="http://www.youtube.com/embed/YDKoIwWR3A4" frameborder="0" width="420" height="315"></iframe></p>
<p>Liz Duggan’s (Project Manager) beloved Shiba Inu, Keiko poses for our camera.</p>
<p><img class="alignnone size-full wp-image-1421" title="Keiko" src="http://blog.gorillachicago.com/wp-content/uploads/2012/01/Keiko.jpg" alt="Keiko" width="301" height="503" /></p>
<p>Ethan Smith’s (Creative Director) Standard Poodle, Ruby(licious) commandeering another dog’s nap pad!</p>
<p><img class="alignnone size-full wp-image-1422" title="Ruby" src="http://blog.gorillachicago.com/wp-content/uploads/2012/01/Ruby.jpg" alt="Ruby" width="392" height="294" /></p>
<p>Trisha Bates’ (Account Manager) Chihuahua, Gus is patiently awaiting a treat like the handsome little man he is.  &lt;3</p>
<p><img class="alignnone size-full wp-image-1423" title="Gus" src="http://blog.gorillachicago.com/wp-content/uploads/2012/01/Gus.png" alt="Gus" width="378" height="504" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/gorilla-culture-dog-fridays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merchant Accuses Amazon of Unfair Business Practices</title>
		<link>http://blog.gorillagroup.com/merchant-accuses-amazon-of-unfair-business-practices/</link>
		<comments>http://blog.gorillagroup.com/merchant-accuses-amazon-of-unfair-business-practices/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 18:33:24 +0000</pubDate>
		<dc:creator>Randy Kohl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gorillachicago.com/?p=1411</guid>
		<description><![CDATA[We recently published a post comparing merchant business practices for both Amazon and eBay. In that post, we surmised that Amazon doesn’t always play nice with merchants who use the Amazon platform to sell their wares. To reinforce our assertion, &#8230; <a href="http://blog.gorillagroup.com/merchant-accuses-amazon-of-unfair-business-practices/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">We recently published a post comparing merchant business practices for both Amazon and eBay. In that post, we surmised that Amazon doesn’t always play nice with merchants who use the Amazon platform to sell their wares. To reinforce our assertion, both the Wall Street Journal and The Atlantic Wire have recently reported about a lawsuit filed by an Amazon merchant accusing the ecommerce powerhouse of a host of unfair and anti-competitive business practices.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">From The Atlantic Wire article: “An accessories company has sued the Internet giant for alleged sabotage, making it the latest in a series of little guys who are calling the retail giant a bully.”</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">This is far from the first time these types of charges being leveled against Amazon, and will undoubtedly not be the last. As the Internet Giant continues to borrow from the Wal-Mart playbook, small merchants need to be especially wary of how they sell through the Amazon ecosystem.  You can find the full article here: http://www.theatlanticwire.com/business/2011/12/lets-count-all-ways-amazons-big-bully/46736/</div>
<p class="MsoNormal">We recently published a post comparing <a href="http://bit.ly/v5B61l">merchant business practices</a> for both Amazon and eBay. In that post, we surmised that Amazon doesn’t always play nice with merchants who use the Amazon platform to sell their wares. To reinforce our assertion, both the <em>Wall Street Journal</em> and <em>The Atlantic Wire</em> have recently reported about a lawsuit filed by an Amazon merchant accusing the ecommerce powerhouse of a host of unfair and anti-competitive business practices.</p>
<blockquote>
<p class="MsoNormal">From The Atlantic Wire article:  An accessories company has sued the Internet giant for alleged sabotage, making it the latest in a series of little guys who are calling the retail giant a bully.</p>
</blockquote>
<p class="MsoNormal">This is far from the first time these types of charges being leveled against Amazon, and will undoubtedly not be the last. As the Internet Giant continues to borrow from the Wal-Mart playbook, small merchants need to be especially wary of how they sell through the Amazon ecosystem.  You can find the full article here: <a href="http://www.theatlanticwire.com/business/2011/12/lets-count-all-ways-amazons-big-bully/46736/">http://www.theatlanticwire.com/business/2011/12/lets-count-all-ways-amazons-big-bully/46736/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.gorillagroup.com/merchant-accuses-amazon-of-unfair-business-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

