We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, How to increase the upload size limit (2MB)? Thanks
The text was updated successfully, but these errors were encountered:
Have a look at php.ini . what you are looking for is
upload_max_filesize = 2M
Change the value to your needs
Sorry, something went wrong.
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
No branches or pull requests
Hello,
How to increase the upload size limit (2MB)?
Thanks
The text was updated successfully, but these errors were encountered: