PHP Max Upload Size : 100 MB

I need increase PHP Max Upload Size : 100 MB.
What is the configuration file of ee to modify this parameter?
Thanks

SSH in to your server, and sudo to root (if you have root login disabled use sudo su to escalate to root.)

cd to /opt/easyengine/sites/yourdomain.com/config/php/php/conf.d/

nano custom.ini and add your custom config in there, which would be upload_max_filesize = 100M

Ctrl+x to save, press Y and enter to confirm. Then ee site restart yourdomain.com

I’ve attached a picture of the custom php settings for one of my domains, obviously the settings I’m using are not the same for your needs, but just so you get the idea.

1 Like

Ok,Thanks.