Univention Appliance : Stuck on Euro Currency

I have very recently downloaded and set up the Uninvention Virtual machine installaition of SuiteCRM. I am running the following build; Version 7.11.3** Sugar Version 6.5.25 (Build 344).

I have run into a challenge where the only available currency is the Euro. Having done a lot of looking around, all of the advice I seem to find is alluding to there being a currencies panel, that doesn’t appear to exist at all.

Are there limitations to the Univention Virtual appliance?

I’m unfortunately not familiar directly with the Univention Virtual Device, however, the first place that I’d look is in the config.php file that stipulates a range of currencies. I’m going to cut and paste the whole of the currency bit from one of my systems, so sorry for the length:
---------------------8X-----------------
‘default_currencies’ =>
array (
‘AUD’ =>
array (
‘name’ => ‘Australian Dollars’,
‘iso4217’ => ‘AUD’,
‘symbol’ => ‘$’,
),
‘BRL’ =>
array (
‘name’ => ‘Brazilian Reais’,
‘iso4217’ => ‘BRL’,
‘symbol’ => ‘R$’,
),
‘GBP’ =>
array (
‘name’ => ‘British Pounds’,
‘iso4217’ => ‘GBP’,
‘symbol’ => ‘£’,
),
‘CAD’ =>
array (
‘name’ => ‘Canadian Dollars’,
‘iso4217’ => ‘CAD’,
‘symbol’ => ‘$’,
),
‘CNY’ =>
array (
‘name’ => ‘Chinese Yuan’,
‘iso4217’ => ‘CNY’,
‘symbol’ => ‘¥’,
),
‘EUR’ =>
array (
‘name’ => ‘Euro’,
‘iso4217’ => ‘EUR’,
‘symbol’ => ‘€’,
),
‘HKD’ =>
array (
‘name’ => ‘Hong Kong Dollars’,
‘iso4217’ => ‘HKD’,
‘symbol’ => ‘$’,
),
‘INR’ =>
array (
‘name’ => ‘Indian Rupees’,
‘iso4217’ => ‘INR’,
‘symbol’ => ‘₨’,
),
‘KRW’ =>
array (
‘name’ => ‘Korean Won’,
‘iso4217’ => ‘KRW’,
‘symbol’ => ‘₩’,
),
‘YEN’ =>
array (
‘name’ => ‘Japanese Yen’,
‘iso4217’ => ‘JPY’,
‘symbol’ => ‘¥’,
),
‘MXN’ =>
array (
‘name’ => ‘Mexican Pesos’,
‘iso4217’ => ‘MXN’,
‘symbol’ => ‘$’,
),
‘SGD’ =>
array (
‘name’ => ‘Singaporean Dollars’,
‘iso4217’ => ‘SGD’,
‘symbol’ => ‘$’,
),
‘CHF’ =>
array (
‘name’ => ‘Swiss Franc’,
‘iso4217’ => ‘CHF’,
‘symbol’ => ‘SFr.’,
),
‘THB’ =>
array (
‘name’ => ‘Thai Baht’,
‘iso4217’ => ‘THB’,
‘symbol’ => ‘฿’,
),
‘USD’ =>
array (
‘name’ => ‘US Dollars’,
‘iso4217’ => ‘USD’,
‘symbol’ => ‘$’,
),
),
‘default_currency_iso4217’ => ‘GBP’,
‘default_currency_name’ => ‘GB Pounds’,
‘default_currency_significant_digits’ => 2,
‘default_currency_symbol’ => ‘£’,
---------------------8X-----------------
Check that those entries exist, and if not we can start looking elsewhere.

As an aside, if you want to add extra currencies - e.g. bitcoin, other cryptocurrencies, labour hours, cowrie shells etc, then this would also be possible.

You can navigate to Admin -> Currencies for adding more currencies.