mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 19:05:54 +03:00
[GH-ISSUE #787] upload of large files (1 GB+) #538
Labels
No labels
Feature
Feature
Is It Really an Issue?
Need More Info
Request
Security
bug
duplicate
enhancement
enhancement
help wanted
invalid
pull-request
question
suggestion
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tinyfilemanager#538
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @phifogg on GitHub (May 29, 2022).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/787
Hi,
i have some issues with uploading of larger files. Smaller files work flawless.
Large files (1 GB+) seem to work fine from a client side, the upload takes approx as long as I would expect it to take, but the files arriving on the server are either way too small (i.e. less than 5 MB) or not existent at all.
How can I help find the root cause of this?
Thanks
@phifogg commented on GitHub (May 29, 2022):
as some form of detail, I am running 2.4.7 of tinyfilemanager on a debian based linux host.
@vyv2000 commented on GitHub (Jun 11, 2022):
uploading of larger files < 3M. use docker
@Langlais115 commented on GitHub (Sep 25, 2022):
I can't reproduce the issue on 2.4.8...
If you are using Nginx, make sure to add client_max_body_size 2G; in the http section of your nginx.conf.
and in your php.ini
post_max_size = 2G
upload_max_size = 2G
Don't forget to reload the conf after that.