What are the recommended PHP settings for uploading files larger than 2GB on a Windows Server running IIS?
When uploading files larger than 2GB on a Windows Server running IIS, you may need to adjust the PHP settings to allow for larger file uploads. This can be done by increasing the values for the `upload_max_filesize`, `post_max_size`, and `max_execution_time` directives in the php.ini file. By increasing these values, you can ensure that PHP allows for larger file uploads without encountering any size limitations.
// Increase PHP settings for uploading large files
ini_set('upload_max_filesize', '2048M');
ini_set('post_max_size', '2048M');
ini_set('max_execution_time', 0);