blogotext icon indicating copy to clipboard operation
blogotext copied to clipboard

Upload file size

Open adlan051 opened this issue 7 years ago • 2 comments

Hello, How to increase the upload size limit (2MB)? Thanks

adlan051 avatar Nov 24 '18 21:11 adlan051

Have a look at php.ini . what you are looking for is

upload_max_filesize = 2M

Change the value to your needs

ragnar76 avatar Dec 06 '18 15:12 ragnar76

post_max_size must also be equal or greater than upload_max_filesize Same with the RAM allowed per thread (memory_limit) that must be above both

upload_max_filesize <= post_max_size < memory_limit

You can play around to check if everything is all good, but if you don't have enough memory, the upload will crash

extragornax avatar May 27 '19 09:05 extragornax