I have to upload a file of more than 2Gb to be able to recover a website.
I normally use Filezilla for these things, but the client wants to do it through the file uploader.
Is there any way to remove the limitation in max_filesize?
Thank you very much
I tried it in the past. Don’t remember why but I decided to use the ftp connection to avoid that problem.
1 Like
Edit this file /usr/local/hestia/web/fm/configuration.php
And modify this line:
$dist_config["frontend_config"]["upload_max_size"] = 1024 * 1024 * 1024;
For example, to add a limit of 3 GB:
$dist_config["frontend_config"]["upload_max_size"] = 1024 * 1024 * 1024 * 3;
3 Likes
Thank you very much @sahsanu it worked perfect.
2 Likes
system
Closed
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.