类别在没有产品的情况下进口Magento

时间:2013-02-05 06:33:51

标签: magento

我想首先导入与类别相关的数据,然后导入产品。但是,当我要上传只有类别csv文件时,它显示错误“sku not found”,当我尝试导入类别和产品csv的合并数据时,它正在导入产品但未显示任何类别,并且在显示0记录的产品中并在导入中显示上传成功消息。任何人都可以帮助我。

2 个答案:

答案 0 :(得分:0)

您必须单独导入类别。

将所有信息放在csv中,然后通过这样的自定义脚本:

(在根Magento文件夹中创建一个脚本目录,并在此位置创建一个category.php文件。)

然后您可以转到yoursite.com/script/category.php

来导入您的类别

你可以在这里找到例子:

http://www.magentoworks.net/import-bulk-category-in-magento

此致

答案 1 :(得分:0)

请参阅我的教程,使用magento脚本创建类别和子类别。

http://www.pearlbells.co.uk/import-the-categories-programmatically/

foreach ($arrResult as $import_category) {
    try {
        if (strtolower($import_category[16]) == 'true') {
            $enabled = 1;
        } else {
            $enabled = 0;
        }

        if ($import_category[1] == 0) {
            $parentId = '2';
        }
        else {
            $parentId = $list[$import_category[1]];
        }

        $category = Mage::getModel('catalog/category');
        $category->setName($import_category[2]);
        $category->setMetaTitle($import_category[2]);
        $category->setIncludeInMenu(1);
        $category->setUrlKey($import_category[10]);
        $category->setDescription(strip_tags($import_category[11]));
        $category->setMetaDescription($import_category[12]);
        $category->setMetaKeywords($import_category[13]);
        $category->setIsActive($enabled);
        $category->setDisplayMode('PRODUCTS');
        $category->setIsAnchor(1); //for active anchor
        $category->setStoreId(Mage::app()->getStore()->getId());
        $parentCategory = Mage::getModel('catalog/category')->load($parentId);
        $category->setPath($parentCategory->getPath());
        $category->setCustomUseParentSettings(true);
        $category->setImage($import_category[6]);
        $category->save();
        $list[$import_category[0]] = $category->getId();
        echo 'Category ' . $category->getName() . ' ' . $category->getId() . ' imported successfully' . PHP_EOL;
    } catch (Exception $e) {
        echo 'Something failed for category ' . $import_category[2] . PHP_EOL;
        print_r($e);
    }
}