Active
Project:
Ubercart Option Images
Version:
6.x-1.4
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jul 2012 at 09:45 UTC
Updated:
3 Dec 2012 at 16:08 UTC
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
Comment #1
kcannick commentedSame here. Files don't upload. is this still in development?
Comment #2
jlballes commented+1 !!
Comment #3
deaftone commentedI've noticed that the files do upload, but they don't show up on the product page.
Comment #4
deaftone commentedI have figured it out. You have to select the attributes to use option images on admin/store/settings/attributes.
Comment #5
akay commentedNote 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.
Comment #6
hockey2112 commented@akay, can you tell us which other thread that was in?