<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Magebase</title>
	<atom:link href="http://magebase.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://magebase.com</link>
	<description>Magento Tutorials, Tips and Extensions - For Developers by Developers</description>
	<lastBuildDate>Fri, 18 May 2012 06:05:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Magento Session Storage: Which to Choose and Why? by Steve Holdoway</title>
		<link>http://magebase.com/magento-tutorials/magento-session-storage-which-to-choose-and-why/comment-page-1/#comment-2152</link>
		<dc:creator>Steve Holdoway</dc:creator>
		<pubDate>Fri, 18 May 2012 06:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1113#comment-2152</guid>
		<description>@Ryan, you set the session data to be stored in file at ( both snippets appear in the global block )

[code]
  &lt;session_save&gt;&lt;![CDATA[files]]&gt;&lt;/session_save&gt; 
[/code]

I usually use a 2 level cache - basic starting config:

[code]
        &lt;cache&gt;
	  &lt;backend&gt;Apc&lt;/backend&gt;
	  &lt;prefix&gt;magento&lt;/prefix&gt;

	  &lt;slow_backend&gt;Memcached&lt;/slow_backend&gt;
	  &lt;fast_backend&gt;Apc&lt;/fast_backend&gt;

	  &lt;slow_backend_options&gt;
	    &lt;servers&gt;&lt;!-- The code supports using more than 1 server but it seems to hurt performance --&gt;
	      &lt;server&gt;
	        &lt;host&gt;&lt;![CDATA[127.0.0.1]]&gt;&lt;/host&gt;
	        &lt;port&gt;&lt;![CDATA[11211]]&gt;&lt;/port&gt;
	        &lt;persistent&gt;&lt;![CDATA[1]]&gt;&lt;/persistent&gt;
	      &lt;/server&gt;
	    &lt;/servers&gt;
	    &lt;compression&gt;&lt;![CDATA[]]&gt;&lt;/compression&gt;
	    &lt;cache_dir&gt;&lt;![CDATA[]]&gt;&lt;/cache_dir&gt;
	    &lt;hashed_directory_level&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_level&gt;
	    &lt;hashed_directory_umask&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_umask&gt;
	    &lt;file_name_prefix&gt;&lt;![CDATA[]]&gt;&lt;/file_name_prefix&gt;
	  &lt;/slow_backend_options&gt;
	  
	  &lt;memcached&gt;
	    &lt;servers&gt;
	      &lt;server&gt;
	        &lt;host&gt;&lt;![CDATA[127.0.0.1]]&gt;&lt;/host&gt;
	        &lt;port&gt;&lt;![CDATA[11211]]&gt;&lt;/port&gt;
	        &lt;persistent&gt;&lt;![CDATA[1]]&gt;&lt;/persistent&gt;
	      &lt;/server&gt;
	    &lt;/servers&gt;
	    &lt;compression&gt;&lt;![CDATA[]]&gt;&lt;/compression&gt;
	    &lt;cache_dir&gt;&lt;![CDATA[]]&gt;&lt;/cache_dir&gt;
	    &lt;hashed_directory_level&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_level&gt;
	    &lt;hashed_directory_umask&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_umask&gt;
	    &lt;file_name_prefix&gt;&lt;![CDATA[]]&gt;&lt;/file_name_prefix&gt;
	  &lt;/memcached&gt;
        &lt;/cache&gt;
[/code]

Even though I see a fairly ordinary site storing 80MB of data in memcache, but only seems to deliver back at &lt; 10kB/s - so the  actual difference between that and straight single level APC cache may be minimal, for a fair bit of effort and extra administration.

I still stand by my assertion - irrespective of others belief in the generic file system cache! - that tmpfs makes a fair difference... in fact in back-to-back tests of a well used ( in developmental terms! ) 1.4.1 site on dedicated hardware ( loads of spare mem, cpu power ), that it improved a random product page load by over 20%.</description>
		<content:encoded><![CDATA[<p>@Ryan, you set the session data to be stored in file at ( both snippets appear in the global block )</p>
<pre class="brush: plain; title: ; notranslate">
  &lt;session_save&gt;&lt;![CDATA[files]]&gt;&lt;/session_save&gt;
</pre>
<p>I usually use a 2 level cache &#8211; basic starting config:</p>
<pre class="brush: plain; title: ; notranslate">
        &lt;cache&gt;
	  &lt;backend&gt;Apc&lt;/backend&gt;
	  &lt;prefix&gt;magento&lt;/prefix&gt;

	  &lt;slow_backend&gt;Memcached&lt;/slow_backend&gt;
	  &lt;fast_backend&gt;Apc&lt;/fast_backend&gt;

	  &lt;slow_backend_options&gt;
	    &lt;servers&gt;&lt;!-- The code supports using more than 1 server but it seems to hurt performance --&gt;
	      &lt;server&gt;
	        &lt;host&gt;&lt;![CDATA[127.0.0.1]]&gt;&lt;/host&gt;
	        &lt;port&gt;&lt;![CDATA[11211]]&gt;&lt;/port&gt;
	        &lt;persistent&gt;&lt;![CDATA[1]]&gt;&lt;/persistent&gt;
	      &lt;/server&gt;
	    &lt;/servers&gt;
	    &lt;compression&gt;&lt;![CDATA[]]&gt;&lt;/compression&gt;
	    &lt;cache_dir&gt;&lt;![CDATA[]]&gt;&lt;/cache_dir&gt;
	    &lt;hashed_directory_level&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_level&gt;
	    &lt;hashed_directory_umask&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_umask&gt;
	    &lt;file_name_prefix&gt;&lt;![CDATA[]]&gt;&lt;/file_name_prefix&gt;
	  &lt;/slow_backend_options&gt;

	  &lt;memcached&gt;
	    &lt;servers&gt;
	      &lt;server&gt;
	        &lt;host&gt;&lt;![CDATA[127.0.0.1]]&gt;&lt;/host&gt;
	        &lt;port&gt;&lt;![CDATA[11211]]&gt;&lt;/port&gt;
	        &lt;persistent&gt;&lt;![CDATA[1]]&gt;&lt;/persistent&gt;
	      &lt;/server&gt;
	    &lt;/servers&gt;
	    &lt;compression&gt;&lt;![CDATA[]]&gt;&lt;/compression&gt;
	    &lt;cache_dir&gt;&lt;![CDATA[]]&gt;&lt;/cache_dir&gt;
	    &lt;hashed_directory_level&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_level&gt;
	    &lt;hashed_directory_umask&gt;&lt;![CDATA[]]&gt;&lt;/hashed_directory_umask&gt;
	    &lt;file_name_prefix&gt;&lt;![CDATA[]]&gt;&lt;/file_name_prefix&gt;
	  &lt;/memcached&gt;
        &lt;/cache&gt;
</pre>
<p>Even though I see a fairly ordinary site storing 80MB of data in memcache, but only seems to deliver back at &lt; 10kB/s &#8211; so the  actual difference between that and straight single level APC cache may be minimal, for a fair bit of effort and extra administration.</p>
<p>I still stand by my assertion &#8211; irrespective of others belief in the generic file system cache! &#8211; that tmpfs makes a fair difference&#8230; in fact in back-to-back tests of a well used ( in developmental terms! ) 1.4.1 site on dedicated hardware ( loads of spare mem, cpu power ), that it improved a random product page load by over 20%.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento Session Storage: Which to Choose and Why? by Ryan</title>
		<link>http://magebase.com/magento-tutorials/magento-session-storage-which-to-choose-and-why/comment-page-1/#comment-2151</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 18 May 2012 05:40:47 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1113#comment-2151</guid>
		<description>Do you know how to configure the xml file to store session in file but at the same time store cache in memcache? It seems that it is all or nothing for each of the storage option.</description>
		<content:encoded><![CDATA[<p>Do you know how to configure the xml file to store session in file but at the same time store cache in memcache? It seems that it is all or nothing for each of the storage option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick Tip: On / Off switch for extensions by Sofiane</title>
		<link>http://magebase.com/magento-tutorials/quick-tip-on-off-switch-for-extensions/comment-page-1/#comment-2150</link>
		<dc:creator>Sofiane</dc:creator>
		<pubDate>Thu, 17 May 2012 14:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=262#comment-2150</guid>
		<description>Hy,, is there any way that we can setup a PHP file that will disable the module by just puting the name of module and run the script,????????

as im facing conflict between 2 modules and always i have to disable one for the other one will display???

Thanks</description>
		<content:encoded><![CDATA[<p>Hy,, is there any way that we can setup a PHP file that will disable the module by just puting the name of module and run the script,????????</p>
<p>as im facing conflict between 2 modules and always i have to disable one for the other one will display???</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension: MageBase DPS – Payment Express Gateway by Daniel</title>
		<link>http://magebase.com/magento-extensions/extension-magebase-dps-payment-express-gateway/comment-page-1/#comment-2149</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 14 May 2012 07:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=456#comment-2149</guid>
		<description>*Sorry I submitted before i&#039;d finished and proofed
*fully tested

@Robert and @Kristoff
Do you guys think this is a robust solution ??

If not any ideas ?

Cheers,
Daniel</description>
		<content:encoded><![CDATA[<p>*Sorry I submitted before i&#8217;d finished and proofed<br />
*fully tested</p>
<p>@Robert and @Kristoff<br />
Do you guys think this is a robust solution ??</p>
<p>If not any ideas ?</p>
<p>Cheers,<br />
Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension: MageBase DPS – Payment Express Gateway by Daniel</title>
		<link>http://magebase.com/magento-extensions/extension-magebase-dps-payment-express-gateway/comment-page-1/#comment-2148</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 14 May 2012 07:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=456#comment-2148</guid>
		<description>We have the same problem. 
We created an observer that listen for the sales_order_invoice_pay event. 

 [code]{
   /* method that changes the sate of manually invoiced orders */

    function manualInvoiceAction(Varien_Event_Observer $event) {

        $order = $event-&gt;getEvent()-&gt;getInvoice()-&gt;getOrder();// get the order
        $payment = $order-&gt;getPayment()-&gt;getMethodInstance();// retrieve method instance

       // Check to make sure we are only changing the state on orders that use the magebase pxpay payment method and that the state is pending. 
        if($payment instanceof MageBase_DpsPaymentExpress_Model_Method_Pxpay &amp;&amp; $order-&gt;getState() == Mage_Sales_Model_Order::STATE_PENDING_PAYMENT){
            
             $order-&gt;setState(Mage_Sales_Model_Order::STATE_PROCESSING, Mage::getStoreConfig(&#039;payment/magebasedpspxpay/order_status&#039;), &#039;&#039;);
             $order-&gt;setStatus(Mage::getStoreConfig(&#039;payment/magebasedpspxpay/order_status&#039;));
            // Optional. sends the customer a notification email uncomment below if you want to use. Should make this check the confi 
            // $order-&gt;sendNewOrderEmail();
            // $order-&gt;setEmailSent(true);
             // $order-&gt;save();
        }
        
    }
}}
[/code]

We haven&#039;t rolled this live yet as it hasn&#039;t been full tested.</description>
		<content:encoded><![CDATA[<p>We have the same problem.<br />
We created an observer that listen for the sales_order_invoice_pay event. </p>
<pre class="brush: plain; title: ; notranslate">{
   /* method that changes the sate of manually invoiced orders */

    function manualInvoiceAction(Varien_Event_Observer $event) {

        $order = $event-&gt;getEvent()-&gt;getInvoice()-&gt;getOrder();// get the order
        $payment = $order-&gt;getPayment()-&gt;getMethodInstance();// retrieve method instance

       // Check to make sure we are only changing the state on orders that use the magebase pxpay payment method and that the state is pending.
        if($payment instanceof MageBase_DpsPaymentExpress_Model_Method_Pxpay &amp;&amp; $order-&gt;getState() == Mage_Sales_Model_Order::STATE_PENDING_PAYMENT){

             $order-&gt;setState(Mage_Sales_Model_Order::STATE_PROCESSING, Mage::getStoreConfig('payment/magebasedpspxpay/order_status'), '');
             $order-&gt;setStatus(Mage::getStoreConfig('payment/magebasedpspxpay/order_status'));
            // Optional. sends the customer a notification email uncomment below if you want to use. Should make this check the confi
            // $order-&gt;sendNewOrderEmail();
            // $order-&gt;setEmailSent(true);
             // $order-&gt;save();
        }

    }
}}
</pre>
<p>We haven&#8217;t rolled this live yet as it hasn&#8217;t been full tested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extension: MageBase DPS – Payment Express Gateway by Richard</title>
		<link>http://magebase.com/magento-extensions/extension-magebase-dps-payment-express-gateway/comment-page-1/#comment-2147</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 14 May 2012 04:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=456#comment-2147</guid>
		<description>I have this extension and have noticed when manually creating an order in the admin window and selecting DPS as the payment method, that I cannot get the order status to move from &#039;Pending Payment&#039; even after I choose to invoice the order. It appears to be waiting for some recognition from DPS that the payment has been made but obviously I can&#039;t do this for manual orders. 

Any ideas?

Thanks

Richard</description>
		<content:encoded><![CDATA[<p>I have this extension and have noticed when manually creating an order in the admin window and selecting DPS as the payment method, that I cannot get the order status to move from &#8216;Pending Payment&#8217; even after I choose to invoice the order. It appears to be waiting for some recognition from DPS that the payment has been made but obviously I can&#8217;t do this for manual orders. </p>
<p>Any ideas?</p>
<p>Thanks</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Free Magento Extension &#8211; Customer Comments In The Checkout by finrik</title>
		<link>http://magebase.com/magento-extensions/free-magento-extension-customer-comments-in-the-checkout/comment-page-1/#comment-2146</link>
		<dc:creator>finrik</dc:creator>
		<pubDate>Fri, 11 May 2012 08:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1568#comment-2146</guid>
		<description>I&#039;ve already tried to solve it. But as you can see without success. ;)
My main problem is that I can not find a way to adapt it to the review template. (Save on &quot;checkout_type_onepage_save_order&quot; might work.)

I&#039;m still Magento beginners. At the moment I learn best because of examples....</description>
		<content:encoded><![CDATA[<p>I&#8217;ve already tried to solve it. But as you can see without success. <img src='http://magebase.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
My main problem is that I can not find a way to adapt it to the review template. (Save on &#8220;checkout_type_onepage_save_order&#8221; might work.)</p>
<p>I&#8217;m still Magento beginners. At the moment I learn best because of examples&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Free Magento Extension &#8211; Customer Comments In The Checkout by Maik</title>
		<link>http://magebase.com/magento-extensions/free-magento-extension-customer-comments-in-the-checkout/comment-page-1/#comment-2145</link>
		<dc:creator>Maik</dc:creator>
		<pubDate>Fri, 11 May 2012 03:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1568#comment-2145</guid>
		<description>Hi Robert,
it is working, now. I thought, I refreshed cache after installing your extension and refreshed cache, again. The Customer comment field is now visible!

Thanks again for you help!

Maik</description>
		<content:encoded><![CDATA[<p>Hi Robert,<br />
it is working, now. I thought, I refreshed cache after installing your extension and refreshed cache, again. The Customer comment field is now visible!</p>
<p>Thanks again for you help!</p>
<p>Maik</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Free Magento Extension &#8211; Customer Comments In The Checkout by Robert Popovic</title>
		<link>http://magebase.com/magento-extensions/free-magento-extension-customer-comments-in-the-checkout/comment-page-1/#comment-2144</link>
		<dc:creator>Robert Popovic</dc:creator>
		<pubDate>Fri, 11 May 2012 03:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1568#comment-2144</guid>
		<description>It should appear on the shipping step automatically but if you have modifications, then you will need to work out how to get it to show up. You did refresh the cache, etc. I assume. Also, you read my note about the fact there is no support for this extension, right?</description>
		<content:encoded><![CDATA[<p>It should appear on the shipping step automatically but if you have modifications, then you will need to work out how to get it to show up. You did refresh the cache, etc. I assume. Also, you read my note about the fact there is no support for this extension, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Free Magento Extension &#8211; Customer Comments In The Checkout by Maik</title>
		<link>http://magebase.com/magento-extensions/free-magento-extension-customer-comments-in-the-checkout/comment-page-1/#comment-2143</link>
		<dc:creator>Maik</dc:creator>
		<pubDate>Fri, 11 May 2012 01:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://magebase.com/?p=1568#comment-2143</guid>
		<description>Ok, got it installed an it is now enabled under System &gt; Configuration &gt; Sales &gt; Checkout &gt; Magebase Checkout Comment Options, but the comment field isn&#039;t visible at the check out. My template is an almost standard &quot;modern&quot; template. Anything else, I have to make it visible?</description>
		<content:encoded><![CDATA[<p>Ok, got it installed an it is now enabled under System &gt; Configuration &gt; Sales &gt; Checkout &gt; Magebase Checkout Comment Options, but the comment field isn&#8217;t visible at the check out. My template is an almost standard &#8220;modern&#8221; template. Anything else, I have to make it visible?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 4/32 queries in 0.018 seconds using disk: basic
Object Caching 386/424 objects using disk: basic

Served from: magebase.com @ 2012-05-19 00:26:11 -->
