Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Magento allowed currencies list

Tags:

magento

In my Mangeto backend, I am not seeing any allowed currencies beyond the 3 I have already set up. Any ideas why?

like image 891
lee Avatar asked Dec 27 '22 20:12

lee


2 Answers

The list of possible currencies ultimately comes from the many XML files in /lib/Zend/Locale/Data, in particular root.xml is always consulted. Check this folder exists and contains about 400 or more of these files. Also, check they are all readable to web user on your server.

The file \app\code\core\Mage\Core\Model\Locale\Config.php is probably only used for default values during installation or setup.

like image 59
clockworkgeek Avatar answered Jan 12 '23 20:01

clockworkgeek


Try Admin->Configuration->System->Currency->Installed Currencies. I bet only the 3 are selected.

like image 22
Relu Tatar Avatar answered Jan 12 '23 19:01

Relu Tatar