PHP uploads are constrained by several settings. The effective upload limit can be lower than expected if one related setting is smaller.
upload_max_filesizelimits an individual uploaded file.post_max_sizelimits the total POST request and must be larger thanupload_max_filesizefor large uploads.memory_limitcan also affect applications that process uploaded data in memory.- Application-specific limits can be lower than PHP’s limits.
- Check the active PHP version for the domain.
- Review the effective PHP settings in MultiPHP INI Editor or the application’s Site Health/system-information page.
- Increase only the setting that is actually limiting the operation and remain within any server-enforced maximum.
- Retry with a smaller file to confirm the diagnosis.
A server-enforced maximum cannot necessarily be overridden from an account-level INI file.