When I try to upload images from admin/store/attributes/7/options/11/edit the images are not saved and does not show up in the product page. Any suggestion?

Comments

kcannick’s picture

Priority: Normal » Critical

Same here. Files don't upload. is this still in development?

jlballes’s picture

+1 !!

deaftone’s picture

I've noticed that the files do upload, but they don't show up on the product page.

deaftone’s picture

I have figured it out. You have to select the attributes to use option images on admin/store/settings/attributes.

akay’s picture

Note that this could be due to a php setting. I spun my wheels for a few hours tracking this down.

My site has 105 options, and by default php only allowed 20 files to be uploaded. That means that anything past 20 would not upload and looked as if this module was silently dropping the images. Investigating the $_FILES variable led me to the following php setting:

http://www.php.net/manual/en/ini.core.php#ini.max-file-uploads

I added this line to my sites php config and gracefully restarted apache to fix it:
php_admin_value max_file_uploads 300

PS.. Grab a copy of the fully patched module from another bug thread. The one linked on the module page is ancient and unmaintained.

hockey2112’s picture

@akay, can you tell us which other thread that was in?