📷 Image Upload Limits

Current PHP server configuration

Maximum individual file 128.00 MB
Maximum POST request 128.00 MB
Application resize threshold 1.00 MB
Effective upload limit 128.00 MB
Important:
Your PHP application starts its image resizing process when an image is larger than 1.00 MB. This is different from the maximum size PHP allows the browser to upload.
PHP Configuration
upload_max_filesize = 128M
post_max_size = 128M
memory_limit = 2048M
The effective individual upload limit is the lower of upload_max_filesize and post_max_size.