Magento allowed a list of currencies

In my Mangeto backend, I do not see the allowed currencies beyond 3 that I have already created. Any ideas why?

+4
source share
3 answers

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

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

+4
source

Try Admin-> Configuration-> System-> Currency-> Installed Currencies. I bet that only 3 is selected.

+4
source

Open the file \app\code\core\Mage\Core\Model\Locale\Config.php and it should have all currencies ...

If something is deleted, try adding a new currency here and it will display it in admin.

If you need a complete list of currencies, download only this file from magento and replace them.

0
source

All Articles