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.
I also face the same problem, Its issues for
CHARACTER SET
of your database. You can only importutf8
CHARECTER SET, but right now yourproduct.csv
file ischaracter set ASCII
. TheASCII
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.product.csv
in simple text editor(note++, notepad etc)Save as
a new file withcharecter set utf-8
.product.csv
.I hope that my help may be help for you.