Topic: importing csv, nothing imported, but no error

I was testing the CSV importer, which can be found on the FA site under modules.

Name of the Module:
"Import CSV Item file"

After (what seems) succesfully adding the module, I createx a txt file with the following lines:

id; description; category; units; mb_flag; currency; price;

21; Item21; MyCat; each; B; ; 300;

22; Item22; MyCat; each; B; ; 200;

23; Item23; MyCat; each; B; ; 300;

24; Item24; MyCat; each; B; ; 200;

25; Item25; MyCat; each; B; ; 300;

26; Item26; MyCat; each; B; ; 200;

(I have also tried without the first index rule)

After "importing" the file i get the next message (in green):
"0 item posts created, 0 item posts updated and 0 sales kit components added"

I also found out that no mather what file i select, i always get that line in green.

The problem is it's not working, and nothing is imported.
Because I don't get any errors, what further can i check to get this going?

Re: importing csv, nothing imported, but no error

Just a suggestion - did you ensure your category existed first?

Re: importing csv, nothing imported, but no error

No, but it should create it automatically if it doesn't.

Looking into the PHP code, I found this rule:

                // type, item_code, stock_id, description, category, units, qty, mb_flag, currency, price

So it also needs a Type and an item_code.

when i try this rule as CSV:
127; Item211; MyCat; each; B; ; 300;

It doesn't work.

But when I add a type and item_code like this:
ITEM; 100; 127; Item211; MyCat; each; B; ; 300;

it does work and import...
But if this was supposed to be added, then it would be described in the manual file which is included.

Re: importing csv, nothing imported, but no error

Where the line above was working, not it isn't anymore.

Can anyone test and see if it works for them?
Or give me a single line, i'm sure i'm forgetting just a little detail.