Topic: exchange-rates.org update

Since the end of January 2026 I have not been able to retrieve exchange rates from exchange-rates.org

It seems they've changed their URL.

This seems to fix it:

gl/includes/db/gl_db_rates.inc

line 168 change:

$filename = "/converter/{$curr_b}/{$curr_a}/1";

to:

$filename = "/converter/{$curr_b}-{$curr_a}";

Starting line 166 this section will be:

elseif ($provider == 'EXCHANGE-RATES.ORG')
    {
        //$filename = "/converter/{$curr_b}/{$curr_a}/1";
        $filename = "/converter/{$curr_b}-{$curr_a}";
        $site = "exchange-rates.org";
        $proto = 'https://';
        $contents=file_get_contents($proto.$site.$filename);
    }

Re: exchange-rates.org update

Nice catch.