What configuration settings in php.ini need to be adjusted to allow for 50 MB file uploads?

To allow for 50 MB file uploads in PHP, you need to adjust the `upload_max_filesize` and `post_max_size` settings in the php.ini configuration file. These settings control the maximum size of files that can be uploaded through PHP. By increasing both of these settings to at least 50M, you will be able to upload files up to 50 MB in size.

; Maximum allowed size for uploaded files.
upload_max_filesize = 50M

; Must be greater than or equal to upload_max_filesize
post_max_size = 50M