blogotext
blogotext copied to clipboard
Upload file size
Hello, How to increase the upload size limit (2MB)? Thanks
Have a look at php.ini . what you are looking for is
upload_max_filesize = 2M
Change the value to your needs
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