magento多语言商店

时间:2012-02-16 16:45:18

标签: magento-1.5 magento

我刚安装了5种不同语言的magento。我创建了4种新语言的商店概览。现在问题是目录和产品仅以英文显示。阿拉伯语,俄语和其他语言视图根本没有产品和目录。在manage Catalog中,选择了ALL STORE VIEWS。任何人都可以指导我做我想做的事吗?

1 个答案:

答案 0 :(得分:0)

您需要使用配置范围。这是Magento在开始时的一个错误。您应该转到产品配置并选择正确的范围 enter image description here

要在客户中配置不同的域到不同的商店与客户之间的差异,您需要在sistem-> configuration-> web in中配置 enter image description here

以后需要将正确的虚拟商店视图加载到正确的域。您可以在以下位置进行配置:

  <VirtualHost *:80>
   DocumentRoot "C:\Program Files\Zend\Apache2/htdocs/local.pruebas.com"
   ServerName local.pruebas.es
   DirectoryIndex index.html index.php index.htm
   SetEnv MAGE_IS_DEVELOPER_MODE "1"
   SetEnv MAGE_RUN_CODE "store_es"
   SetEnv MAGE_RUN_TYPE "store" 
   <Directory "C:\Program Files\Zend\Apache2/htdocs/local.pruebas.com">
     AllowOverride All
      Options All
      Order allow,deny
      Allow from all
   </Directory>
</VirtualHost>
希望能帮到你!!