Magento – Unable to upload product image [4MB]

imageproductupload

I have developed a magento website and I'm facing a serious issue while uploading the product image !
I am unable to upload images more then 2MB of size !

Any solutions ?

Best Answer

Make sure that you have updated your php.ini to allow the desired size of files. A good example of this can be found on stackexchange

upload_max_filesize=2M
post_max_size=8M

Note: post_max_size should be greater than or equal to upload_max_filesize

Related Topic