In PHP settings, should memory_limit > upload_max_filesize?

Viewed 6517

I'm trying to allow users to upload large files (64MB) and am planning to change upload_max_filesize to 64MB.

However, should I also change memory_limit to 64MB or larger?

Is memory_limit connected to upload_max_filesize?

2 Answers
Related