<?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>Redstage Magento Blog</title>
	<atom:link href="http://www.redstage.com/magento/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redstage.com/magento/blog</link>
	<description>Tips, Tricks &#38; News about Magento E-commerce</description>
	<lastBuildDate>Thu, 13 Oct 2011 22:27:39 +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>Limitations of Magento (And How to Overcome Them)</title>
		<link>http://www.redstage.com/magento/blog/2011/09/26/limitations-of-magento-and-how-to-overcome-them/</link>
		<comments>http://www.redstage.com/magento/blog/2011/09/26/limitations-of-magento-and-how-to-overcome-them/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 21:50:53 +0000</pubDate>
		<dc:creator>Adam Morris</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=530</guid>
		<description><![CDATA[My last post covered the benefits of Magento, so I figured it would only be fair to discuss the other side of the coin.
What are the limitations of Magento?
You didn&#8217;t think you were going to get all of this awesome functionality and endless extensibility without a few catches did you?
1) Speed
We&#8217;re just going to tackle [...]]]></description>
			<content:encoded><![CDATA[<p>My last post covered the <a href="http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/">benefits of Magento</a>, so I figured it would only be fair to discuss the other side of the coin.</p>
<p>What are the limitations of Magento?</p>
<p>You didn&#8217;t think you were going to get all of this awesome functionality and endless extensibility without a few catches did you?</p>
<p><strong>1) Speed</strong></p>
<p>We&#8217;re just going to tackle the big one right off the bat.  Yeah, Magento is slow, really slow.  I&#8217;m sure that&#8217;s what you&#8217;ve heard anyway.  The truth is, that it&#8217;s only really slow in the wrong hands.  Let&#8217;s start from the beginning.</p>
<p>Magento was designed to be the most extenisble system ever made.  And the original developers definitely made it happen.  To accomplish this, the system had to be architected by isolating each feature so that changing (extending) that feature wouldn&#8217;t affect the rest of the system.  The result is a whooole lot of files.  Magento is reading hundreds if not thousands of different files in hundreds of folders for every single visitor that&#8217;s on your site.</p>
<p>So with Magento&#8217;s biggest strength, it also inherited its biggest weakness.  I&#8217;m pretty sure that if Magento hadn&#8217;t gotten so popular so rapidly with tens of thousands of feature requests piling up on their site, then they would&#8217;ve gotten around to this speed problem.</p>
<p>What is one to do?  Based on our extensive experience on the subject, there&#8217;s actually a lot you can do.  First and foremost, GET A GOOD HOST.  And by good, I also mean that specializing in Magento.  If you throw just default magento onto a Godaddy dedicated server, it&#8217;s going to be very slow.  We&#8217;ve worked with at least a dozen different hosts, and have had our biggest success with a company called <a href="http://www.redstage.com/recommends/magemojo" target="_blank">MageMojo</a> &#8212; top notch hardware, Magento knowledge, and service.</p>
<p>Next you&#8217;re going to want to check out <a href="http://www.gxjansen.com/101-ways-to-speed-up-your-magento-e-commerce-website/" target="_blank">101 Ways to Speed up your Magento</a>.  It&#8217;s a very comprehensive guide.</p>
<p>The hosting is probably 80% of the problem, then the tweaks in the guide should make up the other 20%.  If you have a custom theme, and you&#8217;re site&#8217;s still really slow after both of those suggestions have been explored, then your problem most likely lies in one of two areas: 1. Your Extensions or 2. A custom Query.</p>
<p>Often times an extension developer will release something that works on a demo store, but is crippling when throwing traffic at it or a DB or more than 10 products.  A great example is a shop by brand extension that we once used that queried every single brand to see if it had products in it just to build a dropdown menu of the active brands.  It added a full second or more to the site&#8217;s load time.  That&#8217;s one of the reasons that we built our own <a href="http://store.redstage.com/shop-by-brand.html">Shop by Brand Extension</a>.</p>
<p>Similarly, a query written by your site&#8217;s development team, may be seemlingly innocent, but under load it kills you.  Usually it&#8217;s a very small, simple query that ends up being repeated hundreds of times to build a menu or find bestsellers.</p>
<p><strong>2) Documentation</strong></p>
<p>Well, there really is none.  The code isn&#8217;t really documented at all, and the manual that Magento has for sale isn&#8217;t really that useful.  To be honest, most open source platforms have been very poorly documented, but Magento hasn&#8217;t really even given it a shot.</p>
<p>For administration of your magento site, you&#8217;re best bet is to get your staff some Magento training, whether by webinar or 1 on 1.  The system has its fair share of quirks and unique terminology that take getting used to.  On the development front, it&#8217;s incredibly important to use a firm or developer that has extensive Magento experience.  More on that in #4.</p>
<p><strong>3) Upgrades</strong></p>
<p>Again, one of the main benefits of Magento, regular updates, is also a bit of a curse.  Magento&#8217;s never really had a good upgrade path, meaning a documented and well thought out process to go from one version to another.  And it doesn&#8217;t seem like that&#8217;s ever going to be a priority.  The result is that, when upgrading, things tend to break.  Most of the time it&#8217;s because a site wasn&#8217;t developed using Magento best practices.  But often it&#8217;s actually because Magento changed the name of something that was even being properly extended.  I remember one upgrade that Magento removed like 18 DB tables and added 30 new ones.  That was annoying&#8230;</p>
<p>There&#8217;s no real great way to overcome this limitation other than just ensuring that your site is always properly extended and properly developed with Magento best practices. That&#8217;s definitely a great start and will avoid most of your problems.  Anytime you upgrade, though, do it on a separate development environment with some Magento experts on hand.  There&#8217;s a great chance that something will break and need to be patched up before you can go live with the new version.</p>
<p><strong>4) Complexity of theming and development, Cost of development</strong></p>
<p>Developing a Magento takes about 5 times as long as your old OSCommerce, Zen Cart, CRE Loaded, or similar.  The theming system is, well, tedious.  However, the extra time put in in the beginning is well worth it.  Since Magento is a modern system built to modern standards, you won&#8217;t end up with the crazy hack job that you used to get customizing an older shopping cart.  This means that the total cost of the site over time will actually be much cheaper.</p>
<p>About 30% of our projects that come into our office are recoveries from other developers or other firms that have screwed it up.  About 70% of the sites that we have touched, that weren&#8217;t built by us, were not built with Magento best practices.  Although, to be fair, that&#8217;s usually why the end up in our lap in the first place.</p>
<p><strong>5) Search</strong></p>
<p>The out of the box search is, well, awful.  It&#8217;s pretty much as basic as it gets, and is totally useless in this age of e-commerce.  It does have some built in tweaks that you can play with, but still, useless.  You do have some options though.  Firstly, there&#8217;s <a href="http://www.betterstoresearch.com" target="_blank">Better Store Search</a>, a well established Magento Extension that&#8217;s pretty popular.  Then there&#8217;s <a href="http://php4u.co.uk/blast-search-lucene-magento-extension/" target="_blank">Blast Search Lucene</a>, which upgrades your search to use the <a href="http://en.wikipedia.org/wiki/Lucene" target="_blank">Lucene library</a>.  If you want to get really fancy and compete with the big boys, you&#8217;ll need a Semantic Search like <a href="http://store.redstage.com/celebros-salesperson-semantic-search-technology-for-magento.html">Celebros for Magento</a>.  (Shameless plug: Redstage is the first certified solutions provider of Celebros for Magento).</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>I think that about covers it.  Hopefully I haven&#8217;t scared you all off!</p>
<p>In my opinion, <a href="http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/">Magento&#8217;s strengths</a> far outweigh its weaknesses.  Magento is really one of the most powerful and extensible e-commerce platforms that I&#8217;ve ever worked with.  It&#8217;s important, though, to at least know what you&#8217;re getting yourself into.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/">Benefits of Magento</a> (redstage.com)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2011/09/26/limitations-of-magento-and-how-to-overcome-them/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Benefits of Magento</title>
		<link>http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/</link>
		<comments>http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 13:00:25 +0000</pubDate>
		<dc:creator>Adam Morris</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=522</guid>
		<description><![CDATA[What are the benefits of Magento over other shopping cart solutions?
Magento has pretty much taken over the ecommerce technology space, and we get that question more than any other.  So for everyone that stumbles on this article in your search for your ecommerce technology, I hope this provides a little help on your journey.
Is this [...]]]></description>
			<content:encoded><![CDATA[<p>What are the benefits of Magento over other shopping cart solutions?</p>
<p>Magento has pretty much taken over the ecommerce technology space, and we get that question more than any other.  So for everyone that stumbles on this article in your search for your ecommerce technology, I hope this provides a little help on your journey.</p>
<p>Is this real insight? Or just more marketing babble?  Well, Redstage been in the ecommerce business for 7 years now, and we&#8217;ve worked on over 150 Magento sites over the past 3 years.  So this list is a personal account of our experiences.  Let&#8217;s start with the feature set&#8230;</p>
<p><strong>#1) Out-of-the-box Features</strong></p>
<p>Of all the e-commerce systems that I&#8217;ve worked with, Magento really has the most impressive set of features right out of the box.  I was actually planning on spending a few paragraphs discussing them, but I ended up stumbling on Magento&#8217;s new features page: <a href="http://www.magentocommerce.com/product/features">http://www.magentocommerce.com/product/features</a>.  It&#8217;s a pretty comprehensive listing, so go check it out before moving on to #2.</p>
<p><strong>#2) Open Source</strong></p>
<p>OK this is an obvious one, but I felt like I couldn&#8217;t write a benefits list without including it.  The platform is not only free to download but you are free to build upon it for your specific business needs.</p>
<p><strong>#3) Extensions</strong></p>
<p>Magento Extensions and the Extension Community have really set the platform apart from the rest of the pack.  One of the main goals of the Magento core development team was to create the most extensible ecommerce system on the planet.  And they succeeded, in a big way.</p>
<p>It&#8217;s a little bit of a blessing and a curse, actually.  Because developing a Magento site is actually much harder than other platforms before it.  To properly develop any custom functionality for Magento, you must basically create an extension so you&#8217;re not touching any of Magento&#8217;s core.  It&#8217;s a whole lot more complicated than just creating a custom hack.  But with that extra initial investment, comes HUGE savings in the long run.</p>
<p>Back in the OSCommerce, Zen Cart, and CRE Loaded days, an ecommerce site was a big hack job of custom code and &#8220;addons&#8221; that were basically just instructions for additional hacks.  The more complex your site got, the more of a hack job it would become.  Random errors and stability problems were a frequent result.  Many times, complex additions would mean a full redevelopment of the whole site.</p>
<p>Magento, on the other hand, is properly architected to be able to extend its functionality in an elegant and stable way.  And it&#8217;s really a huge advantage for your business.  For instance, I wonder how much it cost Amazon to develop their Frequently Bought Together or Who Viewed This Also Viewed up-selling interfaces?  Well, with Magento, you can have either one of those for about 50 bucks as extensions, and about 3 minutes of installation.  Shameless plug&#8230; you can actually pick up both of those extensions at our extension store: http://store.redstage.com.</p>
<p>Also, I think it&#8217;s safe to say that Magento now has the largest and fastest growing community of developers of any ecommerce system.  Thanks to the community, Magento&#8217;s feature set is growing at the speed of light.  Perfect example: When Google +1 came out, I think it was less than 24 hours before a Magento extension came out to place +1 buttons on all of your product pages.</p>
<p><strong>#4) Admin Interface</strong></p>
<p>Magento really has the best admin interface of any that we&#8217;ve ever seen in an open source system that came before it.  It&#8217;s more of what you would expect from a hosted SaaS platform.  Hosted solutions aren&#8217;t usually appropriate for anything other than very small business, though, since they are almost impossible to customize to your needs.  So with Magento, you get the benefit of a much more customer friendly interface but the power of having your own flexible solution.</p>
<p>When I first started working with the platform, I was especially surprised by how complete the order and customer management sections were.  The promotions manager is also very cool, but I guess that&#8217;s more of a core feature than just the interface.  Oh, and category management is also great too.</p>
<p><strong>#5) Regular Updates</strong></p>
<p>For the incredible burst in popularity that Magento&#8217;s received over the past 3 years, I have to applaud the company for keeping up as well as they have.  I&#8217;m sure that they&#8217;ve gotten 10&#8217;s of thousands of bug reports and feature requests in that time.  With Magento, you can confidently expect a new release,  packed with bug fixes and probably a few new features, every few months.</p>
<p>Alright, I think that about sums it up.  I&#8217;m also putting together an article on the<a href="http://www.redstage.com/magento/blog/2011/09/26/limitations-of-magento-and-how-to-overcome-them/"> <em>limitations</em> of Magento</a>, that I&#8217;ll link to as soon as its complete.</p>
<h4>Related articles</h4>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.redstage.com/magento/blog/2011/09/26/limitations-of-magento-and-how-to-overcome-them/">Limitations of Magento</a> (redstage.com)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2011/09/19/benefits-of-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Design Showcases</title>
		<link>http://www.redstage.com/magento/blog/2011/02/24/magento-design-showcases/</link>
		<comments>http://www.redstage.com/magento/blog/2011/02/24/magento-design-showcases/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 20:10:22 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=518</guid>
		<description><![CDATA[Take a look at these design showcases.  Awesome magento designers out there.  Know any that aren&#8217;t listed here?  Leave a comment below!
Magentique.com
http://magentique.com/
ArsMagentoGallery.com
http://www.arsmagentogallery.com/
MagentoMix.com
http://magentomix.com/category/stores/
ShowMagento.com
http://www.showmagento.com/showcase
Magento Showcase Website
http://themes.magentocommerce.ca/
Related Blogs

Related Blogs on Magento Design Showcases

]]></description>
			<content:encoded><![CDATA[<p>Take a look at these design showcases.  Awesome <a href="http://www.redstage.com/portfolio">magento designers</a> out there.  Know any that aren&#8217;t listed here?  Leave a comment below!</p>
<p><strong>Magentique.com</strong></p>
<p><a href="http://magentique.com/">http://magentique.com/</a></p>
<p><strong>ArsMagentoGallery.com</strong></p>
<p><a href="http://www.arsmagentogallery.com/">http://www.arsmagentogallery.com/</a></p>
<p><strong>MagentoMix.com</strong></p>
<p><a href="http://magentomix.com/category/stores/">http://magentomix.com/category/stores/</a></p>
<p><strong>ShowMagento.com</strong><br />
<a href="http://www.showmagento.com/showcase">http://www.showmagento.com/showcase</a></p>
<p><strong>Magento Showcase Website</strong></p>
<p><a href="http://themes.magentocommerce.ca/">http://themes.magentocommerce.ca/</a><br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Magento Design Showcases</b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2011/02/24/magento-design-showcases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Need Start Preparing Your Ecommerce Store for the Holiday Season NOW!</title>
		<link>http://www.redstage.com/magento/blog/2010/07/26/why-you-need-start-preparing-your-ecommerce-store-for-the-holiday-season-now/</link>
		<comments>http://www.redstage.com/magento/blog/2010/07/26/why-you-need-start-preparing-your-ecommerce-store-for-the-holiday-season-now/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 16:08:56 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=507</guid>
		<description><![CDATA[You might think it&#39;s a bit preemptive to start planning for the Holidays now, but it&#39;s almost too late already.&#160; Think about it this way: if you want to make a bunch of changes to your e-commerce website such as an upgrade, a new design, or any new features you need a significant amount of [...]]]></description>
			<content:encoded><![CDATA[<p>You might think it&#39;s a bit preemptive to start planning for the Holidays now, but it&#39;s almost too late already.&nbsp; Think about it this way: if you want to make a bunch of changes to your e-commerce website such as an upgrade, a new design, or any new features you need a significant amount of time to get it done.&nbsp; You&#39;ll need to define the project, gather proposals from various service providers, go through contract negotiation, and then have the work completed.&nbsp; A fully custom design, implementation and customization can take a couple months, so don&#39;t delay any further and start thinking about the holiday season and how you&#39;re going to prepare for it.&nbsp; </p>
<p>Also you need to plan out your MARKETING! The last thing that you want to do is stay up all night on November, 23 trying to write email copy and change your AdWords ads to holiday specific text.&nbsp; Start planning now, and you&#39;ll definitely have a more profitable season with much less stress.&nbsp; </p>
<p>So that&#39;s the overview about why, but let&#39;s go over the direction as well as the specific things you can do to make your holiday season more successful.&nbsp; We&#39;ll go over checklists, specific ideas and tactics to make your store ready for the 2010 holidays. </p>
<p><strong>Design Changes</strong><br /> You might want to change some of the main site graphics to seasonal, relevant images.&nbsp; If you have pictures of people within the design, make sure they&#39;re wearing coats, and you can throw some snowflakes in the header to make it feel like winter. </p>
<p><strong>Sales</strong><br /> Of course you&#39;re going to have a holiday sale.&nbsp; But which works better, 10% off your order over $X or Free Shipping?&nbsp; Start testing now! Something as simple as the wording of a deal can effect your conversion rate drastically. </p>
<p><strong>Gift Wrapping</strong><br /> You can offer gift wrapping as an upsell during checkout.&nbsp; If you&#39;re going to offer this option though, it&#39;s important to plan ahead and get this process worked out within your current procedures. </p>
<p><strong>Delivery Schedules / Deadlines</strong><br /> You can create a sense of urgency if you put the proper messaging on your site.&nbsp; For instance, &quot;<em>Order before December 20th for Guaranteed Arrival before Christmas!</em>&quot; This short message, repeated throughout the website, could be the push that someone needs to get through the checkout.</p>
<p><strong>Updated Returns Policy</strong><br /> When it comes to gifts, one of the main concerns that people have when buying online is possibly having to return the item.&nbsp; They might be afraid that the clothing won&#39;t fit properly or the item will arrive defective.&nbsp; Make sure that your return policy is easy to find and easy to understand. </p>
<p><strong>Add Video to Product Descriptions</strong><br /> One of the main reasons that customers abandon product pages is because they didn&#39;t get a good enough &quot;look&quot; at the product.&nbsp; If you have a short video of someone reviewing the item or simply demonstrating it, it builds confidence with the potential customer and differentiates you from your competitors.&nbsp; Anything that you can do that will get someone to push &quot;Add To Cart&quot; is crucial.</p>
<p><strong>Beef Up Customer Support</strong><br /> Make sure that you have enough staff to take calls, answer questions, and train them to sell!&nbsp; You should have multiple ways for visitors to contact you online via toll-free number, email, chat, twitter or even fax.&nbsp; It can&#39;t hurt to have the pathways to contact you because if someone wants to call you, they are very close to purchasing.&nbsp; On the other hand, you also want to have support for current/past customers because that is what sparks people to talk about their experiences.&nbsp; Think about how Zappos.com because so popular from having incredible customer service.</p>
<p><strong>New Banner Ads</strong><br /> If you advertise with Banner Ads, you should start brainstorming some new designs.&nbsp; Also start thinking of new places to advertise, and new media buying strategies that can drive tons of traffic to your site.&nbsp; </p>
<p><strong>New Adwords&nbsp; (PPC) Keywords / Ads</strong><br /> Don&#39;t wait until the last minute to add new keywords into your campaigns that are seasonally specific.&nbsp; Also, try testing out new Ad Copy that has holiday style to it. Add in a coupon code, mention a shipping deadline or another offer.&nbsp; </p>
<p><strong>Gift Categories / Gift Guide</strong><br />Organized your items into gift categories by person or price (Great Gifts for Mom, Dad, etc&#8230;).  If you give visitors useful search options and filters, it lets them find what they want faster; speed is key during the holidays.</p>
<p><strong>Affiliate Relations</strong><br /> If you have an affiliate program, get them excited about promoting your products.&nbsp; Show them landing pages, new items and sales that they can promote before they start.&nbsp; This allows super-affiliates to get banners made, plan media buys, start new PPC campaigns and test them out before it&#39;s too late.&nbsp; </p>
<p><strong>New Products</strong><br /> Do some research and figure out what types of products in your industry are going to be the popular items of the season.&nbsp; If you&#39;re going to stock these items, remember there&#39;s significant work to do each time (ordering inventory, storage, photos, description, etc&#8230;).&nbsp; So start the research soon so you&#39;re prepared to launch them in the Fall.</p>
<p><strong>Shipping Deals</strong><br /> Shipping is the #1 type of sale that you can offer your visitors.&nbsp; Having free shipping makes the ordering process seem more realistic and it makes the price seem more feasible (since there&#39;s no addition involved).&nbsp; Another great tactic is to have Free Shipping on orders above $X.&nbsp; You&#39;ll get a higher average order and happier clients. </p>
<p><strong>Social Media</strong><br /> Start building your following now! Starting a Social Media campaign in November would be a waste of time; however if you have 5000 followers (on twitter for instance) by then you can turn it into a traffic generator, a communication/ support platform and more.&nbsp; Also remember, 200 happy, engaged followers is much better than 10,000 random people. Get your following organically and you&#39;ll be much better off.</p>
<p><strong>Cart Abandonment Recapture</strong><br /> You can automate the recapturing of an abandoned cart by sending an email to the user with the previous cart contents.&nbsp; </p>
<p><strong>Gift Receipts &amp; Gift Messages</strong><br /> Have checkout options to add a note or gift receipt to the order.&nbsp; This way, there&#39;s proof of purchase but the price isn&#39;t in the box.&nbsp; It works especially well when offering gifts that are sent directly to the recipient. </p>
<p><strong>Backup Server / Increased Bandwidth</strong><br /> If you&#39;re doing media buys and adding a huge budget to your AdWords account you might want to upgrade your web server to make sure that your site doesn&#39;t go down during periods of high traffic. </p>
<p>These are just a few of the things you can do to prepare your site for the holidays and increase your conversion rate. If you want a full report with over 50 site optimizations that you can use any time, holidays or not, opt in below and we&#39;ll send it right over! </p>
<p><!-- AWeber Web Form Generator 3.0 --><br />
<style type="text/css"> #af-form-1416924912 .af-body .af-textWrap{width:98%;display:block;float:none;} #af-form-1416924912 .af-body .privacyPolicy{color:#000000;font-size:11px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-body a{color:#880303;text-decoration:underline;font-style:normal;font-weight:normal;} #af-form-1416924912 .af-body input.text, #af-form-1416924912 .af-body textarea{background-color:#FFFFFF;border-color:#919191;border-width:1px;border-style:solid;color:#000000;text-decoration:none;font-style:normal;font-weight:normal;font-size:12px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-body input.text:focus, #af-form-1416924912 .af-body textarea:focus{background-color:#FFFAD6;border-color:#030303;border-width:1px;border-style:solid;} #af-form-1416924912 .af-body label.previewLabel{display:block;float:none;text-align:left;width:auto;color:#000000;text-decoration:none;font-style:normal;font-weight:normal;font-size:12px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-body{padding-bottom:15px;padding-top:5px;background-repeat:no-repeat;background-position:inherit;background-image:none;color:#000000;font-size:11px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-footer{padding-bottom:20px;padding-top:20px;padding-right:75px;padding-left:10px;background-color:transparent;background-repeat:no-repeat;background-position:top right;background-image:url("http://forms.aweber.com/images/forms/pointer/alert/footer.png");border-width:1px;border-bottom-style:none;border-left-style:none;border-right-style:none;border-top-style:none;color:#880303;font-size:11px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-header{padding-bottom:1px;padding-top:1px;padding-right:10px;padding-left:75px;background-color:transparent;background-repeat:no-repeat;background-position:inherit;background-image:url("http://forms.aweber.com/images/forms/pointer/alert/header.png");border-width:1px;border-bottom-style:none;border-left-style:none;border-right-style:none;border-top-style:none;color:#880303;font-size:16px;font-family:Verdana, sans-serif;} #af-form-1416924912 .af-quirksMode .bodyText{padding-top:2px;padding-bottom:2px;} #af-form-1416924912 .af-quirksMode{padding-right:10px;padding-left:10px;} #af-form-1416924912 .af-standards .af-element{padding-right:10px;padding-left:10px;} #af-form-1416924912 .bodyText p{margin:1em 0;} #af-form-1416924912 .buttonContainer input.submit{background-color:#c20606;background-image:url("http://forms.aweber.com/images/forms/pointer/alert/button.png");color:#FFFFFF;text-decoration:none;font-style:normal;font-weight:normal;font-size:14px;font-family:Verdana, sans-serif;} #af-form-1416924912 .buttonContainer input.submit{width:auto;} #af-form-1416924912 .buttonContainer{text-align:center;} #af-form-1416924912 body,#af-form-1416924912 dl,#af-form-1416924912 dt,#af-form-1416924912 dd,#af-form-1416924912 h1,#af-form-1416924912 h2,#af-form-1416924912 h3,#af-form-1416924912 h4,#af-form-1416924912 h5,#af-form-1416924912 h6,#af-form-1416924912 pre,#af-form-1416924912 code,#af-form-1416924912 fieldset,#af-form-1416924912 legend,#af-form-1416924912 blockquote,#af-form-1416924912 th,#af-form-1416924912 td{float:none;color:inherit;position:static;margin:0;padding:0;} #af-form-1416924912 button,#af-form-1416924912 input,#af-form-1416924912 submit,#af-form-1416924912 textarea,#af-form-1416924912 select,#af-form-1416924912 label,#af-form-1416924912 optgroup,#af-form-1416924912 option{float:none;position:static;margin:0;} #af-form-1416924912 div{margin:0;} #af-form-1416924912 fieldset{border:0;} #af-form-1416924912 form,#af-form-1416924912 textarea,.af-form-wrapper,.af-form-close-button,#af-form-1416924912 img{float:none;color:inherit;position:static;background-color:none;border:none;margin:0;padding:0;} #af-form-1416924912 input,#af-form-1416924912 button,#af-form-1416924912 textarea,#af-form-1416924912 select{font-size:100%;} #af-form-1416924912 p{color:inherit;} #af-form-1416924912 select,#af-form-1416924912 label,#af-form-1416924912 optgroup,#af-form-1416924912 option{padding:0;} #af-form-1416924912 table{border-collapse:collapse;border-spacing:0;} #af-form-1416924912 ul,#af-form-1416924912 ol{list-style-image:none;list-style-position:outside;list-style-type:disc;padding-left:40px;} #af-form-1416924912,#af-form-1416924912 .quirksMode{width:225px;} #af-form-1416924912.af-quirksMode{overflow-x:hidden;} #af-form-1416924912{background-color:#FFFFFF;border-color:transparent;border-width:1px;border-style:solid;} #af-form-1416924912{overflow:hidden;} .af-body .af-textWrap{text-align:left;} .af-body input.image{border:none!important;} .af-body input.submit,.af-body input.image,.af-form .af-element input.button{float:none!important;} .af-body input.text{width:100%;float:none;padding:2px!important;} .af-body.af-standards input.submit{padding:4px 12px;} .af-clear{clear:both;} .af-element label{text-align:left;display:block;float:left;} .af-element{padding:5px 0;} .af-form-wrapper{text-indent:0;} .af-form{text-align:left;margin:auto;} .af-header,.af-footer{margin-bottom:0;margin-top:0;padding:10px;} .af-quirksMode .af-element{padding-left:0!important;padding-right:0!important;} .lbl-right .af-element label{text-align:right;} body { } </style>
<form method="post" class="af-form-wrapper" action="http://www.aweber.com/scripts/addlead.pl" >
<div style="display: none;">
<input type="hidden" name="meta_web_form_id" value="1416924912" />
<input type="hidden" name="meta_split_id" value="" />
<input type="hidden" name="listname" value="magentonews" />
<input type="hidden" name="redirect" value="http://www.aweber.com/thankyou-coi.htm?m=video" id="redirect_bf5a2ab4c1bd25a3e46be6133e3f9d7f" />
<input type="hidden" name="meta_adtracking" value="Blog_Post_Form" />
<input type="hidden" name="meta_message" value="1" />
<input type="hidden" name="meta_required" value="name,email" />
<input type="hidden" name="meta_tooltip" value="" /> </div>
<div id="af-form-1416924912" class="af-form">
<div id="af-header-1416924912" class="af-header">
<div class="bodyText">
<p style="width: 154px">Send me the <strong>sales optimization</strong> eBook!</p>
</div>
</div>
<div id="af-body-1416924912" class="af-body af-standards">
<div class="af-element"> <label class="previewLabel" for="awf_field-8646887">First Name: </label>
<div class="af-textWrap">
<input id="awf_field-8646887" type="text" name="name" class="text" value="" tabindex="500" /> </div>
<div class="af-clear"></div>
</div>
<div class="af-element"> <label class="previewLabel" for="awf_field-8646888">Email: </label>
<div class="af-textWrap">
<input class="text" id="awf_field-8646888" type="text" name="email" value="" tabindex="501" /> </div>
<div class="af-clear"></div>
</p></div>
<div class="af-element buttonContainer">
<input name="submit" id="af-submit-image-1416924912" type="image" class="image" style="background: none;" alt="Submit Form" src="http://www.aweber.com/images/forms/pointer/alert/button.png" tabindex="502" />
<div class="af-clear"></div>
</p></div>
<div class="af-element privacyPolicy" style="text-align: center">
<p><a title="Privacy Policy" href="http://www.aweber.com/permission.htm" target="_blank">We respect your email privacy</a></p>
<div class="af-clear"></div>
</p></div>
</p></div>
<div id="af-footer-1416924912" class="af-footer">
<div class="bodyText">
<p>&nbsp;</p>
</div>
</div></div>
<div style="display: none;"><img src="http://forms.aweber.com/form/displays.htm?id=jCyMbJxMLJyMTA==" alt="" /></div>
</p></form>
<p> <script type="text/javascript"> <!-- (function() { var IE = /*@cc_on!@*/false; if (!IE) { return; } if (document.compatMode &#038;&#038; document.compatMode == 'BackCompat') { if (document.getElementById("af-form-1416924912")) { document.getElementById("af-form-1416924912").className = 'af-form af-quirksMode'; } if (document.getElementById("af-body-1416924912")) { document.getElementById("af-body-1416924912").className = "af-body inline af-quirksMode"; } if (document.getElementById("af-header-1416924912")) { document.getElementById("af-header-1416924912").className = "af-header af-quirksMode"; } if (document.getElementById("af-footer-1416924912")) { document.getElementById("af-footer-1416924912").className = "af-footer af-quirksMode"; } } })(); --> </script> </p>
<p><!-- /AWeber Web Form Generator 3.0 --> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/07/26/why-you-need-start-preparing-your-ecommerce-store-for-the-holiday-season-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why Does Redstage have Magento Support Retainers?</title>
		<link>http://www.redstage.com/magento/blog/2010/07/13/why-does-redstage-have-magento-support-retainers/</link>
		<comments>http://www.redstage.com/magento/blog/2010/07/13/why-does-redstage-have-magento-support-retainers/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 19:47:57 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=498</guid>
		<description><![CDATA[We often get asked why we use a retainer based payment system for our Magento Support services.  First off, let me catch you up on what I mean by &#8220;Retainer Based Support&#8221;.  Our Magento support service works similarly to the way an attorney retainer works.  Basically, if you need ongoing assistance with your Magento site, [...]]]></description>
			<content:encoded><![CDATA[<p>We often get asked why we use a retainer based payment system for our <a href="http://www.redstage.com/magento-support">Magento Support</a> services.  First off, let me catch you up on what I mean by &#8220;Retainer Based Support&#8221;.  Our Magento support service works similarly to the way an attorney retainer works.  Basically, if you need ongoing assistance with your Magento site, the retainer is a pre-payment for a number of hours.  These hours can be applied to many different tasks.  Here&#8217;s some of the things we&#8217;ve done for retainer clients in the past:</p>
<ul>
<li>Magento Upgrades</li>
<li>Plugin installation &amp; Configuration</li>
<li>Bug fixes</li>
<li>Template / Theme Tweaks</li>
<li>Custom features or custom plugins and</li>
<li>Switching web hosts</li>
</ul>
<p>We don&#8217;t limit the number of issues or fixes you can submit, it&#8217;s all based on how long it takes to fix everything.</p>
<p><strong>Luckily, we&#8217;re (<em>really</em>) good at this. </strong></p>
<p>If you ever paid for a legal retainer, it&#8217;s almost exactly the same. The lawyer will deduct the hourly fee from the pre-payment whenever you need them to look over a contract or advise in any legal situation.  Redstage Magento support works the same way.  If you need help with any aspect of your Magento store, you log a ticket and we get to work.</p>
<p>Ok, so back to the point.  <em>Why a retainer based system? </em></p>
<p>Deducting hourly from a retainer allows us to provide the highest level of service to our support customers.  First, <strong>the retainer doesn&#8217;t expire</strong>.  You can use 2 hours one month, take one off with no issues or tickets, and then use 5 hours the next month.  It let&#8217;s us provide a level of safety and security to the a Magento user because we&#8217;re there when you need us, just by logging a ticket.  You can have 100 issues, and it doesn&#8217;t matter since it&#8217;s all based on the time it takes to complete the tasks.  If it&#8217;s easy for us, it&#8217;s cheap for you.</p>
<p>We time the retainer work to the second, so the client gets the most for their money.</p>
<p>I apologize if I sound sales-y, but as a marketer, Magento support is a fun sale&#8230; Magento users come to us all the time after having bad experiences with developers who weren&#8217;t ready for the complexity of the Magento platform and we need to step in and help out.  It took us a couple years to become Magento masters but we&#8217;re one of the best around, so it&#8217;s fun to talk about.  Our development team likes working with Magento!  If you&#8217;ve ever searched around on twitter for Magento, the average developer is frustrated but we&#8217;ve gotten over the learning curve and know the system inside and out.</p>
<p>Don&#8217;t just take my word for it; we have clients who tell us things like this:</p>
<blockquote><p><em>&#8220;&#8221;THANK YOU!!! We all finally feel  confident that we have found the right partner for our new business.<strong>&#8220;</strong></em></p>
<p><strong>-Sharon, Founder, Charleston  Naturally</strong></p></blockquote>
<p>That gives us a warm fuzzy feeling&#8230; and it proves that the retainer system works!</p>
<p>Now, I have to ask&#8230; If you need anything Magento related, <strong>call 1-888-335-2747 </strong>and we&#8217;ll set you up w/ a retainer, or a full project if you&#8217;re just starting out (full design &amp; development).</p>
<p>I hope you understand a bit more about what we&#8217;re all about and if you have any questions, leave a comment below!</p>
<p>Thanks!<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Why Does Redstage have Magento Support Retainers?</b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/07/13/why-does-redstage-have-magento-support-retainers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Top Magento Twitter Accounts</title>
		<link>http://www.redstage.com/magento/blog/2010/06/22/top-magento-twitter-accounts/</link>
		<comments>http://www.redstage.com/magento/blog/2010/06/22/top-magento-twitter-accounts/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 16:21:14 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=488</guid>
		<description><![CDATA[When you first dive into Twitter, it can be daunting to say the least. It&#39;s tough to figure out where to begin, and it really doesn&#39;t do much until you
configure everything (by following, being followed and interacting.). Here&#8217;s a list we put together of some of the top Magento Authorities on Twitter, so you can [...]]]></description>
			<content:encoded><![CDATA[<p>When you first dive into Twitter, it can be daunting to say the least. It&#39;s tough to figure out where to begin, and it really doesn&#39;t do much until you<br />
configure everything (by following, being followed and interacting.). Here&#8217;s a list we put together of some of the top Magento Authorities on Twitter, so you can stay in touch with the community and know all the news about the system. </p>
<p>Also, you can follow this list here <a href="http://twitter.com/RedstageMagento/magento-authority">http://twitter.com/RedstageMagento/magento-authority</a>! </p>
<p>If you have any others to add to the list, leave them in the comments below!</p>
<table border="0" cellspacing="15" cellpadding="0">
<td><a hreflang="en" href="http://twitter.com/royrubin05"><br />
		<img style="vertical-align: middle;" src="http://a3.twimg.com/profile_images/807675867/image_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="royrubin05" hreflang="en" href="http://twitter.com/royrubin05"><br />
			royrubin05</a></span> <span>Roy Rubin </span><br />
		</address>
</td>
<tr id="user_16853955">
<td><a hreflang="en" href="http://twitter.com/inchoo"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/1001510138/1inchoo_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="inchoo" hreflang="en" href="http://twitter.com/inchoo"><br />
			inchoo</a></span> <span>Magento Developers | Osijek, Croatia </span><br />
		</address>
</td>
</tr>
<tr id="user_57413905">
<td><a hreflang="en" href="http://twitter.com/YoavMagento"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/565651218/yoav_twitter_bg_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="YoavMagento" hreflang="en" href="http://twitter.com/YoavMagento"><br />
			YoavMagento</a></span> <span>Yoav Kutner Magento </span><br />
		</address>
</td>
</tr>
<tr id="user_55851287">
<td><a hreflang="en" href="http://twitter.com/magento_connect"><br />
		<img style="vertical-align: middle;" src="http://a3.twimg.com/profile_images/308543363/magento-100x100_bigger_bigger_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="magento_connect" hreflang="en" href="http://twitter.com/magento_connect"><br />
			magento_connect</a></span> <span>Magento Connect </span><br />
		</address>
</td>
</tr>
<tr id="user_16871012">
</tr>
<tr id="user_95295812">
<td><a hreflang="en" href="http://twitter.com/magentofeeds"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/563833442/2974881282_b7424ebd99_m_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="magentofeeds" hreflang="en" href="http://twitter.com/magentofeeds"><br />
			magentofeeds</a></span> <span>MagentoFeeds </span><br />
		</address>
</td>
</tr>
<tr id="user_81120822">
<td><a hreflang="en" href="http://twitter.com/magentopodcast"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/559779636/logo-twitter-magento-podcast_normal.png" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="magentopodcast" hreflang="en" href="http://twitter.com/magentopodcast"><br />
			magentopodcast</a></span> <span>MG-Podcast-Team | Aachen, Bayreuth<br />
			</span><br />
		</address>
</td>
</tr>
<tr id="user_40501221">
<td><a hreflang="en" href="http://twitter.com/hashMagento"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/214733844/magento-100x100_bigger_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="hashMagento" hreflang="en" href="http://twitter.com/hashMagento"><br />
			hashMagento</a></span> <span>#magento <strong>Following</strong></span><br />
		</address>
</td>
</tr>
<tr id="user_24464520">
<td><a hreflang="en" href="http://twitter.com/ask_magento"><br />
		<img style="vertical-align: middle;" src="http://a3.twimg.com/profile_images/107533895/ask_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<del datetime="2010-06-23T14:19:48+00:00"><a title="ask_magento" hreflang="en" href="http://twitter.com/ask_magento"><br />
			ask_magento</a></del><span><span style="color:red;"> Reported to be inactive. Follow with Caution! Thanks Jeff!</span><br />
		</address>
</td>
</tr>
<tr id="user_22954706">
<td><a hreflang="en" href="http://twitter.com/magento_uk"><br />
		<img style="vertical-align: middle;" src="http://a1.twimg.com/profile_images/89064096/Picture-7_normal.jpg" border="0" alt="" width="48" height="48" /></a></td>
<td>
<address>
			<span><br />
			<a title="magento_uk" hreflang="en" href="http://twitter.com/magento_uk"><br />
			magento_uk</a></span> <span>Magento UK | London, UK </span><br />
		</address>
</td>
</tr>
</table>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>ecommerce</b></li>
<li><a href="http://kylelacy.com/5-reasons-why-retailers-should-add-ecommerce-to-facebook/">5 Reasons Why Retailers Should Add <b>Ecommerce</b> to Facebook | Kyle <b>&#8230;</b></a></li>
</ul>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Magento</b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/06/22/top-magento-twitter-accounts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Magento Mobile Demo</title>
		<link>http://www.redstage.com/magento/blog/2010/06/01/magento-mobile-demo/</link>
		<comments>http://www.redstage.com/magento/blog/2010/06/01/magento-mobile-demo/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 15:50:15 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=483</guid>
		<description><![CDATA[Magento Mobile looks amazing!  Take a look at the demo below. 
The real question is, will people impulse-buy products on their phones?  Having a great interface for mobile e-commerce is awesome but will smartphone users buy clothing or books on their phone, rather than wait until they get to work or home and [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.magentocommerce.com/images/uploads/magento_mobile_logo.png" class="alignleft" width="283" height="62" />Magento Mobile looks amazing!  Take a look at the demo below. </p>
<p>The real question is, will people impulse-buy products on their phones?  Having a great interface for mobile e-commerce is awesome but will smartphone users buy clothing or books on their phone, rather than wait until they get to work or home and use a regular computer?  </p>
<p>Maybe the real opportunity is to sell other types of products via mobile or have additional incentives to use the mobile site instead of the regular site.  </p>
<p><strong>What do you think?</strong>  How will e-commerce website utilize this technology? </p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Iz4T8lLzzc8&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Iz4T8lLzzc8&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Leave a comment below!<br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Magento Mobile Demo</b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/06/01/magento-mobile-demo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Magento Professional Edition</title>
		<link>http://www.redstage.com/magento/blog/2010/05/25/magento-professional-edition/</link>
		<comments>http://www.redstage.com/magento/blog/2010/05/25/magento-professional-edition/#comments</comments>
		<pubDate>Tue, 25 May 2010 19:21:41 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=465</guid>
		<description><![CDATA[Recently, Magento released a new version of their powerful e-commerce system called Magento Professional.  This version has few extra features including, Gift Certificates/Cards (Physical and Virtual), Customer Store Credits, Strong Data Encryption (including PA-DSS compliance), and A Reward Points System.  They basically added a ton of marketing muscle to the already-powerful system along [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, Magento released a new version of their powerful e-commerce system called <strong>Magento Professional</strong>.  This version has few extra features including, Gift Certificates/Cards (Physical and Virtual), Customer Store Credits, Strong Data Encryption (including PA-DSS compliance), and A Reward Points System.  They basically added a ton of marketing muscle to the already-powerful system along with PCI compliance.  </p>
<p><strong>Their description of the new offering is:</strong></p>
<blockquote><p>&#8220;Magento Professional is an eCommerce platform for businesses who want to enter the world of eCommerce without the complications and long implementation cycle associated with developing a solution with Magento Community open source code. Designed for businesses who are working with a qualified Magento Solution Partner, Magento Professional has been thoroughly tested and warranted, and includes revenue-generating features not found in Magento Community.</p>
<p>Magento Solution Partners are able to produce Web stores that meet their clients’ unique business needs, with a clear and easy upgrade path to Magento Enterprise.&#8221;</p></blockquote>
<p>And the cost for these features: <strong>$2,995.</strong></p>
<h3>Gift Certificates/Cards (Physical and Virtual)</h3>
<p>Customers can buy physical or virtual gift certificates to your website.  This is a huge feature for the holiday season, as gift cards have become very popular in the past.  I know from experience! In the past 3 years I&#8217;ve gotten 3 Virtual Amazon Gift Certificates. It&#8217;s easy for a customer to use your website to buy a gift certificate and give it to a family member or friend for their Birthday or other Holiday.  </p>
<h3>Customer Store Credits</h3>
<p>Store credit is great to manage product returns without actually having to process the monetary refund.  It saves time during your back office processes as well as keeps your customer&#8217;s money in your account.  The customer can use that credit at any time to buy something else on your site.</p>
<p>Here&#8217;s a video showing the Gift Cards and Store Credits Feature:</p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/e2lbHkRN0vg&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/e2lbHkRN0vg&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<h3>Reward Points System</h3>
<p>A rewards system is a great way to entice repeat customers.  It&#8217;s a known fact in marketing that it&#8217;s up to 10x easier (and less expensive) to get a customer to buy a 2nd time than it is to get them to buy the first time.  A direct rewards system can make repeat customers even more likely to come back.  </p>
<p>(you can get tons of tips like this in the quick guide in the top of the right column! Just opt in to the Newsletter!)</p>
<h3>Strong Data Encryption</h3>
<p>The PA-DSS requirement is coming up on July 1!</p>
<p>Read more about the Magento Professional Edition <a href="http://www.magentocommerce.com/images/uploads/Magento_Professional_Edition.pdf">here</a>.</p>
<p>If you want to know more about Magento Professional, please call us at 1-888-335-2747! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/05/25/magento-professional-edition/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cool Magento Video Featuring Tim Shulz, Sr. Product Manager @ Magento</title>
		<link>http://www.redstage.com/magento/blog/2010/05/05/cool-magento-video-featuring-tim-shulz-sr-product-manager-magento/</link>
		<comments>http://www.redstage.com/magento/blog/2010/05/05/cool-magento-video-featuring-tim-shulz-sr-product-manager-magento/#comments</comments>
		<pubDate>Thu, 06 May 2010 00:24:58 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=462</guid>
		<description><![CDATA[Tim Shulz, Sr. Product Manager at Magento talks about Magento Mobile and it&#8217;s incredible potential.  &#8220;The Future of M&#8221; or thefutureofm.com is where they post information about the growing platform and insights into mobile.  
Anyone else pretty excited about all of this?!  It&#8217;s going to be awesome to see the mobile platform [...]]]></description>
			<content:encoded><![CDATA[<p>Tim Shulz, Sr. Product Manager at Magento talks about Magento Mobile and it&#8217;s incredible potential.  &#8220;The Future of M&#8221; or thefutureofm.com is where they post information about the growing platform and insights into mobile.  </p>
<p>Anyone else pretty excited about all of this?!  It&#8217;s going to be awesome to see the mobile platform and all of the possibilities!   Looking forward to it, Magento! </p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/Tr1Lkon9pCs&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Tr1Lkon9pCs&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>Cool Magento Video Featuring Tim Shulz, Sr. Product Manager @ Magento</b></li>
<li><a href="http://guacamolemedia.com">Click For More</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/05/05/cool-magento-video-featuring-tim-shulz-sr-product-manager-magento/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>13 Featured Magento Themes Reviewed and Links</title>
		<link>http://www.redstage.com/magento/blog/2010/04/28/13-featured-magento-themes-reviewed-and-links/</link>
		<comments>http://www.redstage.com/magento/blog/2010/04/28/13-featured-magento-themes-reviewed-and-links/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 19:51:52 +0000</pubDate>
		<dc:creator>Anthony Latona</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.redstage.com/magento/blog/?p=405</guid>
		<description><![CDATA[A couple weeks ago, we had a post about Free Magento Themes which was a big hit.  There are some amazing Magento Themes out there at no cost, but there are thousands of beautiful themes that you can grab for a low cost as well.  
Using a template for your e-commerce site can [...]]]></description>
			<content:encoded><![CDATA[<p>A couple weeks ago, we had a post about <a href="http://www.redstage.com/magento/blog/2010/03/09/free-magento-themes/">Free Magento Themes</a> which was a big hit.  There are some amazing Magento Themes out there at no cost, but there are thousands of beautiful themes that you can grab for a low cost as well.  </p>
<p>Using a template for your e-commerce site can work, it won&#8217;t work as well as if you have a <a href="http://www.redstage.com/magento">Custom Magento E-Commerce</a> Brand design.  However, when you&#8217;re starting out you can use a modified template to get used to Magento and get started with your e-commerce business.  </p>
<p>We went through and found a bunch of sites that have TONS of Magento themes.  Here are some of our favorite Theme sites and top template from each. </p>
<h3>http://www.silverthemes.com</h3>
<p>Silver Themes has some extremely clean and crisp designs.  Their themes run as low as $125.00 and up to $150.00, and based on certain features it can run higher.  The link to their demo store to preview the themes doesn&#8217;t seem to be working though.  It links to a fresh install of Magento.</p>
<p>Aside from that, these templates are very nice.  One of my favorites is the Megastore Theme. </p>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/megastore.jpg" alt="megastore" title="megastore" width="300" height="229" class="alignleft size-full wp-image-407" style="padding-left:0px;padding-top:0px;" /> This theme has a very simple, minimalist design that would be easy to adapt to most businesses that are selling a variety of products.  </p>
<p>Here&#8217;s a link to the <a href="http://www.silverthemes.com/magento-themes-top-3-featured/magento-megastore-theme.html">Megastore Theme</a> page. </p>
<p>Most of the Silverthemes Themes are layed out the same, with top &#038; left navigation, 3 main feature banners in the center and a basic layout.  </p>
<div style="clear:both;float:none;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/sigyn1.png" alt="sigyn1" title="sigyn1" width="300" height="229" class="alignleft size-full wp-image-414" style="padding-left:0px;padding-top:0px;" />There is one that stands out called Sigyn Pro which is a much darker and grungy theme. Very cool.</p>
<p>Here&#8217;s a link to the <a href="http://www.silverthemes.com/premium-magento-themes/sigyn-pro-magento-theme.html">Sigyn Theme</a>.</p>
<p>Take a look a their other themes, at <a href="http://www.silverthemes.com/">Silverthemes.com</a>.</p>
<div style="clear:both;float:none;"></div>
<div style="background-color:silver;height:2px;margin-top:10px;margin-bottom:20px;" ></div>
<h3>http://www.templatemonster.com</h3>
<p><a href="http://www.templatemonster.com/magento-themes.php">Link to Magento Themes Page</a></p>
<p>TemplateMonster has the largest selection of themes we found.  They have 150 different Magento Templates ranging from $160 to $250 for the regular price, or $1100 to $7500 for the unique price.  The unique price, when purchased, pulls the template off the site so it therefore becomes &#8220;unique&#8221;.  </p>
<p>TemplateMonster&#8217;s themes are all fairly different.  They cover dozens of industries and product types, color schemes and layouts.  A bunch of them rely on high quality stock photography to really come alive, which makes them a bit less &#8220;out of the box&#8221; than a simpler theme.  Basically, you&#8217;ll need to customize those graphics to fit your business before using the theme for your store.  Overall, with the selection they have, you should find something to start with.  I&#8217;ll show you a few examples below.</p>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/tools-300x253.jpg" alt="tools" title="tools" width="300" height="253" class="alignleft size-medium wp-image-420" style="padding-left:0px;padding-top:0px;" /> I like the look of this theme.  The vibrant colors and the real &#8220;Home Depot&#8221; feel make it work for a store selling power tools.  However, when you&#8217;re looking through and choosing a template, remember that anything that is a graphic and has anything specific in it will have to be redesigned.  In this template, the &#8220;Free Shipping&#8221; graphic and 4 featured products will have to change if you don&#8217;t offer free shipping at that price level or have those products at those prices as well.</p>
<p>Take a look at the <a href="http://www.templatemonster.com/magento-themes/24591.html">Tool Store page</a>, and the <a href="http://cms.template-help.com/magento_24591/">Tool Store Demo</a>.  This template as of now goes for: Regular Price: $180 / Buyout Price: $5400</p>
<div style="clear:both;float:none;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/furniture-284x300.jpg" alt="furniture" title="furniture" width="284" height="300" class="alignleft size-medium wp-image-431" /> This furniture store template has a great color scheme and layout.  I particularly like the effects and details used in the graphics.  Again, be aware that these images are just examples and will most likely have to be customized to suit your products and offers.  These are more generic than the Tool Store theme above but unless you&#8217;re selling very similar items, this is another example of a template that looks good, but is not &#8220;out-of-the-box&#8221;.   It&#8217;s a great start though if you have a medium to high end furniture store.</p>
<p>Check out the <a href="http://www.templatemonster.com/magento-themes/25759.html">Furniture Store</a> Page, and <a href="http://cms.template-help.com/magento_25759/">Live Demo</a>.  This theme now goes for Regular Price: $180 / Buyout Price: $5400  </p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/mensstore-300x242.jpg" alt="mensstore" title="mensstore" width="300" height="242" class="alignleft size-medium wp-image-434" /> This theme for a Men&#8217;s Fashion store is very slick and expensive looking. A lot of the look of this template relies on the product photos, so make sure you&#8217;re ready for that.  However, the overall look and feel, and colors are a great start for an upscale online clothing store.  </p>
<p>Take a look at the <a href="http://www.templatemonster.com/magento-themes/26827.html">Men&#8217;s Store page</a>, and <a href="http://cms.template-help.com/magento_26827/sportcoats.html">Live Demo</a>.  This theme now goes for: Regular Price: $180 / Buyout Price: $2800</p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/womensstore-255x300.jpg" alt="womensstore" title="womensstore" width="255" height="300" class="alignleft size-medium wp-image-436" /> The &#8220;Woman&#8217;s Store&#8221; theme looks great, with bright colors and a more generic design.  Since TemplateMonster gives you the Photoshop files you can easily customize these graphics which are mostly text to suit your needs. </p>
<p>Check out the <a href="http://www.templatemonster.com/magento-themes/22912.html">Women&#8217;s Store</a> page and <a href="http://cms.template-help.com/magento_22912/">Live Demo</a>.  This theme goes for: Regular Price: $250 / Buyout Price: $7500</p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/sneakers-300x188.jpg" alt="sneakers" title="sneakers" width="300" height="188" class="alignleft size-medium wp-image-440" /> I really like this theme!  Regardless of what you&#8217;re selling, this is a cool design that uses excellent colors and transparency<br />
to display your products in a really high quality way.  The catalog page is laid out very nicely. One critique&#8230; change the product page font color to something a bit lighter and more legible.  Otherwise, great theme! </p>
<p>Check out the <a href="http://www.templatemonster.com/magento-themes/26112.html">Sneakers Theme</a> page, and <a href="http://cms.template-help.com/magento_26112/">Live Demo</a>.  This theme goes for: Regular Price: $250 / Buyout Price: $3200</p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/tshirts-300x215.jpg" alt="tshirts" title="tshirts" width="300" height="215" class="alignleft size-medium wp-image-443" />  Last one from TemplateMonster.  I like the design effects on the background and right column graphics on this theme.  I hope that TM gives you the fonts you need to change those graphics since they look great but will need an update.  This is a very fun and inviting theme! </p>
<p>Take a look at the <a href="http://www.templatemonster.com/magento-themes/26145.html">T-Shirts Theme</a> page and <a href="http://cms.template-help.com/magento_26145/">Live Demo</a>.  This theme goes for: Regular Price: $180 / Buyout Price: $2650</p>
<div style="clear:both;float:none;"></div>
<div style="background-color:silver;height:2px;margin-top:10px;margin-bottom:20px;" ></div>
<h3>http://www.hellothemes.com</h3>
<p><a href="http://www.hellothemes.com/themes/">HelloThemes Magento Themes</a></p>
<p>HelloThemes has a great portfolio of Magento themes.  Most of them look like they are for electronics stores but a couple are for clothing/fashion sites.  Here&#8217;s a snapshot of their portfolio.  You can even get all of their themes for $300, which is a good deal.  Check it out. </p>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/helloJ.png" alt="helloJ" title="helloJ" width="207" height="147" class="alignleft size-full wp-image-445" /> Nice, Clean Design.  Some social media elements on the homepage make it a bit more modern.  The content slider at the top will need to be filled with product / sale features.  Overall, the theme is nice, and generic enough to display nearly any product line. </p>
<p><a href="http://www.hellothemes.com/demo/?theme=hellojynxx">Demo</a>  |   <a href="http://www.hellothemes.com/themes/hellojynxx/">Info</a></p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/helloMix.png" alt="helloMix" title="helloMix" width="207" height="155" class="alignleft size-full wp-image-446" /> Dark theme, very cool.  The effect on the background graphic brings it all together.  Also, using CSS text-shadow on the right column filter titles as well as the category title adds a cool look to the catalog page. </p>
<p><a href="http://www.hellothemes.com/demo/?theme=hellomix">Demo</a>  |  <a href="http://www.hellothemes.com/themes/hellomix/">Info</a></p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/helloGlam.png" alt="helloGlam" title="helloGlam" width="207" height="155" class="alignleft size-full wp-image-447" /> The &#8220;HelloGlam&#8221; template looks like a t-shirt store from the thumbnail but seems to have been repurposed to be a lingerie store (in the demo).  In reality, it would work for any woman&#8217;s apparel store as the design is clean and very girly. </p>
<p><a href="http://www.hellothemes.com/demo/?theme=helloglam">Demo</a>  |  <a href="http://www.hellothemes.com/themes/helloglam/">Info</a></p>
<div style="clear:both;float:none"></div>
<div style="background-color:silver;height:2px;margin-top:10px;margin-bottom:20px;" ></div>
<h3>ThemeForest.net</h3>
<p><a href="http://themeforest.net/category/magento">Link to ThemeForest Magento Themes</a></p>
<p>ThemeForest has 46 Magento Templates that are in teh $60 &#8211; $10 range.  Take a look at the different styles and layouts they offer on their site.  Since it seems that there are submissions from various template designers and developers the themes vary quite a bit.  </p>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/yarn1-300x152.png" alt="yarn1" title="yarn1" width="300" height="152" class="alignleft size-medium wp-image-453" />  The yarn theme has some cool graphic effects in the header and offers a great way to display artistic, organic or &#8220;green&#8221; items.  </p>
<p>Take a look at the <a href="http://themeforest.net/item/organic-magento-theme/full_screen_preview/97859">demo </a>or get more <a href="http://themeforest.net/item/organic-magento-theme/97859">info </a>here. </p>
<div style="clear:both;float:none;height:20px;"></div>
<p><img src="http://www.redstage.com/magento/blog/wp-content/uploads/2010/04/aniqua-300x152.jpg" alt="aniqua" title="aniqua" width="300" height="152" class="alignleft size-medium wp-image-454" /> The Antiqua theme is another one that has a nice graphic feel to it, epecially the lined paper drop down menus and neat textures throughout the template.  Very cool for anything handmade! </p>
<p><a href="http://themeforest.net/item/antiqua-magento-theme/full_screen_preview/95632">Demo</a>  |  <a href="http://themeforest.net/item/antiqua-magento-theme/95632">Info</a></p>
<div style="clear:both;float:none"></div>
<div style="background-color:silver;height:2px;margin-top:10px;margin-bottom:20px;" ></div>
<p>These were the themes that really stuck out but there are hundreds more that are excellent as well.  If there&#8217;s a site that we missed that has a bunch of themes or a particular one that you like, post it below in the comments!  Thanks for reading! </p>
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>13 Featured Magento Themes Reviewed and Links</b></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redstage.com/magento/blog/2010/04/28/13-featured-magento-themes-reviewed-and-links/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

