Skip to content

Instantly share code, notes, and snippets.

@dhargitai
dhargitai / Magento Customer Importer
Last active May 5, 2016 12:23
Import customers into Magento from command line using a CSV file
<?php
define('BUNCH_SIZE_TO_INSERT', 20);
$magentoRootPath = './public';
require_once $magentoRootPath . '/shell/abstract.php';
class CustomerImportFromCsv extends Mage_Shell_Abstract
{
protected $_headerArray = array();