prasathmani / tinyfilemanager

Single-file PHP file manager, browser and manage your files efficiently and easily with tinyfilemanager
https://tinyfilemanager.github.io
GNU General Public License v3.0
4.88k stars 1.66k forks source link

Video upload splitting in parts #1109

Closed NinoNikoles closed 10 months ago

NinoNikoles commented 10 months ago

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 10 months ago

disable chunk upload and try

chunking: false,
forceChunking: false,
image
milankragujevic commented 10 months ago

@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.