Currency live rate 404 error

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
I have set up currency GBP and Euro, GBP default, when I try to get live rate using Money Converter I get the following error

The remote server returned an error: (404) Not Found.

Steve
12 years ago
The Money Converter URL for exchange rate feeds seems to have changed from
http://themoneyconverter.com/{0}/rss.xml
to
http://themoneyconverter.com/rss-feed/{0}/rss.xml
where {0} is the currency code.

Fixed in change set (http://nopcommerce.codeplex.com/SourceControl/changeset/changes/205ab6378edc)
12 years ago
Thanks for your answer. But how can i change this url?
12 years ago
You need to change in this class, version 1.9:

namespace: NopSolutions.NopCommerce.BusinessLogic.Directory.ExchangeRates.McExchangeRateProvider

Method: GetCurrencyLiveRates

Line: string url = string.Format("http://themoneyconverter.com/{0}/rss.xml", exchangeRateCurrencyCode);
10 years ago
I have the same problem, Get live rates function doesn't work correctly, and it always show "The remote server returned an error: (404) Not Found. "

I followed the "205ab6378edc" to check this file: ..\src\nopCommerce_3.10_Source\Plugins\Nop.Plugin.ExchangeRate.McExchange\McExchangeRateProvider.cs, the url of the money converter is correct.

Is there anyone that can help me to solve this problem?

Attach the Exchange rate providers plugin's details

Group: Exchange rate providers
FriendlyName: Money converter exchange rate provider
SystemName: CurrencyExchange.MoneyConverter
Version: 1.05
SupportedVersions: 3.10
Author: nopCommerce team
DisplayOrder: 1
FileName: Nop.Plugin.ExchangeRate.McExchange.dll

Thank you very much.
10 years ago
I tested the "Get live rates" feature on 3.10 and it is working correctly. For whichever currency you have marked as the primary exchange rate currency, ensure that the currency code is valid. The server providing the live rates will return a 404 for incorrect or unsupported currency codes.

For example, rates for a valid currency code (USD):
http://themoneyconverter.com/rss-feed/usd/rss.xml

An invalid currency code (ZZZ) (server returns a 404):
http://themoneyconverter.com/rss-feed/zzz/rss.xml
10 years ago
I found out that Currency code wasn't correct, after edit it, the Get live rate works.

Thank you for your kindly help.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.