Increase the limit of file upload size in Heroku while uploading to Dropbox
问题 I have encountered an issue while uploading files to dropbox through my application that is hosted on Heroku. I wanted to upload approx 100MB files and they aren't being hosted on Heroku itself. I couldn't find anything on docs that'd address this issue entirely. I tried an hack, I created a file named custom_php.ini and in ProcFile I added this line: web: vendor/bin/heroku-php-apache2 -i custom_php.ini . And in my custom_php.ini file I set upload_max_filesize to 100M . But this didn't work