Skip to main content
EcommerceMagentoOpen Source DevelopmentWeb Development

Import Customer Database to Magento

By February 21, 2013November 23rd, 2019No Comments

I have been trying to migrate the users database from one open source CMS to Magento. I have been having a hard time doing that, so thoughts it would be good to share.

dsourc-magento-customer-import ( CSV file format to import data in magento ).

Doing so, I found that below are the fields which is required by Magento.

[list icon=”arrow-2″]
  • email
  • _website
  • group_id
  • _store
  • firstname
  • lastname
  • password
  • _address_city
  • _address_country_id
  • _address_firstname
  • _address_lastname
  • _address_postcode
  • _address_street
  • _address_telephone
  • _address_default_billing_
  • _address_default_shipping_
[/list]

Please feel free to share and comment on this.