How is everything going today? Thankful to be hit with the new shopping cart magento of course, I had saw that a previous user had this same problem but I’m not sure if they found a safe solution for it, one user had replied back to something about the MOD_SEC but i figured that was a unsafe thing to modify and leave open for hackings anyway, i want to know if anyone has a solution to this problem that im sure others are having as well. When ever i try to upload a product image in the catalog i get this HTTP error which is attached. Please help me out thanks again for your time!
mod_security is an optional Apache module, that most people don’t have anyway. I think it will be fine to turn it off without being a security problem.
Also, some people have had client side problems (try updating Flash to the latest version, or testing on a different PC), and other people only have problems if they use SSL in the back-end.
Since there are a few situations that cause problems, you will first need to determine which one is causing a problem for you, only then can you find a solution.
Also remember, this is working fine for many people, so it’s not completely broken.
Same problem here. Uploading with OSX Firefox gives me the Upload HTTP Error, but with Inter Explorer it works just fine.
I updated flash player to the latest version, but no succes. I tried all possible solutions, but I can’t get it working.
I had this same problem with Firefox and Safari on a Mac (Upload HTTP Error). I successfully uploaded images using a PC.
I noticed that my .htaccess file didn’t copy from my desktop to my web server. I copied the default .htaccess file from my Magento download to my web server, and image uploading works fine now.
alright you found the reason. Deleting the .htaccess protection (which is used to deny access for crawlers and search engines) I am able to upload images using Mac.
The last post is right about removing that security, but for dummies you need to be more explicit. I actually don’t even know if both lines should be there but I added them to the .htaccess file on the directory where I have magento stored.
SecFilterEngine Off
SecFilterScanPOST Off
Those lines did the job and now I’m able to upload images.
oh, much better than this! today, i work at home instead of the office and today there is no problem with any image upload in the shop. maybe some firewall is blocking http requests or similar.
alright you found the reason. Deleting the .htaccess protection (which is used to deny access for crawlers and search engines) I am able to upload images using Mac.
Cheers.
Wow, that is strange, I wonder why that is so? I just produced the exact same results by removing the “htaccess” directory protection. Sounds like it may be worth implementing a non-flash workaround uploader until this can be fixed.
This is also a really horrible snag for developers like me who use a Mac as their main machine. The trade off is having to turn off directory protection when I want to upload images. Now explaining that to clients is a whole other story.
Well, I have read on the posts and I still have a problem.
My application ver 1.1.4 runs perfectly on my home server. I copied it to my hosting location where it runs fine apart from uploading images.
The permissions are the same for the application directory and below on both my server and the hosting server.
I have tried with firefox and IE 6 on a XP pro machine. Same results, works fine on my server but not on the hosting server.
I’m using Windows Vista. I’ve tried in Firefox2 and EI7. Can’t upload product images. My install is on linux/apache and using clean installation out of the box 1.1.6 magento. I’ve removed my .htaccess.
Interestingly I dont have a problem with the image upload on the official magento demo store (demo.magentocommerce.com). works perfectly… as such it must be a server issue in my case for sure.
Looking at another thread, some people were suggesting that the following was required in the htaccess “SecFilterEngine Off"… so I’ve checked my .htaccess file, and it appears this is already added in the section..
<IfModule mod_security.c>
###########################################
# disable POST processing to not break multiple image upload
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>