mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 19:05:54 +03:00
[GH-ISSUE #1109] Video upload splitting in parts #710
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#710
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 @NinoNikoles on GitHub (Nov 13, 2023).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/1109
If I try to upload a mp4 the video gets splitt into a video file and a part file. I'm getting no error.
$max_upload_size_bytes = 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000;
(For test case :D )
The video is 10mb large so it should work.
And yes mp4 upload is enabled
*Smaller Video with 7MB worked. But above 10MB no more.
PHP.ini is also setup up correctly for larger upload
@prasathmani commented on GitHub (Nov 15, 2023):
disable chunk upload and try
@milankragujevic commented on GitHub (Nov 27, 2023):
@prasathmani Disabling chunking does let the file be uploaded, but the file name is wrong, it's the name of it's folder not the actual file name. please fix.