Update Magento products with multiple images -


i'm developing magento store , imported products, in these products there more 1 image , when imported products 1 came with, need update products images left, knows how in quick mode?

thanks!

step 1: export products

  1. before begin, make sure changes product data have been saved.
  2. on admin menu, select system > import/export > dataflow - profiles.
  3. in list of profiles, select export products.
  4. in panel on left, click run profile.
  5. to begin process, click run profile in popup button.
  6. wait few moments profile begin execution. length of time takes complete process depends on size of database. not close window.
  7. when process complete,you can find exported csv file in following location on server:

    [magento-install-dir]/var/export/export_all_products.csv

the csv data appears in spreadsheet rows of product records organized columns of attributes, attribute code in header of each column.

step 2: copy product images server

the csv file contains path each product image, actual image files must uploaded server. make images available import, place them in media/import directory.

[magento-install-dir]/media/import use sftp utility copy product images want import media/import folder.

step 3: edit csv file

edit image, small_image, thumbnail columns need.

enter image description here

magento creates directory structure of product image files organized alphabetically. can see path before each image file name in csv data. however, when import images, must never include path before file name. thing have enter forward slash before file name of each image want import. magento takes care of rest. example, need add 3 image files uploaded media/import folder.

/hdb005_hotp_600.jpg /hdb005_marm /hdb005_salm_600.jpg 

step 4: import products

  1. on admin menu, select system > import/export > dataflow - profiles.
  2. in list of profiles, select import products. general-purpose profile can used import or update number or product records.
  3. in panel on left, select upload file.
  4. because we’re uploading 1 file, click browse button file 1. then, find file on computer , click select it. path file appears in input box.
  5. click save , continue edit button.
  6. in panel on left, select run profile.
  7. select csv file edited. if there several files in list, make sure select right one. then, click run profile in popup button.
  8. wait few moments profile begin import process. not close window or interrupt process. “finished profile execution” message @ bottom of list when import process complete. if receive error message, correct problem in csv file, , try again.

for more details check out:

http://merch.docs.magento.com/ce/user_guide/content/store-operations/dataflow.html


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -