Skip to content

Commit 259eb47

Browse files
author
ratbag
authored
Issues with hanging on large file upload
See #701 I expericed an issue uploading large files (500MB+) where the user would not see the tick confirmation when the upload was complete. After some investigation (and making sure I have the correct web server and PHP settings to support large file uploads) and making this change it fixed the issue and the user would receive a tick upon upload completion
1 parent bb74261 commit 259eb47

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/views/index.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@
267267
paramName: "upload[]", // The name that will be used to transfer the file
268268
uploadMultiple: false,
269269
parallelUploads: 5,
270+
timeout:100000,
270271
clickable: '#upload-button',
271272
dictDefaultMessage: lang['message-drop'],
272273
init: function() {

0 commit comments

Comments
 (0)