The default currency exchange rate updater that ships with Magento Community Edition is broken.
So, we need to replace the default Webservicex with another, working exchange rate updater.
Custom Module
File: app/etc/modules/TC_Currency.xml1
2
3
4
5
6
7
8
9
10
11
12
13<?xml version="1.0"?>
<config>
<modules>
<TC_Currency>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Adminhtml />
<Mage_Core />
</depends>
</TC_Currency>
</modules>
</config>
File: app/code/local/TC/Currency/etc/config.xml
1 | <?xml version="1.0"?> |
File: app/code/local/TC/Currency/Model/Yahoo.php
1 | <?php |
By default, the Webservicex model sits at a deeper level than this, we’re just keeping the structure simple.
Our module is finished. You’ll need to flush the caches once this has been uploaded to your Magento installation. The currency update service appears in the following select lists:
- Admin > System > Manage Currency > Rates
- Admin > System > Configuration > Currency Setup > Scheduled Import Settings > [Service]
[Note]: the http://quote.yahoo.com/d/quotes.csv?s==X&f=l1&e=.csv
is not work now, you need replace an api which can get the data you want !