magron导入的Cron工作

时间:2012-11-28 14:00:50

标签: magento import cron magmi

您好我正在尝试将产品导入我的magento。 我只是在临时工作,但现在我需要一个cron。

理想情况下,我想使用wget,因为这是最直接的。

所以我正在使用 wget“http://www.xxxxxx.com/magmi/web/magmi_run.php?profile=default&mode=xcreate&engine=magmi_productimportengine:Magmi_ProductImportEngine”-O / dev / null

但我遇到此错误消息的问题 发送HTTP请求,等待响应...在标头中读取错误(由对等方重置连接)。 来了 - 试了20次然后放弃了。

谁能告诉我问题可能是什么? 谢谢 理查德

3 个答案:

答案 0 :(得分:4)

我建议使用Magmi CLI Interface来处理cron作业运行(因为HTTP连接可能有超时等)。

我会在您的cron作业上运行以下命令:

php /path/to/magmi/cli/magmi.cli.php -mode=create

您可以在此处参考文档来定义自定义配置文件和模式: http://sourceforge.net/apps/mediawiki/magmi/index.php?title=Magmi_command_line

答案 1 :(得分:2)

我刚刚为Magento创建了一个扩展,该扩展允许您通过Magento的cron运行Magmi。这也许可以帮助您

在此处免费下载-> https://github.com/cameraki/Magento-Magmi-Via-Cron-Extension/

可以感觉到,如果链接脱机,我会在此处发布代码,所以就在这里。 ps,由于我使用github上的扩展名创建了自述文件,因此已在底部添加了此信息以帮助您入门。

app / code / local / Oli / Magmi / Cron.php

<?php
/**
 * Created by PhpStorm.
 * User: Oli
 * Date: 02/11/2017
 * Time: 17:05
 */

/* Change importer to the name of your Magmi directory */
require_once(Mage::getBaseDir() . "/importer/plugins/inc/magmi_datasource.php");
require_once(Mage::getBaseDir() . "/importer/integration/inc/productimport_datapump.php");

class Oli_Magmi_Cron {

    const LOG_DIRECTORY = "oli-extensions.log";

    public function runMagmi()
    {


        try {
            $directory = Mage::getBaseDir('var') . '/import/';
            $magmiCsvFile = $directory . 'magmiUploadReady.csv';

            if(!file_exists($magmiCsvFile)) {
                throw new Exception('CSV file for Magmi to upload cant be found.');
            }
        } catch (Exception $e) {
            $message = date('F jS (l) Y h:i:s A') . " === MAGMI (" . __METHOD__ . ") === Could not load todays magmiupload file. It must not have run today. This script will now stop: ".$e->getMessage();
            Mage::log($message, null, self::LOG_DIRECTORY);
            die();
        }

        $productArray = $this->csvToArray($magmiCsvFile);

        $indexes = 'catalog_product_attribute,catalog_product_price,cataloginventory_stock';
        $mode = 'update';
        $profile = 'cronUpdatePrices';
        try {
            $this->import($productArray, $mode, $profile);
        } catch (Exception $e) {
            $message = date('F jS (l) Y h:i:s A') . " === MAGMI (" . __METHOD__ . ") === There was an issue importing the products: ".$e->getMessage();
            Mage::log($message, null, self::LOG_DIRECTORY);
        }
        try {
            $this->reindex($indexes);
        } catch (Exception $e) {
            $message = date('F jS (l) Y h:i:s A') . " === MAGMI (" . __METHOD__ . ") === There is a problem with the reindex function: ".$e->getMessage();
            Mage::log($message, null, self::LOG_DIRECTORY);
        }
        /* log that it actually ran */
        $message = date('F jS (l) Y h:i:s A') . " === MAGMI (" . __METHOD__ . ") === Has finished running";
        Mage::log($message, null, self::LOG_DIRECTORY);

    }



    public function csvToArray($filename)
    {
        $productArray = array_map('str_getcsv', file($filename));
        array_shift($productArray);
        $newProductArray = array();
        /* Customise the item array index's to match the file you are importing */
        foreach ($productArray as $key => $item) {
            $newProductArray[$key]['sku'] = $item[0];
            $newProductArray[$key]['buy_price'] = $item[1];
            $newProductArray[$key]['price'] = $item[2];
            $newProductArray[$key]['store'] = $item[3];
            $newProductArray[$key]['price_updated'] = $item[4];
            $newProductArray[$key]['amazon_euros'] = $item[5];
            $newProductArray[$key]['amazon_dollars'] = $item[6];
            $newProductArray[$key]['qty'] = $item[7];
            $newProductArray[$key]['is_in_stock'] = $item[8];

        }
        return $newProductArray;
    }



    private function import($items, $mode, $profile)
    {
        if (count($items) > 0) {
            try{

                $dp = new Magmi_ProductImport_DataPump();
                $dp->beginImportSession($profile, $mode);
                foreach ($items as $item) {
                    $dp->ingest($item);
                }
                $dp->endImportSession();

            } catch (Exception $e) {
                $message = date('F jS (l) Y h:i:s A') . " === MAGMI (" . __METHOD__ . ") === Seems to be an issue with the import function: ".$e->getMessage();
                Mage::log($message, null, self::LOG_DIRECTORY);
            }
        }
    }

    private function reindex($string)
    {
        /** @var $indexer Mage_Index_Model_Indexer */
        $indexer = Mage::getModel('index/indexer');

        $processes = array();

        if ($string == 'all') {
            $processes = $indexer->getProcessesCollection();
        } else {
            $codes = explode(',', $string);
            foreach ($codes as $code) {
                $process = $indexer->getProcessByCode(trim($code));
                if ($process) {
                    $processes[] = $process;
                }
            }
        }

        /** @var $process Mage_Index_Model_Process */
        foreach ($processes as $process) {
            $process->reindexEverything();
        }
    }
}

app / code / local / Oli / Magmi / etc / config.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Oli_Magmi>
            <version>0.0.1</version>
        </Oli_Magmi>
    </modules>
    <global>
        <models>
            <oli_magmi>
                <class>Oli_Magmi</class>
            </oli_magmi>
        </models>
    </global>
    <crontab>
        <jobs>
            <update_prices_via_magmi>
                <schedule>
                    <cron_expr>30 3 * * 2</cron_expr>
                </schedule>
                <run>
                    <model>oli_magmi/cron::runMagmi</model>
                </run>
            </update_prices_via_magmi>
        </jobs>
    </crontab>
</config>

app / etc / modules / Oli_Magmi.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Oli_Magmi>
            <active>true</active>
            <codePool>local</codePool>
        </Oli_Magmi>
    </modules>
</config>

通过Cron扩展名的Magento Magmi

Magento扩展程序可通过CSV文件通过Magento的cron运行Magmi

注意:仅当您具有Magmi(Magento Mass Importer)时才有效

这是做什么用的?

Magmi允许您批量快速更改产品。它之所以快速,是因为它可以直接导入数据库。因此,请谨慎使用Magmi并在导入之前备份数据库。

此扩展程序可让您使用Magento的cron自动运行Magmi。非常适合每天自动更新产品价格,或每周一次批量更改库存水平。

我可以直接使用它吗?

您需要确保服务器上装有Magmi。然后:

  • 在app / code / local / Oli / Magmi / Cron.php的第10和11行上,更改 “ / importer / ....”到您的Magmi安装位置。例如, “ / magmi /...."
  • 在app / code / local / Oli / Magmi / Cron.php的第23行上更改$ magmiCsvFil 是您要导入的CVS文件的地址。一旦您 已更改此设置,请更改第66行周围的线以映射列 从CSV文件转换为数组。的关键 $ newProductArray [$ key] ['...']应该与您所使用的属性匹配 变化。例如,如果您想更新库存水平,则可以使用 $ newProductArray [$ key] ['qty']因为'qty'是Magento的股票 级别。

自定义

  • 在app / code / local / Oli / Magmi / Cron.php的第36行上设置 您要重新编制索引的Magento设置。我添加的是: catalog_product_attribute catalog_product_price cataloginventory_stock您可能想要添加更多或更改它们。
  • 在app / code / local / Oli / Magmi / Cron.php的第37行,这是Magmi模式。 “创建”创建和更新项目,“仅更新”更新,“ xcreate” 仅创建。
  • 在app / code / local / Oli / Magmi / Cron.php的第38行将其更改为匹配 您在Magmi中创建的配置文件的名称。您可以使用 如果要使用默认配置文件,则为“默认”,但这是 值得一看,因为您要确保“即时”索引是 已关闭,因为此扩展重新索引您的magento商店位于 结束。如果您使用具有动态索引功能的配置文件,它将 在每个产品之后重新索引,不占用大量服务器负载 原因。

更多信息 您可以在此处找到有关Magmi DataDump API的更多信息-> http://wiki.magmi.org/index.php/Magmi_Datapump_API

答案 2 :(得分:0)

在某些情况下,我不得不从Magento cron工作中运行Magmi,所以我有这样的事情:

/**
 * Includes Magmi files
 */
protected function _includeMagmi()
{
    $magentoBaseDir = Mage::getBaseDir();
    require_once($magentoBaseDir . DS . 'magmi' . DS . 'inc' . DS . 'magmi_defs.php');
    require_once($magentoBaseDir . DS . 'magmi' . DS . 'integration' . DS . 'inc' . DS . 'magmi_datapump.php');
}

/**
 * Runs Magmi to update/create for specified data
 *
 * @param string $profile Magmi import profile (@see magmi/conf/
 * @param string $mode
 * @param array $data
 */
protected function _runMagmiImport($profile, $mode, array $data)
{
    $this->_includeMagmi();

    $logger = Mage::getModel('mario/magmi_logger');

    /** @var Magmi_ProductImport_DataPump $dataPump */
    $dataPump = Magmi_DataPumpFactory::getDataPumpInstance('productimport');
    $dataPump->beginImportSession($profile, $mode, $logger);
    foreach ($data as $update) {
        $dataPump->ingest($update);
    }
    $dataPump->endImportSession();

    return $logger;
}