Magento 允许的货币列表
在我的 Magento 后端中,除了我已经设置的 3 种之外,我没有看到任何允许的货币。有什么想法吗?
In my Magento backend, I am not seeing any allowed currencies beyond the 3 I have already set up. Any ideas why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可能的货币列表最终来自于
/lib/Zend/Locale/Data
中的许多 XML 文件,特别是root.xml
总是被参考。检查此文件夹是否存在并包含大约 400 个或更多此类文件。另外,检查它们对您服务器上的网络用户是否可读。文件
\app\code\core\Mage\Core\Model\Locale\Config.php
可能仅在安装或设置期间用于默认值。The list of possible currencies ultimately comes from the many XML files in
/lib/Zend/Locale/Data
, in particularroot.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.尝试管理->配置->系统->货币->安装的货币。
我打赌只有 3 个被选中。
Try Admin->Configuration->System->Currency->Installed Currencies.
I bet only the 3 are selected.
打开文件
\app\code\core\Mage\Core\Model\Locale\Config.php
它应该包含所有货币...如果删除了任何内容,请尝试在此处添加新货币将在管理中显示它。
如果您需要完整的货币列表,只需从 magento 下载此文件并替换它们。
Open the file
\app\code\core\Mage\Core\Model\Locale\Config.php
and it should have all the currencies ...If anything is deleted try adding a new currency here and it will display it in the admin.
If you need a complete currency list , download only this file from magento and replace them.