Error importing my CSV (1000+ products) with magento 1.9

1.1k views Asked by At

Anybody got an explanation as to why this is happening.... Im trying to import my products from a CSV file. but even though it states the import was successful it doesn't actually import anything

I go to import my products (CSV) System > Import/Export > Import

upload my csv and get

Import successfully done.

BUT! it doesnt actually import ANY products......

The CSV from my DropBox Account.

https://www.dropbox.com/s/n8adpsz7be9hhma/products.csv?dl=0

1

There are 1 answers

3
Supravat Mondal On BEST ANSWER

I also face the same problem, Its issues for CHARACTER SET of your database. You can only import utf8 CHARECTER SET, but right now your product.csv file is character set ASCII. The ASCII character is not supports, and magento does not check character set of the csv file.

So, Final solution is need to change character set of your csv file.

  1. Open the product.csv in simple text editor(note++, notepad etc)
  2. Save as a new file with charecter set utf-8.
  3. Import product.csv.

I hope that my help may be help for you.