Quote Originally Posted by WebweaverD View Post
Please all ignore the above - My problem was not naming the files correctly, e.g. the files you import have to be called Attrib-Basic-EP_whateveryouwant.csv. This is clearly written in the readme. So we can put this one down to user error. 10 mins reading the readme or several hours guessing. I'll choose the first option in future. Thanks all for your help.
WebweavreD,

Yup. Gotta name the file correctly. So, what you were seeing was the core import code processing your attribute file as if it were standard import. Since NONE of the other columns other than the product id are read, it would say it processed the file basically doing nothing.

In my next patch, I'll put something ON SCREEN about this, or some kind on help. We'll see.

Also, do not put SPACES between your attribute options/names: "red,blue,green" is okay but: "red, blue, green" is not. I do not remember if I did a trim on those - I may not have going for performance.

Best to test and see.

Also, for your one's sanity, best to run your first import with a single line to verify your have everything done correctly. You DO NOT have to first create your attribute name/options.

ONE THING TO NOTE (also in the read me): Zencart will let you create to different attributes: COLOR and COLOR which will have different ID's, you CANNOT do this with EP4, each attribute name needs to be unique within it's defined set:

OFFSET_COLORS {cyan,magenta,yellow,black}
RGB_COLORS {red,green,blue}

One last thing: there is no delete function for attributes. If you need to delete a color option from a product, you have to do it from within the admin.

-chadd