0

We now have two magento applications. One(APP A) has category and product data which will be used in another magento application(APP B).

Because APP B has lots of new settings such as keywords, meta descriptions, etc, we can not directly use APP A's database but only category and product tables.

So is there a method to import category and product database of APP A to APP B? Thank you very much!

4

2 回答 2

0

我是这样做的。我正在根目录下的测试文件夹中建立一个新商店,同时生产有销售、新产品/客户以及库存变化。

您还需要获取所有 mage_cataloginventory_stock 表:

mage_cataloginventory_stock
mage_cataloginventory_stock_item
mage_cataloginventory_stock_status
mage_cataloginventory_stock_idx
mage_cataloginventory_stock_tmp
  • 禁用编译器和缓存,清除缓存

除了上面答案中列出的正确的表之外,在删除我的表时(在删除时禁用外键检查,截断在 phpmyadmin 中不起作用),这里是做什么

  • 导入数据
  • 重新索引。

媒体(图像)与安装 URL 有关,因此,我将根目录中的生产商店移动到子目录,一切都很好。

首先返回目标数据库。

于 2014-12-18T03:48:14.687 回答
0

您需要导出和导入所有类别和产品的数据库表

catalog_category_entity 

catalog_category_entity_datetime 

catalog_category_entity_decimal 

catalog_category_entity_int 

catalog_category_entity_text 

catalog_category_entity_varchar 

catalog_category_flat


catalog_product_entity 

catalog_product_entity_datetime 

catalog_product_entity_decimal 

catalog_product_entity_gallery 

catalog_product_entity_int 

catalog_product_entity_media_gallery 

catalog_product_entity_media_gallery_value 

catalog_product_entity_text 

catalog_product_entity_tier_price 

catalog_product_entity_varchar 

catalog_product_link 

catalog_product_link_attribute 

catalog_product_link_attribute_decimal 

catalog_product_link_attribute_int 

catalog_product_link_attribute_varchar 

catalog_product_link_type 

catalog_product_super_attribute 

catalog_product_super_attribute_label 

catalog_product_super_attribute_pricing 

catalog_product_super_link 

catalog_product_website
于 2012-04-23T11:39:30.633 回答