mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #523] Upload very big files (20GB) issue #385
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#385
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 @lubomben on GitHub (Apr 14, 2021).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/523
I am trying to upload very big file, about 20 GB but the upload starts than progress bar stuck indefinitely.
My configuration:
php.ini config extract:
max_execution_time = 0
max_input_time = -1
memory_limit = 1000M
upload_max_filesize = 25000M
post_max_size = 21400M
tinymanager.php extract:
$max_upload_size_bytes = 25000000000;
LimitRequestBody in httpd.conf is not present so it takes the default value of 0.
I configured a temp dir in php.ini for uploading file and I noticed that the upload is going but is stopped after about 1.1GB and the temporary file is deleted.
Is all correct? Is possible to upload a file so big?
Thanks to all.
@EV-soft commented on GitHub (Apr 14, 2021):
How about PHP-settings:
upload_max_size
post_max_size
Ref: Cant upload #441
@lubomben commented on GitHub (Apr 14, 2021):
upload_max_filesize = 25000M
post_max_size = 21400M
@prasathmani commented on GitHub (Apr 15, 2021):
increase the following values in
php.iniconfigurationhttps://stackoverflow.com/questions/28830804/is-it-possible-to-upload-video-size-20gb-at-a-time-by-using-php-as-technolog
@lubomben commented on GitHub (Apr 15, 2021):
upload_max_filesize = 21000M
post_max_size = 21400M
upload_max_size daesn't exist as parameter in php.ini (or yes?).
@EV-soft commented on GitHub (Apr 16, 2021):
difference between “upload_max_size” and “upload_max_filesize”
https://stackoverflow.com/questions/45712556/difference-between-upload-max-size-and-upload-max-filesize
In php.ini -> upload_max_filesize is used !
@lubomben commented on GitHub (Apr 16, 2021):
And I have it with the correct size. So, any suggestion?
@phifogg commented on GitHub (Nov 1, 2021):
Has this been solved? I also would like to exchange quite large files for up to 5 GB or so.
@prasathmani commented on GitHub (Feb 12, 2022):
Chunked file upload is available now #714. now big files can uploaded easy