Difference between revisions of "X-Cart:How to export and import products with images"

From X-Cart 4 Classic
Jump to: navigation, search
(To export products with images)
(To import products with images)
Line 65: Line 65:
 
==To import products with images==
 
==To import products with images==
  
To import products with images, the CSV file must contain columns !THUMBNAIL and !IMAGE. The simplest way to get a valid file is to export a product with images (see the previous section for instructions on how to do that) and use it as a template.
+
To import products with images, the CSV file must contain columns !THUMBNAIL and !IMAGE under [PRODUCTS] section.
  
# Place the directory containing product images to a temporary directory inside X-Cart. For example, you can create a directory in <xcart_dir>/var/tmp . If you are importing products from one X-Cart to another, you can just place the directory export _***, described above, to the specified directory <xcart_dir>/var/tmp .
+
If you want to import product detailed images and product variant images too, the CSV file must contain column !IMAGE under [DETAILED_IMAGES] and [PRODUCT_VARIANTS] sections correspondingly.
 +
 
 +
# Place the product images to be imported to a temporary directory inside X-Cart.
 
# On the <u>Import/Export -> Import data</u> page click <u>Import options</u>.
 
# On the <u>Import/Export -> Import data</u> page click <u>Import options</u>.
# <u>Directory where images are located</u>: enter the absolute(!) path to the directory, where you have placed the images. The absolute path to the X-Cart directory can be looked up on the [[X-Cart:Summary_Page |Summary]] page in the Environment info section.
+
# <u>Directory where images are located</u>: enter the absolute (!) path to the directory, where you have placed the images.
# Select the required file.
+
# Select the required CSV file.
 
# Select the required delimiter.
 
# Select the required delimiter.
 
# Click '''Import'''.
 
# Click '''Import'''.
 +
 +
{{Note1|<b>Tips:</b>
 +
 +
1. The simplest way to get a valid CSV file is to export a sample product with images (see the previous section for instructions on how to do that), and use the generated CSV file as a template.
 +
 +
Please note, the product images info in the generated CSV file consists of two parts: [image_type_subdir]/[image_filename]. Accordingly, the exported product images are located in the corresponding sub-directories in the temp directory (see examples in the previous section).
 +
 +
2. Use the temp directory created by the means of exporting a sample product with images (like <xcart_dir>/var/tmp/export_***) or create another temp directory (like <xcart_dir>/var/tmp/my_temp_dir), and place your new product images there.
 +
 +
Keep in mind, images of different types (product thumbnails, product main images, etc.) should be placed in the corresponding sub-directories (T, P, etc.) in the temp directory (see examples in the previous section).
 +
 +
If you are transferring product with images from one X-Cart to another, you can just download the whole temp directory with the images exported from one store (like <xcart_dir>/var/tmp/export_***), and upload it to the directory <xcart_dir>/var/tmp of another store.
 +
 +
3. The absolute path to the temp directory with your new product images consists of two parts: <xcart_dir>/ and var/tmp/export_*** (or var/tmp/my_temp_dir). The first part is the absolute path to the X-Cart directory. The absolute path to the X-Cart directory can be looked up on the [[X-Cart:Summary_Page | Summary page]] in the Environment info section.
 +
}}
  
 
Also, it is possible to auto-generate product thumbnail images from the main product images being imported (in other words, generate thumbnails from the images specified in the !IMAGE column). This can be done by adding !GENERATE_THUMBNAIL column to your CSV file and specifying Y as the value of the column. The !THUMBNAIL column should be omitted in this case.
 
Also, it is possible to auto-generate product thumbnail images from the main product images being imported (in other words, generate thumbnails from the images specified in the !IMAGE column). This can be done by adding !GENERATE_THUMBNAIL column to your CSV file and specifying Y as the value of the column. The !THUMBNAIL column should be omitted in this case.

Revision as of 16:28, 20 October 2012

To export products with images

  1. Go to Tools > Import/Export > Export data section.
  2. Do you wish to export images?: Select Yes.
  3. Data types: Select PRODUCTS.
  4. Click Export.
Tip: If you want to export detailed and product variant images, select DETAILED IMAGES and PRODUCT VARIANTS under Data types section correspondingly.

The required CSV file is generated in X-Cart and a temporary directory containing product images is saved to <xcart_dir>/var/tmp/ directory. You can download the generated CSV file and the temp directory with images using FTP or SSH.

The exact name of the generated CSV file and the temp directory with images can be looked up in the Export packs section, for example:

10-20-2012 11:04	export_20121020_110455.csv 	- 	PRODUCTS

Temporary directory for images: /u/user/public_html/xcart/var/tmp/export_20121020_110455

The product images info appear under the corresponding columns of the generated CSV file, for example:

[PRODUCTS]
!THUMBNAIL;!IMAGE;
T/product_thumbnail.jpg;P/product_main_image.jpg

[DETAILED_IMAGES]
!IMAGE;
D/product_detailed_image.jpg

[PRODUCT_VARIANTS]
!IMAGE;
W/product_variant_image.jpg

Note, the product images info consist of two parts: [image_type_subdir]/[image_filename].

Accordingly, each type of the exported product images is located in the corresponding sub-directory in the temp export directory, for example:

/u/user/public_html/xcart/var/tmp/export_20121020_110455/T/product_thumbnail.jpg
/u/user/public_html/xcart/var/tmp/export_20121020_110455/P/product_main_image.jpg
/u/user/public_html/xcart/var/tmp/export_20121020_110455/D/product_detailed_image.jpg
/u/user/public_html/xcart/var/tmp/export_20121020_110455/W/product_variant_image.jpg
Tip: If you want import the same exported CSV file with images (without any modifications) back to your X-Cart store, you should specify the same temp export directory in the "Directory where images are located" field, for example:
Directory where images are located: /u/user/public_html/xcart/var/tmp/export_20121020_110455

As result, the import script will take the images from the corresponding sub-directories in the temp export directory (see example above), and import these images to the corresponding sub-directories in the predefined <xcart_dir>/images directory:

/u/user/public_html/xcart/images/T/product_thumbnail.jpg
/u/user/public_html/xcart/images/P/product_main_image.jpg
/u/user/public_html/xcart/images/D/product_detailed_image.jpg
/u/user/public_html/xcart/images/W/product_variant_image.jpg

Please also note, the above is true if the corresponding options under 'Images Location' are set to store images in the file system, otherwise the images data is imported from the temp export directory into the X-Cart database.

To import products with images

To import products with images, the CSV file must contain columns !THUMBNAIL and !IMAGE under [PRODUCTS] section.

If you want to import product detailed images and product variant images too, the CSV file must contain column !IMAGE under [DETAILED_IMAGES] and [PRODUCT_VARIANTS] sections correspondingly.

  1. Place the product images to be imported to a temporary directory inside X-Cart.
  2. On the Import/Export -> Import data page click Import options.
  3. Directory where images are located: enter the absolute (!) path to the directory, where you have placed the images.
  4. Select the required CSV file.
  5. Select the required delimiter.
  6. Click Import.
Tips:

1. The simplest way to get a valid CSV file is to export a sample product with images (see the previous section for instructions on how to do that), and use the generated CSV file as a template.

Please note, the product images info in the generated CSV file consists of two parts: [image_type_subdir]/[image_filename]. Accordingly, the exported product images are located in the corresponding sub-directories in the temp directory (see examples in the previous section).

2. Use the temp directory created by the means of exporting a sample product with images (like <xcart_dir>/var/tmp/export_***) or create another temp directory (like <xcart_dir>/var/tmp/my_temp_dir), and place your new product images there.

Keep in mind, images of different types (product thumbnails, product main images, etc.) should be placed in the corresponding sub-directories (T, P, etc.) in the temp directory (see examples in the previous section).

If you are transferring product with images from one X-Cart to another, you can just download the whole temp directory with the images exported from one store (like <xcart_dir>/var/tmp/export_***), and upload it to the directory <xcart_dir>/var/tmp of another store.

3. The absolute path to the temp directory with your new product images consists of two parts: <xcart_dir>/ and var/tmp/export_*** (or var/tmp/my_temp_dir). The first part is the absolute path to the X-Cart directory. The absolute path to the X-Cart directory can be looked up on the Summary page in the Environment info section.

Also, it is possible to auto-generate product thumbnail images from the main product images being imported (in other words, generate thumbnails from the images specified in the !IMAGE column). This can be done by adding !GENERATE_THUMBNAIL column to your CSV file and specifying Y as the value of the column. The !THUMBNAIL column should be omitted in this case.

See also:

Troubleshooting

When importing data with images, old detail images in the "<xcart_dir>/images" directory are neither overwritten nor removed. How do I solve the problem?

When importing data with images, if in the target directory, e.g., images, X-Cart finds an image with the same name as the image being imported, for instance, "detailed_image_sku17.jpg", it doesn't overwrite or delete the existing image; instead, it appends a suffix like _01, _02, etc. to the image being imported. Thus, in our example, in the images directory we get a new image named "detailed_image_sku17_01.jpg".

To prevent cluttering up the images directory with diplicate images when importing data with images multiple times, please follow these simple steps:

1) Before importing data with new images, rename the images directory; e.g., to images_bkp.
2) Import the data with new images.
This creates a new directory named images, where X-Cart will import the new images.
3) (Optional) Re-slice magnified images (if importing images for magnifier).
4) Copy the content of the images directory to the images_bkp directory (overwriting the old files).
As a result, the old images in the target directory (images_bkp) will be overwritten by the new images from the source directory (images).
5) Remoave the images directory.
6) Rename the images_bkp directory to images.
Note: You can complete step 1, as well as steps 4 through 6 using FTP, SSH or the File Manager in the website's Control Panel.