<?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>MagJournal</title>
	<atom:link href="http://www.magjournal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magjournal.com</link>
	<description>Magento Insider Journal</description>
	<lastBuildDate>Sat, 16 Jul 2011 22:32:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>eBay acquires Magento</title>
		<link>http://www.magjournal.com/2011/07/ebay-acquires-magento/</link>
		<comments>http://www.magjournal.com/2011/07/ebay-acquires-magento/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 22:31:10 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[acquision]]></category>
		<category><![CDATA[ebay]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=312</guid>
		<description><![CDATA[On the morning of June 6th, Magento Inc announced that it had had reached an agreement to be acquired by eBay Inc. The pending acquisition – scheduled to close in the 3rd quarter of 2011 – will enable Magento to accelerate our growth and extend our reach as part of eBay Inc.’s X.commerce platform. eBay is evolving to become a strategic commerce partner focused on delivering new ways for merchants of all sizes to drive innovation. As a centerpiece of this strategy, they are building a global, open commerce platform that leverages the worldwide ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-313" title="DSN-213QuarterlyUpdate2_eBay+Magneto" src="http://www.magjournal.com/wp-content/uploads/2011/07/DSN-213QuarterlyUpdate2_eBay+Magneto-300x50.jpg" alt="" width="300" height="50" /></p>
<p>On the morning of June 6th, Magento Inc announced that it had had reached an agreement to be acquired by eBay Inc. The pending acquisition – scheduled to close in the 3rd quarter of 2011 – will enable Magento to accelerate our growth and extend our reach as part of eBay Inc.’s X.commerce platform.</p>
<p>eBay is evolving to become a strategic commerce partner focused on delivering new ways for merchants of all sizes to drive innovation. As a centerpiece of this strategy, they are building a global, open commerce platform that leverages the worldwide developer community. And Magento will be at the core of this new, open commerce platform, called &#8220;X.Commerce.&#8221;</p>
<h2>Partnering since 2010</h2>
<p>Magento and eBay have a bit of a history together already. In March 2010, eBay became their first outside investor. Over the past year, eBay has gotten to know the platform, the culture, and the community. They have experienced the passion of the Magento ecosystem, and they are eager to harness the power of this ecosystem to create the next generation of eCommerce innovation.</p>
<h2>Learn more</h2>
<ul>
<li><a href="http://www.magentocommerce.com/images/uploads/Magento_eBay_FAQ.pdf">Read the FAQ about the acquision</a></li>
<li><a href="http://ebayinkblog.com/2011/06/06/ebay-to-acquire-magento/">eBay&#8217;s statement</a></li>
</ul>
<h2>Video from CEO Roy Rubin</h2>
<p><iframe src="http://www.youtube.com/embed/w0FKogIB_Ko" frameborder="0" width="560" height="349"></iframe></p>
<h2>Video from the CEO at eBay</h2>
<p><iframe src="http://www.youtube.com/embed/IXkJtPutlZw" frameborder="0" width="560" height="349"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/07/ebay-acquires-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Facebook Like on a product page in Magento</title>
		<link>http://www.magjournal.com/2011/06/how-to-add-facebook-like-on-a-product-page-in-magento/</link>
		<comments>http://www.magjournal.com/2011/06/how-to-add-facebook-like-on-a-product-page-in-magento/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 07:28:29 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=309</guid>
		<description><![CDATA[To add a Facebook Like button on each product page in Magento you simply need to add the following code anywhere in your app/design/frontend/theme/theme/template/catalog/product/view.phtml template: &#60;a name="fb_share" type="button"&#62;&#60;/a&#62; &#60;script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"&#62; &#60;/script&#62; &#60;?php elseif($_share == 'facebook_like'): ?&#62; &#60;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&#62;&#60;/script&#62;&#60;fb:like show_faces="true" width="450"&#62;&#60;/fb:like&#62; &#60;?php endif; ?&#62; &#160;]]></description>
			<content:encoded><![CDATA[<p>To add a Facebook Like button on each product page in Magento you simply need to add the following code anywhere in your app/design/frontend/theme/theme/template/catalog/product/view.phtml template:</p>
<pre>
<div id="LC18">&lt;a name="fb_share" type="button"&gt;&lt;/a&gt;</div>
<div id="LC19">&lt;script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"&gt;</div>
<div id="LC20">&lt;/script&gt;</div>
<div id="LC21">&lt;?php elseif($_share == 'facebook_like'): ?&gt;</div>
<div id="LC22">&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:like show_faces="true" width="450"&gt;&lt;/fb:like&gt;</div>
<div id="LC23">&lt;?php endif; ?&gt;</div>
</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/06/how-to-add-facebook-like-on-a-product-page-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Enterprise v1.10.1 released</title>
		<link>http://www.magjournal.com/2011/05/magento-enterprise-v1-10-1-released/</link>
		<comments>http://www.magjournal.com/2011/05/magento-enterprise-v1-10-1-released/#comments</comments>
		<pubDate>Thu, 05 May 2011 18:54:56 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[Enterprise Edition]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=307</guid>
		<description><![CDATA[Magento Enterprise 1.10.1 was released a few days ago. Magento Inc. schedules such maintenance releases twice per year (the calendar quarter after a major release). The major updates includes enhancements on payment methods, better call center functionality both for the frontend- and backend. The new release also includes an alternative media storage like a CDN. The Magento Webservice APIs for the shopping cart and gift messages is also included, together with fixing of several security vulnerabilities.]]></description>
			<content:encoded><![CDATA[<p>Magento Enterprise 1.10.1 was released a few days ago. Magento Inc. schedules such maintenance releases twice per year (the calendar quarter after a major release).</p>
<p>The major updates includes enhancements on payment methods, better call center functionality both for the frontend- and backend.</p>
<p>The new release also includes an alternative media storage like a CDN.</p>
<p>The Magento Webservice APIs for the shopping cart and gift messages is also included, together with fixing of several security vulnerabilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/05/magento-enterprise-v1-10-1-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Cufon in Magento</title>
		<link>http://www.magjournal.com/2011/04/using-cufon-in-magento/</link>
		<comments>http://www.magjournal.com/2011/04/using-cufon-in-magento/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 18:57:35 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=301</guid>
		<description><![CDATA[Cufon is a way (among several other) to add more or less any font as a fully usable font directly on your website &#8211; of course including Magento. Here we&#8217;ll show you how to do that in just a few steps. Find your font. A good resource of free fonts is www.dafont.com, however make sure the font you are about to use has an EULA that fits your needs. Go to the Cufon site and follow the instructions on how to upload your font and get the generated font.js file. Also download the cufon-yui.js ...]]></description>
			<content:encoded><![CDATA[<p>Cufon is a way (among several other) to add more or less any font as a fully usable font directly on your website &#8211; of course including Magento. Here we&#8217;ll show you how to do that in just a few steps.</p>
<ol>
<li>Find your font. A good resource of free fonts is www.dafont.com, however make sure the font you are about to use has an EULA that fits your needs.</li>
<li>Go to the <a href="http://cufon.shoqolate.com" target="_blank">Cufon site</a> and follow the instructions on how to upload your font and get the generated font.js file. Also download the cufon-yui.js script.</li>
<li>Place all the .js files in a new directory in /js/cufon.</li>
<li>Open your template&#8217;s page.xml file and add the below code in its head section:<br />
<code>&lt;</code><code>action</code> <code>method</code><code>=</code><code>"addJs"</code><code>&gt;&lt;</code><code>script</code><code>&gt;cufon/cufon-yui.js&lt;/</code><code>script</code><code>&gt;&lt;/</code><code>action</code><code>&gt;<br />
<code>&lt;</code><code>action</code> <code>method</code><code>=</code><code>"addJs"</code><code>&gt;&lt;</code><code>script</code><code>&gt;cufon/YourFontFile.font.js&lt;/</code><code>script</code><code>&gt;&lt;/</code><code>action</code><code>&gt;</code></code></li>
<li>Now open your template&#8217;s head.phtml file and add the following code at the very end of it:<br />
<code>&lt;</code><code>script</code> <code>type</code><code>=</code><code>"text/javascript"</code><code>&gt;Cufon.replace('h1, h2');&lt;/</code><code>script</code><code>&gt;</code></li>
</ol>
<p>You&#8217;re done. Your h1 and h2 tags are now using your custom font.</p>
<p>You can also target spesific CSS classes by adding the following script tag:</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td></td>
<td>
<div>
<div><code>&lt;</code><code>script</code> <code>type</code><code>=</code><code>"text/javascript"</code><code>&gt;</code></div>
<div><code>Cufon.replace(' .product-title, .price ');</code></div>
<div><code>&lt;/</code><code>script</code><code>&gt;</code></div>
</div>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/04/using-cufon-in-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Meet Magento in Germany in May</title>
		<link>http://www.magjournal.com/2011/04/meet-magento/</link>
		<comments>http://www.magjournal.com/2011/04/meet-magento/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 12:09:58 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=292</guid>
		<description><![CDATA[Meet Magento in Germany, May 16-17th 2011. Magento, eCommerce experts and 500 merchants for two adventure-filled days of engaging dialogue and networking at the Meet Magento Conference in Leipzig, Germany. Now in its fifth year, Meet Magento is one of the largest and exciting eCommerce events in Europe and an ideal meeting place for eCommerce merchants, business leaders and developers. Magento CEO Roy Rubin will hold a keynote at the conference. Click here for more details and tickets.]]></description>
			<content:encoded><![CDATA[<h3>Meet Magento <span style="font-size: 13px; font-weight: normal;">in Germany, May 16-17th 2011. Magento, eCommerce experts and 500 merchants for two adventure-filled days of engaging dialogue and networking at the Meet Magento Conference in Leipzig, Germany.</span></h3>
<p>Now in its fifth year, Meet Magento is one of the largest and exciting eCommerce events in Europe and an ideal meeting place for eCommerce merchants, business leaders and developers.</p>
<p>Magento CEO Roy Rubin will hold a keynote at the conference.</p>
<p><a href="http://www.meet-magento.de/tickets.html">Click here for more details and tickets.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/04/meet-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Community Edition 1.5 released</title>
		<link>http://www.magjournal.com/2011/04/magento-community-edition-1-5-released/</link>
		<comments>http://www.magjournal.com/2011/04/magento-community-edition-1-5-released/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 11:43:01 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=279</guid>
		<description><![CDATA[Magento 1.5 was released last week, with hundreds of bugfixes and some important new features, the most important ones being an improved Import/Export profiler that now reads and writes the data at a much higher speed than before. Magento 1.5 also includes improvements in the API part of Magento, as well as the possibility to let your media folder now be in a CDN (Content Delivery Network).]]></description>
			<content:encoded><![CDATA[<p>Magento 1.5 was released last week, with hundreds of bugfixes and some important new features, the most important ones being an improved Import/Export profiler that now reads and writes the data at a much higher speed than before. Magento 1.5 also includes improvements in the API part of Magento, as well as the possibility to let your media folder now be in a CDN (Content Delivery Network).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2011/04/magento-community-edition-1-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase product image quality</title>
		<link>http://www.magjournal.com/2010/07/increase-product-image-quality/</link>
		<comments>http://www.magjournal.com/2010/07/increase-product-image-quality/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 11:50:11 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=249</guid>
		<description><![CDATA[Magento by default compress and reduce the quality of uploaded product images. This tips show you how to increase the product image quality. To adjust this setting open up app/code/core/Mage/Media/Model/File/Image.php and go to around line #168. There, modify the number 80 in line $result = imagejpeg($object-&#62;getTmpImage(), $object-&#62;getFilePath(true), 80); to a higher number. Note that this is a core hack and will most likely be overwritten during a full Magento upgrade.]]></description>
			<content:encoded><![CDATA[<p>Magento by default compress and reduce the quality of uploaded product images. This tips show you how to increase the product image quality.</p>
<p><span id="more-249"></span>To adjust this setting open up app/code/core/Mage/Media/Model/File/Image.php and go to around line #168. There, modify the number 80 in line $result = imagejpeg($object-&gt;getTmpImage(), $object-&gt;getFilePath(true), 80); to a higher number. Note that this is a core hack and will most likely be overwritten during a full Magento upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2010/07/increase-product-image-quality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whats new in Magento 1.4.1.0?</title>
		<link>http://www.magjournal.com/2010/07/whats-new-in-magento-1-4-1-0/</link>
		<comments>http://www.magjournal.com/2010/07/whats-new-in-magento-1-4-1-0/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 22:13:42 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=242</guid>
		<description><![CDATA[Here&#8217;s a list of the new features in Magento 1.4.1.0, the most important ones being re-design of some important template files, recurring payment and billing agreements. Added ability to use static URLs for media in WYSIWYG or image browser. Added ability to enable parsing store, skin and media directives on catalog frontend. URL rewrites history: ability to auto-generate custom rewrite with redirect from old to new URL when changing product URL-key. Added ability to exclude a category from navigation menu Various improvements in system configuration UI Introduced ability to make actual configuration structure to ...]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;">Here&#8217;s a list of the new features in Magento 1.4.1.0, the most important ones being re-design of some important template files, recurring payment and billing agreements.<span id="more-242"></span></span></p>
<ul>
<li><span style="color: #000000;">Added ability to use static URLs for media in WYSIWYG or image browser. </span></li>
<li><span style="color: #000000;">Added ability to enable parsing store, skin and media directives on catalog frontend. </span></li>
<li><span style="color: #000000;">URL rewrites history: ability to auto-generate custom rewrite with redirect from old to new URL when changing product URL-key.</span></li>
<li><span style="color: #000000;">Added ability to exclude a category from navigation menu</span></li>
<li><span style="color: #000000;">Various improvements in system configuration UI</span></li>
<li><span style="color: #000000;">Introduced ability to make actual configuration structure to be independent on the system.xml structure</span></li>
<li><span style="color: #000000;">Added “Only X left” inventory feature</span></li>
<li><span style="color: #000000;">Implemented Centinel functionality in iphone theme </span></li>
<li><span style="color: #000000;">Upgraded TinyMCE to v.3.3.2 </span></li>
<li><span style="color: #000000;">Improved PayPal integration, includes:<br />
* Recurring payment profiles entity and purchasing of “subscription” products. In checkout they are treated as “nominal” items.<br />
* Billing agreements * “Pending Review” order state, “Pending Review” and “Suspected Fraud” order statuses and logic related with this. Triggers by PayPal IPR, FMF and Unilateral payments.<br />
* Functionality of transactions listing/searching and fetching from gateway<br />
* Fetching PayPal settlement reports via SFTP<br />
* Various improvements of PayPal integration on the frontend and admin UI </span></li>
<li><span style="color: #000000;">Added notice about creating offline creditmemo from order view page. </span></li>
<li><span style="color: #000000;">Added getter for recurring payment methods in payment helper. </span></li>
<li><span style="color: #000000;">Implemented abstract block ability to have arbitrary groups of child blocks and a method that returns such a group. </span></li>
<li><span style="color: #000000;">Implemented a method that fetches data from child block by specified alias. </span></li>
<li><span style="color: #000000;">Implemented ability to specify “sort_order” instead of “before” and “after” in the totals declaration. </span></li>
<li><span style="color: #000000;">All nominal totals declaration utilize “sort_order” </span></li>
<li><span style="color: #000000;">Added getter for specified object data by key in core/template block: method getObjectData() </span></li>
<li><span style="color: #000000;">Defined payment methods grouping, implemented getter for payment method list (with option to group them). </span></li>
<li><span style="color: #000000;">Added ability to render grouped options in the “select” grid filter. </span></li>
<li><span style="color: #000000;">Moneybookers: utilized the payment methods grouping for all its methods; removed redundant “translate” attribute in the methods definition in config. </span></li>
<li><span style="color: #000000;">Utilized payment methods grouping for PayPal peyment methods. </span></li>
<li><span style="color: #000000;">Added more verbosity to PayPal NVP and IPN debugging </span></li>
<li><span style="color: #000000;">Changes Sales module database structure changed from EAV into flat tables </span></li>
<li><span style="color: #000000;">Product custom URL rewrites redirect to SEF URL, rather than to catalog/product/view/id/ </span></li>
<li><span style="color: #000000;">Reimplemented frontend top menu rendering logic (cross-browser and usability improvements) </span></li>
<li><span style="color: #000000;">Reviewed logic of the sales reports: Orders, Tax, Invoiced, Shipping, Refunds, </span><span style="color: #000000;">Coupons </span></li>
<li><span style="color: #000000;">Reimplemented bestsellers report </span></li>
<li><span style="color: #000000;">Implemented 3D Secure validation for Maestro International and JCB cards </span></li>
<li><span style="color: #000000;">Changed Shopping cart methods output (top + bottom): removed </span></li>
<li><span style="color: #000000;">Moved the Payflow Pro payment method to PayPal module </span></li>
<li><span style="color: #000000;">Refactored sales/service_quote model: instead of submit() method the submitAll() should be used. It can submit nominal items separately from the order. The methods for submitting nominal items and order separately – are available as well. </span></li>
<li><span style="color: #000000;">Refactored onepage checkout model to use the new method sales/service_quote::submitAll(), added recurring profiles and billing agreements passing through the process until the success page </span></li>
<li><span style="color: #000000;">Utilized child blocks grouping to improve flexibility of rendering additional information in catalog/product/view template. </span></li>
<li><span style="color: #000000;">The group is called “detailed_info”; any block from layout may insert itself to this group. </span></li>
<li><span style="color: #000000;">Removed redundant wrappers hard-coded into some catalog templates. </span></li>
<li><span style="color: #000000;">Template of parent block is responsible for wrapping.  Refactored onepage checkout success block and template: simplified fetching related checkout information, added ability to render billing agreement and recurring profiles that might be created with the payment placement.</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2010/07/whats-new-in-magento-1-4-1-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Mobile released</title>
		<link>http://www.magjournal.com/2010/06/magento-mobile-released/</link>
		<comments>http://www.magjournal.com/2010/06/magento-mobile-released/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 18:59:56 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=235</guid>
		<description><![CDATA[Varien has now released their new product to Magento, called Magento Mobile. In short the Magento Mobile is a fully standalone mobile application which can be customized to fit your store&#8217;s requirements, and which pulls out the data from a particular StoreView in your Magento installation. The Magento Mobile application is currently available for Apple iPhone only, but will be made available for other platforms like Android and Maemo later this year. Varien will license the application on a per month basis. More details on prices will be published as soon as we get ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.magjournal.com/wp-content/uploads/2010/06/mcom_img4.png"><img class="alignright size-full wp-image-236" title="mcom_img4" src="http://www.magjournal.com/wp-content/uploads/2010/06/mcom_img4.png" alt="" width="168" height="172" /></a>Varien has now released their new product to Magento, called Magento Mobile. In short the Magento Mobile is a fully standalone mobile application which can be customized to fit your store&#8217;s requirements, and which pulls out the data from a particular StoreView in your Magento installation.</p>
<p>The Magento Mobile application is currently available for Apple iPhone only, but will be made available for other platforms like Android and Maemo later this year.</p>
<p><span id="more-235"></span></p>
<p>Varien will license the application on a per month basis. More details on prices will be published as soon as we get to know it.</p>
<p>For more info check out the productpage over at Varien:</p>
<p>http://www.magentocommerce.com/product/mobile</p>
<p><object id="viddler" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="379"><param name="movie" value="http://www.viddler.com/player/1ae9762e/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="fake=1" /><embed type="application/x-shockwave-flash" width="437" height="379" src="http://www.viddler.com/player/1ae9762e/" name="viddler" flashvars="fake=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2010/06/magento-mobile-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Professional Edition available for purchase</title>
		<link>http://www.magjournal.com/2010/05/magento-professional-edition-available-for-purchase/</link>
		<comments>http://www.magjournal.com/2010/05/magento-professional-edition-available-for-purchase/#comments</comments>
		<pubDate>Fri, 28 May 2010 07:31:52 +0000</pubDate>
		<dc:creator>Mark Clark</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.magjournal.com/?p=224</guid>
		<description><![CDATA[Not many Magento Partners have started selling Magento Professional Edition yet. So far only our partner Trollweb Solutions has begun taking orders. The new Professional Edition is based upon Magento Enterprise Edition and includes some of the most-wanted features from the Enterprise Edition including Gift Cards, Customer Credits and the Reward Point System. The Magento Professional Edition also includes a much more robust foundation as its core is based upon the Enterprise source. To learn more and purchase Magento Professional Edition please visit Silverthemes.com.]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;">Not many Magento Partners have started selling Magento Professional Edition yet. So far only our partner Trollweb Solutions has begun taking orders.</span><span id="more-224"></span></p>
<p><span style="color: #000000;">The new Professional Edition is based upon Magento Enterprise Edition and includes some of the most-wanted features from the Enterprise Edition including Gift Cards, Customer Credits and the Reward Point System. The Magento Professional Edition also includes a much more robust foundation as its core is based upon the Enterprise source.</span></p>
<p><a href="http://www.silverthemes.com/magento-professional-edition"><span style="color: #000000;">To learn more and purchase Magento Professional Edition please visit Silverthemes.com</span></a><span style="color: #000000;">.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magjournal.com/2010/05/magento-professional-edition-available-for-purchase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

