我已经在直播服务器上安装了magento 1.4,现在我想创建我的在线多店.can任何人告诉我我如何做it..to使我的多店在server....thanks上生活
发布于 2010-07-14 14:11:53
我发现这两个链接对于建立多家商店非常有用:
http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/
http://blog.baobaz.com/en/blog/setting-up-magento-with-multiple-websites-or-stores/
发布于 2010-07-11 18:29:12
首先在管理/管理商店中创建网站/商店/商店视图结构,然后为每个网站服务器(或者如果网站在主url下,如www.test.com/ website1 )在服务器上创建目录website1,复制.htaccess和index.php文件。在index.php更改最后一行Mage::run('WEBSITE1CODE','website');
发布于 2010-12-06 13:47:20
Magento逐步转到管理面板
添加根类别转到目录->管理类别
单击左侧面板中的添加根目录类别
Ente Name as Theater Root Is Active -Yes URL键-theater_root In Display Setting面板中的Ente Name as Theater Root Is Active-Yes URL键-theater_root
Anchor是(要在菜单中显示类别)单击保存类别按钮
添加新网站/商店/商店视图转到系统->管理商店
单击创建网站
名称大区-1代码theater_1单击保存网站
单击创建存储
从网站名称- store1_theater_1旁边的下拉列表中选择Theater-1,选择根类别作为Theater Root,单击顶部的Save Store按钮。
单击创建商店视图
从商店名称旁边的下拉列表中选择商店名称-English商店查看代码-eng_store1_theater_1状态-Enabled单击保存商店视图立即在www/Mage内创建名为theater_1的文件夹要将index.php和.htaccess复制到index.php中的新文件夹中Change $compilerConfig =‘/includes/config.php’和$compilerConfig = '../includes/config.php';和$mageFilename = '/app/Mage.php';$mageFilename = '../app/Mage.php';和Mage::run($mageRunCode,$mageRunType);to Mage::run('theater_1','website');在.htaccess中
RewriteBase /magento/
转到
RewriteBase /magento/theater_1/
进入系统->配置
选择Theater-1 \f25 Current Configuration Scope -1\f6(当前配置范围内的剧院-1),转到左侧面板上General (常规)下的Web选项卡
将基本URL更改为/theater_1 ://您的域.com / magento /theater_1/对于不安全和安全,请单击保存配置按钮。现在,新网站的新网址是// yourdomain .com /magento /theater_1 /
https://stackoverflow.com/questions/3218052
复制相似问题