mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #96] Max file size? #67
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#67
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 @TheXisco on GitHub (Dec 7, 2018).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/96
Has Tiny File Manager a size limit? I ask this because I can not upload files whose size is 3mb or higher.
Thanks.
@gbrault commented on GitHub (Dec 8, 2018):
have a look to the php.ini file. You need to fix two values
max_upload_size and max_post_size (not sure of the exact naming pls check)
put them as you want
php.ini location depends on your os context usually /etc/php/... directory
You may also get this limit in your web server (depends on apache2 or nginx or the like)
@gbrault commented on GitHub (Dec 11, 2018):
in fact see the 'bug' I opened with dropzone.js default timeout to 30 seconds as well
@rkhyd commented on GitHub (Jan 16, 2019):
changing the upload file size in php.ini has no effect. The maximum file size is set to 256MiB even after updating the php.ini and restarting apache. Where can i change this?
@damianmiles commented on GitHub (Jan 16, 2019):
Yes I found the same issue, even we modify what you say, it's still restricted
@gbrault commented on GitHub (Jan 16, 2019):
check you have dropzone setup
you should add timeout (in msec)
Dropzone.options.fileUploader = {
timeout:120000, // 2 minutes
init: function () {...
within fm.php
@carlsue commented on GitHub (Jan 23, 2019):
Yes I found the same issue, even we modify what you say, it's still restricted
@fn-ix commented on GitHub (Feb 4, 2019):
Have also encountered the 256MiB limit...
@jfg commented on GitHub (Feb 8, 2019):
Hi, i have the same problem.
I have change parameters in my Plesk but no change...
Thanks for your help.
@dausruddin commented on GitHub (Feb 23, 2019):
Found the problem.
We should edit dropzone configuration in here
check this configuration example on https://www.dropzonejs.com/
What you are looking for is
maxFilesize.@Tun-0 commented on GitHub (Feb 25, 2019):
To upload more than 256mib you should change memory_limit in php.ini for more info visit https://www.dokuwiki.org/faq:uploadsize
@dausruddin commented on GitHub (Feb 25, 2019):
@MRDarck tinyfilemanager also limiting upload size in the front-end. I explained it in the reply above you.
Need to set
maxFilesizein dropzonejs configuration or you will not be able to upload file as big as what you set in php.ini@prasathmani commented on GitHub (Feb 28, 2019):
Updated
maxFilesizehas 2GB now.@carlsue commented on GitHub (Mar 1, 2019):
why not let us to modify freely?
@prasathmani commented on GitHub (Mar 3, 2019):
@carlsue new config flag is added now for
MAX_UPLOAD_SIZE@carlsue commented on GitHub (Mar 13, 2019):
get another error
@prasathmani commented on GitHub (Mar 13, 2019):
increase your
MAX_UPLOAD_SIZEin configuration and then try@carlsue commented on GitHub (Mar 13, 2019):
my file is 2.8GB
@prasathmani commented on GitHub (Mar 13, 2019):
Server responded with 0 code #701
@mahyard commented on GitHub (Nov 14, 2021):
@prasathmani
Another hardcoded value that will cause an "Error: Server Timeout" message is located here.
What do you think about making it configurable as well?