File is too large to upload

File is too large to upload, please upload files less than 1 g. Please help me solve this problem how to increase files max upload size

This is a long-standing problem. I’ve been facing it for a long time.

I don’t recommend using File Manager to upload large files but if you want to raise the limit, run this command:

Example to raise it to 2GB:

sed -i -E 's/(1024 \* 1024 \* 1024)(.*)/\1 \* 2\2/' /usr/local/hestia/web/fm/configuration.php

Example to raise it to 3GB:

sed -i -E 's/(1024 \* 1024 \* 1024)(.*)/\1 \* 3\2/' /usr/local/hestia/web/fm/configuration.php
1 Like