Re: Upload failed more than 2MB

See all posts See thread Reply

Re: Upload failed more than 2MB new!
by colin, 9 years, 11 months ago
It is strange, because your error log is not consistent:
file_src_size : 5640077 (max= 33554432)
error: File too big.


The message "File too big" happens only if the image size is larger than the maximum size, that is if 5640077 > 33554432, which is not the case.

Is that error log produced when you upload any file? Or only files larger than 2mb? To me, it looks more like a memory error, rather than an upload size error. Do you have any error messages in your web server log?Reply
Re: Upload failed more than 2MB new!
by kilania, 9 years, 10 months ago
I raised the memory limit like this and it works now.
ini_set( 'memory_limit', '128M' );
Thanks for reply.Reply