
Zen Cart Missing Images
Missing Images reviews the image setting for each of your products, and reports on the images which cannot be found. It's a great auditing tool to help you improve the look of your store by finding and fixing your missing product images.Donate: This is free software. Show your appreciation by supporting my efforts.

Relevance: Zen Cart™ 1.5.4 and above
Current Version: 1.0 (version history)
Support Thread: Missing Images Support Thread
Cost: Free, but donation appreciated
Installed Cost: $60.00 Buy Professional Installation by That Software Guy
Installation Difficulty: Moderate
Installation Instructions: click here for installation instructions
Location: Zen Cart Plugins, under Admin Tools
Download: Missing Images in Zen Cart Plugins
FAQ: click here for FAQ
Overview:
Missing Images reviews the image setting for each of your products, and reports on the images which cannot be found.NOTE: This plugin does *not* report products which do not have an image value set; those products can be found using a simple SQL query. See the FAQ.
For each missing image, the product ID, category ID and image name are shown, and the product name is a link to the edit screen for that product. Missing images can be fixed by editing the product and uploading a new image, or by transferring an image of the name shown under the Filename column to the
/images
folder.
To fix the example shown below, you would upload the file swat_3.gif
to the folder /images/sierra
.

Installation Instructions:
- Back up everything! Try this in a test environment prior to installing it on a live shop.
- Copy the contents of the admin folder to the renamed admin directory of your shop.
- Run the included SQL file in Admin > Tools > Install SQL Patches.
- The menu item Missing Images will be under Admin > Reports.
Major Versions
- 1.0 03/01/2020 - First Release
FAQ
Q: Can I use this plugin to find products which don't have an image set?A: No - this product finds products which have an image set, but where the corresponding image doesn't exist on disk. To find products which don't have an image set, use the query:
SELECT p.products_id, pd.products_name FROM products p, products_description pd WHERE p.products_id = pd.products_id AND p.products_image = '';