Question

How to update php.ini on a digitalocean app

I’ve deployed a PHP app on digitalocean app and I need to increase the post file size and upload the max file size limit. but I can’t access the php.ini or create a working .htaccess file. Will really appreciate your help.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Dikshith Shetty
DigitalOcean Employee
DigitalOcean Employee badge
September 19, 2021
Accepted Answer

Hey @sergiowilliomes ,

The easiest way to edit the php.ini settings is to add a .user.ini file to your codebase with the following lines in it. These lines will set the values for post_max_size and upload_max_filesize explicitly:

post_max_size=20M
upload_max_filesize=5M

Alternatively, you could update your run command to be prefixed with the below command:

echo 'post_max_size=20M' >> .user.ini && echo 'upload_max_filesize=5M' >> .user.ini && heroku-php-apache2

Regards,

Dikshith

Hi @sergiowilliomes I had the same issue with my app, so I modified the user.ini file in my project root by adding upload_max_filesize=40M and post_max_size=100M. You can also add this to your .htaccess file and create a user.ini file in the public folder if you’re using Laravel. After deploying your code and restarting the server, check if it works. This solution worked for me.

I had facing this issue for quite sometimes for my Laravel’s app that deployed using Digital Ocean App Platform. Based on many suggestion I found, creating .user.ini in my public directory is the only way possible. Inside it, I amend the directives values accordingly.

For instance this is the values I used:

upload_max_filesize=5M
max_input_time=90
max_execution_time=90

Other than these values, there are few others such as file_uploads, upload_tmp_dir, post_max_size, and memory_limit. I found these related directives to achieve larger file upload is from this article: 3.2. PHP Directives Related to (Large) File Upload

Hope this answer complements other answers and confirming the solution that works on this time.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.