I will pay someone to lend a hand me fix this issue (even though it sounds like a bug to me). I’ve tried just about everything, as well as attempt to debug the code.
I too was experiencing this issue (using version 1.4.1.1 Community Edition)… I was attempting to upload using both Chrome and Firefox.
I then attempted to upload product images using Internet Explorer and hey presto it works. Looks like Varien have an issue with the Flash Uploader on platforms other than Internet Explorer.
I too was getting the white box with no flash uploader on the image upload screen, and it was sending me crazy. Until I inspected the flash element and noticed that the folder the flash loader was trying to load a file from;
This sorted the problem, and I can now upload files. I would check this first, as it could save you alot of time in reconfiguring php/permissions when the problem can be easily fixed.
---
MattClegg
If this helped you, why not help me?
Similar issue… Able to see upload button.. able to upload and see thumbnail in the product details area… when I save and go back in and look the image is gone and I see “no image”. On front nothing shows.
I have seen that the image is uploading to the /media/tmp/catalog/products/ directory, but is not copying to the actual catalog dir. I have gone in and looked at the database and no entry is added for the image that I had tried to upload.
Anyone seen this before?
(dull uploader doesnt make a difference, because the problem is not in uploading, but in processing and saving the file)
EDITED: Problem solved… it seems that in my case, the magic_quotes_gpc setting in the main .htaccess file was set to OFF and needed to be set to ON.
Check the .htaccess file in the images directory. Sometimes the images are uploaded just fine, but the htaccess won’t allow your browser to fetch and display the images.
FINALLY! TYTYTY! .htaccess file in media folder created the problem for me...
OMFG! After banging my head searching and searching the forums for a solution to this I followed the above about the .htaccess file in the media directory. I just used the .htaccess file from my root and now all of my images are displaying!!
Yes. Using Internet Explorer instead of Chrome or Firefox is the best solution. It works for me. Still see the silly message about image info but image upload works just fine. Thanks guys
We had same problem in our eshops, after some server os updates Image Upload and category expand in backend not worked. We tried .htaccess tricks, permissions magic on the media folder, but problem was still here. I found solution for magento 1.4.1.1 and above (1.5 too) somewhere in google:
1. Download prototype 1.6.0.3 (only this version worked in our magento), we tried newest versions but it doesnt work
2. Change old prototype in js/prototype/prototype.js with new one
3. edit app/etc/config.xml and row
<initStatements>SET NAMES utf8</initStatements>
change to:
<initStatements>SET NAMES utf8; SET FOREIGN_KEY_CHECKS=0; SET UNIQUE_CHECKS=0;</initStatements>
now Image upload and Category tree work like a charm
P.S. In attachment is correct prototype.js (1.6.0.3)
Similar issue… Able to see upload button.. able to upload and see thumbnail in the product details area… when I save and go back in and look the image is gone and I see “no image”. On front nothing shows.
I have seen that the image is uploading to the /media/tmp/catalog/products/ directory, but is not copying to the actual catalog dir. I have gone in and looked at the database and no entry is added for the image that I had tried to upload.
Anyone seen this before?
(dull uploader doesnt make a difference, because the problem is not in uploading, but in processing and saving the file)
EDITED: Problem solved… it seems that in my case, the magic_quotes_gpc setting in the main .htaccess file was set to OFF and needed to be set to ON.
This fixed for me, so weird, i never had this issue before and have heard no complaints from any of my clients on the same hosting setups. Just happened to me when I moved my site from my local to a development remote server. Thanks for this!