<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    
    <channel>
    
    <title>Developer Challenge</title>
    <link>http://www.magentocommerce.com/boards/</link>
    <description>Magento Forums</description>
    <dc:language>en</dc:language>
    <dc:rights>Copyright 2011</dc:rights>
    <dc:date>2011-06-08T02:50:59-08:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>quote item update issue in magento 1.4.1.1</title>
      <link>http://www.magentocommerce.com/boards/viewthread/202293/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/202293/#When:01:48:59Z</guid>
      <description><![CDATA[<p>Hi, I have run into a bit of a problem with magento 1.4.1.1.
<br />
I have developed a module that creates a quote requests from the shopping cart items and sends it through to the admin.
<br />
This allows me to hide the prices and have people add products to cart with unknown prices.
<br />
Once the admin gets the quote request he can set custom prices and discounts to the quote.
<br />
The admin notifies the customer that his quote is ready and when the customer accepts the quote the products are added to his cart with the custom prices and he is allowed to go through the checkout process.
<br />
I used to use something similar to the following code to set the prices.
<br />
<div class="codeblock"><code>
<span style="color: #007700">private&nbsp;function&nbsp;</span><span style="color: #0000BB">customPrice</span><span style="color: #007700">(</span><span style="color: #0000BB">$product_id</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$price</span><span style="color: #007700">)</span><span style="color: #0000BB">&#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;$cart&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">Mage</span><span style="color: #007700">::</span><span style="color: #0000BB">getModel</span><span style="color: #007700">(</span><span style="color: #DD0000">'checkout/cart'</span><span style="color: #007700">);&nbsp;</span><span style="color: #FF8000">//Get&nbsp;Cart&nbsp;Model<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$quote&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$cart</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getQuote</span><span style="color: #007700">();&nbsp;</span><span style="color: #FF8000">//Get&nbsp;all&nbsp;info&nbsp;of&nbsp;current&nbsp;quote<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$quote_items&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$quote</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getAllItems</span><span style="color: #007700">();&nbsp;</span><span style="color: #FF8000">//Get&nbsp;all&nbsp;products&nbsp;in&nbsp;cart<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">foreach(</span><span style="color: #0000BB">$quote_items&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">$item</span><span style="color: #007700">)</span><span style="color: #0000BB">&#123;&nbsp;&nbsp;</span><span style="color: #FF8000">//loop&nbsp;through&nbsp;products<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$item_id&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$item</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getProductId</span><span style="color: #007700">();&nbsp;&nbsp;</span><span style="color: #FF8000">//Get&nbsp;product&nbsp;sku<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">if(</span><span style="color: #0000BB">$item_id&nbsp;</span><span style="color: #007700">==&nbsp;</span><span style="color: #0000BB">$product_id</span><span style="color: #007700">)</span><span style="color: #0000BB">&#123;&nbsp;</span><span style="color: #FF8000">//Check&nbsp;if&nbsp;sku's&nbsp;match<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$item</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setCustomPrice</span><span style="color: #007700">(</span><span style="color: #0000BB">$price</span><span style="color: #007700">);&nbsp;</span><span style="color: #FF8000">//Set&nbsp;the&nbsp;unit&nbsp;price&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$item</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">calcRowTotal</span><span style="color: #007700">();&nbsp;&nbsp;</span><span style="color: #FF8000">//Calculate&nbsp;the&nbsp;subtotal<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$item</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">save</span><span style="color: #007700">;&nbsp;&nbsp;</span><span style="color: #FF8000">//Update&nbsp;the&nbsp;item<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#125;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&#125;<br />&nbsp;&nbsp;&nbsp;&nbsp;$quote</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getTotals</span><span style="color: #007700">();&nbsp;</span><span style="color: #FF8000">//Recalculate&nbsp;all&nbsp;totals<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$quote</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">save</span><span style="color: #007700">();&nbsp;</span><span style="color: #FF8000">//Save&nbsp;cart<br />&nbsp;&nbsp;</span><span style="color: #0000BB">&#125;</span>
</code></div>
This was working in magento 1.4.0.1 but now, all custom prices gets recalculated each time the user goes to the checkout page or the cart page.
<br />
I am working on another workaround but would like to know if there is an easy way to set a custom price to a magento quote item that will stick around and not modify any settings to the actual product.
<br />
If I find a solution to this today, I will update the post to let you know how I did it.
</p>]]></description>
      <dc:date>2010-08-16T01:48:59-08:00</dc:date>
    </item>

    <item>
      <title>How to import &amp;quot;Bundle Product&amp;quot; with its Bundle Items by CSV &#63;</title>
      <link>http://www.magentocommerce.com/boards/viewthread/208147/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/208147/#When:00:00:40Z</guid>
      <description><![CDATA[<p>Hi All,
</p>
<p>
I am working on export feed for all type of products (simple,configurable,grouped,virtual,bundle,dowanloadable). And my planning is &#8220;use that exported feed directly for import&#8221;.
</p>
<p>
i have success ed  for <b>simple,configurable,grouped,virtual,dowanloadable</b> but i have no details (related csv column name) of how can i import bundle products ?
</p>
<p>
if anybody have example of csv file for IMPORT BUNDLE products or any idea about this than help me&#8230;
</p>
<p>
Thanks in advance ... !!!
<br />
Tushar Lashkari
</p>]]></description>
      <dc:date>2010-10-16T00:00:40-08:00</dc:date>
    </item>

    <item>
      <title>Unirgy_Giftcert instalation in Magento 1.1.8.</title>
      <link>http://www.magentocommerce.com/boards/viewthread/208513/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/208513/#When:23:16:44Z</guid>
      <description><![CDATA[<p>Hello,
</p>
<p>
I have a website with Magento version :- ver. 1.1.8. Do you able to send me Unirgy_Giftcert extension for this version please?
<br />
http://www.magentocommerce.com/extension/specs/751/unirgy_giftcert
</p>
<p>
Thanks.
<br />
Rudra Ganguly
</p>]]></description>
      <dc:date>2010-10-19T23:16:44-08:00</dc:date>
    </item>

    <item>
      <title>magento 性能优化</title>
      <link>http://www.magentocommerce.com/boards/viewthread/205612/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/205612/#When:07:31:48Z</guid>
      <description><![CDATA[<p>前言:
<br />
<a href="http://www.blags.org/tags/magento/" target="_blank">Magento </a>是一个开源电子商务系统，尤其以扩展性高著称，但是很高的扩展性往往是牺牲了速度为代价的，虽然现在magento为速度提升做了很多工作，但是还是没能达到人们对速度的要求。既然如此还是有很多企业选择了它，速度问题还是让很多客户无法接受，最近忙碌于magento性能优化。
<br />
同时速度也上了几个台阶，据本人目测最少快了(7-8倍)。
</p>
<p>
参考了合同前辈的经验总结了如下几点:
<br />
1) Magento Caching. Magento 自身cache
<br />
Goto Magento Admin -&gt; System -&gt; Cache Management
<br />
- Tick the following items:
<br />
– Configuration
<br />
– Layouts
<br />
– Block HTML output
<br />
– Translations
</p>
<p>
2) MySQL Cache Size 设置
<br />
query_cache_size=128M
<br />
innodb_buffer_pool_size=64M
<br />
innodb_additional_mem_pool=16M
</p>
<p>
4) Enabling Gzipping 启用gzip压缩
<br />
.htaccess
<br />
php_flag zlib.output_compression on
<br />
AddHandler application/x-httpd-php5 .css
</p>
<p>
修改 .htaccess mod_deflate 配置
<br />
本人配置如下:
</p>
<p>
# Insert filter on all content
<br />
    SetOutputFilter DEFLATE
<br />
    # Insert filter on selected content types only
<br />
    #AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript
</p>
<p>
    # Netscape 4.x has some problems&#8230;
<br />
    BrowserMatch ^Mozilla/4 gzip-only-text/html
<br />
 
<br />
    # Netscape 4.06-4.08 have some more problems
<br />
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
<br />
 
<br />
    # MSIE masquerades as Netscape, but it is fine
<br />
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
<br />
 
<br />
    # Don&#8217;t compress images
<br />
    SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
<br />
 
<br />
    # Make sure proxies don&#8217;t deliver the wrong content
<br />
    Header append Vary User-Agent env=!dont-vary
</p>
<p>
5) Install Fooman Speedster 安装该插件
</p>
<p>
6) Install APC or Xcache 安装apc机器码缓存
</p>
<p>
&lt;cache&gt;
<br />
&lt;backend&gt;apc&lt;/backend&gt;
<br />
&lt;prefix&gt;alphanumeric&lt;/prefix&gt;
<br />
&lt;/cache&gt;
<br />
添加到 app/etc/local.xml &lt;global&gt;&lt;/global&gt; 之间.
</p>
<p>
7) 设置apache 开启 KeepAlive
</p>
<p>
KeepAlive ＝ On
</p>
<p>
LoadModule deflate_module     modules/mod_deflate.so #开启mod_deflate
</p>
<p>
参考地址:
</p>
<p>
<a href="http://www.magentocommerce.com/wiki/groups/168/optimising_your_web_stack_performance_for_magento">http://www.magentocommerce.com/wiki/groups/168/optimising_your_web_stack_performance_for_magento</a>
</p>
<p>
<a href="http://www.magentocommerce.com/boards/viewthread/36225/">http://www.magentocommerce.com/boards/viewthread/36225/</a>
</p>
<p>
出处: 马丁博客［<a href="http://www.blags.org/" target="_blank">http://www.blags.org/</a>］
</p>
<p>
本文链接地址: <a href="http://www.blags.org/magento-performance-optimization/" target="_blank">http://www.blags.org/magento-performance-optimization/</a>
</p>]]></description>
      <dc:date>2010-09-19T07:31:48-08:00</dc:date>
    </item>

    <item>
      <title>user existance from external script&#63;</title>
      <link>http://www.magentocommerce.com/boards/viewthread/207880/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/207880/#When:12:57:12Z</guid>
      <description><![CDATA[<p>Hello;
</p>
<p>
I want to check a username and password exist in magento customer database or not without using magento framework.
</p>
<p>
For example: 
<br />
Username: john
<br />
Password: 123123
</p>
<p>
I want to check that these username and password exist in magento database or not
</p>
<p>
I&#8217;ve been searching about this for a while but searching did not get successed.
</p>
<p>
Can anybody help me for this? Any code ? any clue?
</p>
<p>
Thank you for the help
</p>]]></description>
      <dc:date>2010-10-13T12:57:12-08:00</dc:date>
    </item>

    <item>
      <title>Memory leak Problem while adding or updating the thousand of products.</title>
      <link>http://www.magentocommerce.com/boards/viewthread/179608/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/179608/#When:22:37:05Z</guid>
      <description><![CDATA[<p>Hello every one,
</p>
<p>
 Can some one help me asap...? What my problem is: I have one script which read the magento products feed from the third party site.
<br />
I read the feeds through xml Reader and store it in the database.. then from the database i want to add the product if its not exist in the current store or update if exists..&nbsp; There are around 35000 products coming from  the feeds. when i am trying to update the store with the magento api.. i have got the error like.. &#8220;Allocated memory size exhausted..&#8221; I have change the php.ini to some specific value&#8230; but it still creates the problem, when the limit is reach&#8230; 
</p>
<p>
 I have read some of the post they say that actually there is some problem with the memory leak in the magento&#8230; 
<br />
So please if any body has face the problem.. and find the solution please let me know asap&#8230;  
</p>
<p>
Thanks&#8230;
</p>]]></description>
      <dc:date>2010-04-19T22:37:05-08:00</dc:date>
    </item>

    <item>
      <title>Using Multiple Stores and Single Checkout</title>
      <link>http://www.magentocommerce.com/boards/viewthread/202444/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/202444/#When:06:20:11Z</guid>
      <description><![CDATA[<p>hi,
</p>
<p>
 Just wanted to know if we can use two stores and a single checkout in magento.If it is possible please do post the solution here.
</p>
<p>
 My requirement is as follows,
</p>
<p>
  I have two websites main-site-1 and main-site-2. 
</p>
<p>
  main-site -2 uses another domain.
</p>
<p>
  But both the stores share the same files of magento.
</p>
<p>
  Now when a customer purchases any product from main-site-2, then i want him to be redirected to the main-site-1 cart/checkout page with the cart contents of the main-site -2 to be displayed on the cart/checkout page of  main-site-1.
</p>
<p>
     I was able to redirect him to the main-site-1 but the contents of the cart were not getting displayed.
</p>
<p>
   can anyone help me with this..?
</p>
<p>
Thanks
</p>]]></description>
      <dc:date>2010-08-17T06:20:11-08:00</dc:date>
    </item>

    <item>
      <title>&amp;quot;Swedish&amp;quot; Rounding</title>
      <link>http://www.magentocommerce.com/boards/viewthread/207252/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/207252/#When:03:55:33Z</guid>
      <description><![CDATA[<p>I would like to implement &#8220;Swedish&#8221; rounding.
<br />
http://en.wikipedia.org/wiki/Swedish_rounding
</p>
<p>
Even though it may not be necessary in e-commerce, there is a culture of using it in many countries. This is because in these countries small monetary demoninations have been removed from circulation. 1 cents / 2 cents etc..&nbsp; I have a client with a brick + mortar store, they want the prices in their physical cash world to match the online store, so there is no differences for the end consumer. 
</p>
<p>
It is a psychological issue IMHO, however at the end of the day we sell products to people not machines.
</p>
<p>
This should work for everything, delivery, % discounts etc.
</p>
<p>
Considering this could be an issue for a few countries I thought I would share this around as it can benefit others.
</p>
<p>
I have a rough method which is locale based, probably not 100% correct, can be done more sophisticated:
<br />
<div class="codeblock"><code>
<span style="color: #007700">function&nbsp;</span><span style="color: #0000BB">swedishRound</span><span style="color: #007700">(</span><span style="color: #0000BB">$price</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">&#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;preg_match</span><span style="color: #007700">(</span><span style="color: #DD0000">'/&#91;A-Z&#93;&#91;A-Z&#93;/'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">Mage</span><span style="color: #007700">::</span><span style="color: #0000BB">app</span><span style="color: #007700">()-&gt;</span><span style="color: #0000BB">getLocale</span><span style="color: #007700">()-&gt;</span><span style="color: #0000BB">getDefaultLocale</span><span style="color: #007700">(),</span><span style="color: #0000BB">$matches</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;(isset(</span><span style="color: #0000BB">$matches</span><span style="color: #007700">)&nbsp;&amp;&amp;&nbsp;</span><span style="color: #0000BB">count</span><span style="color: #007700">(</span><span style="color: #0000BB">$matches</span><span style="color: #007700">)&nbsp;&gt;&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">switch&nbsp;(</span><span style="color: #0000BB">$matches&#91;0&#93;</span><span style="color: #007700">)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#123;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'AU'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Australia<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'BA'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Bosnia&nbsp;and&nbsp;Herzegovina<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'BR'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Brazil<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'CH'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Switzerland<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'FI'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Finland&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'HU'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Hungary<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'MY'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Malaysia<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'NL'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Netherlands<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'SG'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//Singapore<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">case&nbsp;</span><span style="color: #DD0000">'ZA'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//South&nbsp;Africa<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;5&nbsp;cent&nbsp;rounding<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$price&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">round</span><span style="color: #007700">((</span><span style="color: #0000BB">$price</span><span style="color: #007700">+</span><span style="color: #0000BB">0.000001</span><span style="color: #007700">)*</span><span style="color: #0000BB">20</span><span style="color: #007700">)/</span><span style="color: #0000BB">20</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case&nbsp;</span><span style="color: #DD0000">'NZ'</span><span style="color: #007700">:&nbsp;</span><span style="color: #FF8000">//New&nbsp;Zealand<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;10&nbsp;cent&nbsp;rounding<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">$price&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">round</span><span style="color: #007700">((</span><span style="color: #0000BB">$price</span><span style="color: #007700">+</span><span style="color: #0000BB">0.000001</span><span style="color: #007700">)*</span><span style="color: #0000BB">10</span><span style="color: #007700">)/</span><span style="color: #0000BB">10</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#125;<br />&nbsp;&nbsp;&nbsp;&nbsp;&#125;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">return&nbsp;</span><span style="color: #0000BB">$price</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">&#125;</span>
</code></div>
</p>
<p>
I am just wondering where the best place to put it would be? I am guessing just before the price gets formatted? 
<br />
Though you have to make sure that runs all the way through to the final billing.
<br />
Any tips/help would be appreciated.
<br />
Missing countries (Norway/Denmark/Sweden?), others, cultural norms?
</p>
<p>
Ultimately it could be a nice free community extension.
</p>]]></description>
      <dc:date>2010-10-07T03:55:33-08:00</dc:date>
    </item>

    <item>
      <title>how to add 2 or more products</title>
      <link>http://www.magentocommerce.com/boards/viewthread/207117/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/207117/#When:22:05:08Z</guid>
      <description><![CDATA[<p>Hi,
</p>
<p>
Can someone tell me how to add 2 or more products to the cart from the URL. I used the 
</p>
<p>
http://www.yourwebsite.com/checkout/cart/add?product=21566&qty;=1
</p>
<p>
I used this to add more products but this didn&#8217;t work. If someone knows how to do this please reply me as soon as possible.
</p>

<p>
Thanks,
<br />
Sugith Karunaratne
</p>]]></description>
      <dc:date>2010-10-05T22:05:08-08:00</dc:date>
    </item>

    <item>
      <title>IE Problem For Magento</title>
      <link>http://www.magentocommerce.com/boards/viewthread/207016/</link>
      <guid>http://www.magentocommerce.com/boards/viewthread/207016/#When:20:55:51Z</guid>
      <description><![CDATA[<p>Hi All,
</p>
<p>
           I have a magento project in which we are providing a link from the home page to checkout page. The link is working fine in all browsers except IE. How to solve this issue in IE. Please help .
</p>
<p>
           Waiting for replies.....
</p>]]></description>
      <dc:date>2010-10-04T20:55:51-08:00</dc:date>
    </item>

    
    </channel>
</rss>
