When I want to upload product image I get an error:
upload HTTP error
Teja Bhagavan Kollepara
3,8275 gold badges33 silver badges69 bronze badges
2 Answers 2
If you are using PHP 7 then go to
lib/Varien/File/Uploader.php
Find the following code
$params['object']->$params['method']($this->_file['tmp_name']);
And replace it with
$params['object']->{$params['method']}($this->_file['tmp_name']);
answered Nov 17, 2016 at 9:48
Vaibhav Ahalpara
5,2854 gold badges43 silver badges81 bronze badges
I found the solution. On server there wasn't activated gd php extension. I activated it and upload is now working. I hope someone would find this usefull.
Explore related questions
See similar questions with these tags.
default