Our files are more then 2 MB, when we try to upload images of prodcuts of such size like 5000 x 3650 or similar our vm product adding page at backend get corrupted and we had to delete that image first, also media files page get corrupted, as soon as we delete that image, it start working
If we upload smaller images like 1000*750 it work fine so what can be issue.
if it php limite , our joomla upload limit is 10 MB , is there any extra php upload limit we can set?
You could also be running out of memory when creating thumbs.
Whats the solution? to upload large files
increase your available memory if that is the problem.. I use a min of 256MB for my builds
I generally use these settings in php.ini:
; Resource Limits ;
max_execution_time = 120
memory_limit = 256M
; File Uploads ;
upload_max_filesize = 32M
post_max_size = 32M
Ran into the very same problem. I resolved my issue by opening up my pic in photoshop, choosing image size, and lowering the resolution to 1/3rd or 1/6th the previous resolution without degrading the image. Hope this helps.
for a fast loading website this should be a general policy anyway..
Or simply use FTP to upload, this have, most of time, no limits.