Magento 1.9 Dataflow Import – Error ‘Skipping Import Row, Required Field “Website” Not Defined’

customerimportexportmagento-1.9

getting this error "Skipping import row, required field "website" is not defined" when importing customer list in dataflow import method

getting this error Skipping import row, required field "website" is not defined when importing customer list in dataflow import method

Best Answer

This problem can be due to many reasons:

  • Empty column value for few rows
  • If delimiter symbol is incorrect, your file data won’t be parsed properly and you might have broken file with all information in one column.
  • File header names should be the same as field names in database. This is required by Magento Admin, so in case you have ‘Product Title” column instead of ‘Name’ needed, you have to rename it, since it might not be recognized in the process of Magento import. Please, pay attention that some of database fields names have underscore and some don’t. For instance: _attribute_set VS sku.
  • Your import file should be saved with correct coding format in order for the data to be correctly recognized. UTF-8 Without BOM can be set in any spreadsheet program you are using to open files.

Update: Make sure the column names do not start with an underscore in your import file.

An example would be the type column – which should be “type” not “_type”.

Same for other column headers in the import file, make sure they do not start with an underscore

Please let me know if the problem still persists.

Related Topic