|
First off, I’ll repeat the call for a list of required fields, but I believe I’m past that part of it. Basically I have a CSV file and I’m doing an import of a number of fields, and it seems to run fine, but nothing is in the system, front or back. There are 600 items in my file, here is the feedback:
Starting profile execution, please wait…
Starting Varien_Convert_Adapter_Http :: load
Starting Varien_Convert_Parser_Csv :: parse
Starting Varien_Convert_Mapper_Column :: map
Starting Mage_Catalog_Model_Convert_Parser_Product :: parse
Starting Mage_Catalog_Model_Convert_Adapter_Product :: save
Records for “base” store found
Saved 86 record(s)
Finished profile execution.
I’ve attached the data file - the XML looks like this (but I used the wizard, I didn’t hand code this):
<action type="varien/convert_adapter_http" method="load">
</action><action type="varien/convert_parser_csv" method="parse">
<var name="delimiter"><![CDATA[,]]></var>
<var name="enclose"><![CDATA["]]></var>
<var name="fieldnames">true</var>
</action>
<action type="varien/convert_mapper_column" method="map">
<var name="product_name"><![CDATA[name]]></var>
<var name="product_short_description"><![CDATA[short_description]]></var>
<var name="product_long_description “><![CDATA[description]]></var>
<var name="image_url “><![CDATA[small_image]]></var>
<var name="item_no “><![CDATA[entity_id]]></var>
<var name="sku_price “><![CDATA[price]]></var>
<var name="manufacturer_name “><![CDATA[manufacturer]]></var>
<var name="product_url “><![CDATA[url_path]]></var>
<var name="category “><![CDATA[type]]></var>
<var name="product_id"><![CDATA[sku]]></var>
</action>
<action type="catalog/convert_parser_product" method="parse">
<var name="store"><![CDATA[1]]></var>
</action>
<action type="catalog/convert_adapter_product" method="save">
<var name="store"><![CDATA[1]]></var>
</action>
Now I’m doing this with a fresh install of the latest Magento and did virtually no configuration inside it.
|