Your shopping cart is empty. Browse our Store

Magento

Open Source eCommerce Evolved

Magento Forum

   
imported but have to open and save each product
 
jeanlucb
Member
 
Total Posts:  50
Joined:  2008-02-10
 

Hi,

I have successfully added 171 Simple Product.

I see them all enabled. I created a Configurable product, I can select each option, add the value for each, but on the Frontend I have only “Choose an option...” but there is nothing in it…

I tried to open and save the Simple Product and it works… i can now see the option on the frontpage…

is there an option or something that I have to import to let me import products without open and save each product ?

thanks,

Jean-Luc B.

 
Magento Community Magento Community
Magento Community
Magento Community
 
jeanlucb
Member
 
Total Posts:  50
Joined:  2008-02-10
 

here is my first 2 lines in my import csv:

store,attribute_set,type,entity_id,sku,category_ids,status,tax_class_id,visibility,description,short_description,delay,overallsize,note,meta_keyword,custom_layout_update,weight,price,minimal_price,name,url_key,gift_message_available,meta_title,meta_description,custom_design,image,small_image,thumbnail,qty,min_qty,use_config_min_qty,is_qty_decimal,backorders,use_config_backorders,min_sale_qty,use_config_min_sale_qty,max_sale_qty,use_config_max_sale_qty,is_in_stock,notify_stock_qty,use_config_notify_stock_qty,plain_color,quantity_per_box,dimensions,special_price,special_from_date,special_to_date,imprint_size,cartboard,colors_side,print_size,resolution,metal_logo,metal_foil_colour,cafe_corner,cafe_metal,cafe_size

default,Cafe Series,Simple Product,,cs10001_0,13,Enabled,Taxable Goods,Nowhere,A low price doesnt mean an inferior product with this line of inexpensive menu covers.<br><br>Versatile clear covers with stitched vinyl trim these handcrafted covers are perfect for printed single sheet inserts.<br><br>We use industrial strength nylon thread with a tight lockstitch to prevent unravelingOur clear plastic is the finest quality available and heat resistantRound Brass Silver or Black corners complete this economical yet elegant line of covers.,Versatile clear covers with stitched vinyl trim these handcrafted covers are perfect for printed single sheet inserts.,,,,,,1.0000,2.3200,,2 View Single Panel-0,2-view-single-panel-0,Use config,,,,no_selection,no_selection,no_selection,9999.0000,0.0000,1,0,0,1,1.0000,1,0.0000,1,1,,1,,,,,,,,,,,,,,Black,French Calf StyleCraft Brown,8.50 x 14.00

 
Magento Community Magento Community
Magento Community
Magento Community
 
srinigenie
Sr. Member
 
Avatar
Total Posts:  280
Joined:  2008-02-04
 

Am facing the same issue and am discussing this in
http://www.magentocommerce.com/boards/viewthread/4828/

Still looking for answers!

 
Magento Community Magento Community
Magento Community
Magento Community
 
cibernoid
Sr. Member
 
Avatar
Total Posts:  122
Joined:  2008-02-12
 

Me too Same problem is also discussed here:

http://www.magentocommerce.com/boards/viewthread/4828/

 
Magento Community Magento Community
Magento Community
Magento Community
 
andyellis_2000
Member
 
Total Posts:  41
Joined:  2008-02-15
 

I tried this a couple times and had no problem with having to save the products, in fact they showed on the front end, BUT the images did not appear and had to open each product and reupload the images, to the same location, overwriting where they already were but not showing, then they showed.

 
Magento Community Magento Community
Magento Community
Magento Community
 
NickL
Sr. Member
 
Avatar
Total Posts:  173
Joined:  2007-08-31
 

@Andyellis

Thats the EXACT same problem I had. Imported ok via XML sheet, but the products were missing images. I’m having to open up each product and re-save it with the image. A long process when you’ve got 150+ items.

there should be someway to streamline this, I wonder whats keeping the image paths from being inserted into the database during import. The other attributes seem to import ok. Odd. I guess i’ll take a look at the product table maybe that’ll turn up some results… needle in haystack though.

 Signature 

nickL ~ i build stuff
Twitter me: twitter.com/ibuildstuff
How did I go magento? : http://www.kanemarie.com

 
Magento Community Magento Community
Magento Community
Magento Community
 
andyellis_2000
Member
 
Total Posts:  41
Joined:  2008-02-15
 
NickL - 25 March 2008 07:58 AM

@Andyellis

Thats the EXACT same problem I had. Imported ok via XML sheet, but the products were missing images. I’m having to open up each product and re-save it with the image. A long process when you’ve got 150+ items.

there should be someway to streamline this, I wonder whats keeping the image paths from being inserted into the database during import. The other attributes seem to import ok. Odd. I guess i’ll take a look at the product table maybe that’ll turn up some results… needle in haystack though.

Yes I think its a most peculiar problem. I hope you come up with some answer. I am not mysql savvy, so can’t be much help.  Do you know anyting about my other post about subcats etc? How does that work, have you tried that?
Link here
in case that link doesn’t work its
http://www.magentocommerce.com/boards/viewthread/4857/

 
Magento Community Magento Community
Magento Community
Magento Community
 
jeanlucb
Member
 
Total Posts:  50
Joined:  2008-02-10
 

this solve my problem !

in file Mage/Catalog/Model/Convert/Adapter/Product.php change in line 266 before: $product->save(); insert

if (isset($row[’row’][’store’])) {
$storeId = Mage::app()->getStore($row[’row’][’store’])->getId();
} else {
$storeId = Mage::registry(’current_convert_profile’)->getStoreId();
}
if ($storeId) {
$product->setWebsiteIds(array($storeId));
}

PS: You have to delete and re-import all the product, otherwise you have to do those by hand !

It works !

 
Magento Community Magento Community
Magento Community
Magento Community
 
NickL
Sr. Member
 
Avatar
Total Posts:  173
Joined:  2007-08-31
 

@jeanlucb

I havne’t tried this method yet, I will in a few, but does this allow images to be inserted into the imported spreadsheets?

 Signature 

nickL ~ i build stuff
Twitter me: twitter.com/ibuildstuff
How did I go magento? : http://www.kanemarie.com

 
Magento Community Magento Community
Magento Community
Magento Community
 
jeanlucb
Member
 
Total Posts:  50
Joined:  2008-02-10
 

NickL,

No. This is the fix to save the product in the right Store…

Anyway, I don’t need any pictures for the products I am importing since I create manually a configurable product for each csv…

I know there is a bug with the Dataflow and pictures, but i’m sure they’ll fix it in the next release later this week.

cya,

Jean-Luc B.

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top
 
© Copyright 2008 Varien. Magento is a trademark of Irubin Consulting Inc. DBA Varien