Details
Nextcloud version: 27.1.3
Operating system and version: Ubuntu 22.04.3 LTS (GNU/Linux 5.15.0-88-generic x86_64)
Apache or nginx version: Apache 2.4
PHP version: 8.1
32GB RAM
8 KVM Cores - Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz
600GB NVME
Apps Enabled
Circles
Collaborative tags
Comments
Contacts
Contacts Interaction
Dashboard
Federation
File reminders
File sharing
First run wizard
Log Reader
Monitoring
Nextcloud Office
Notifications
Password policy
PDF viewer
Photos
Privacy
Related Resources
Right click
Share by mail
Support
Text
Update notification
Usage survey
Versions
Weather status
Issue:
Creating a Filedrop sharelink and trying to upload a file over 100mb to it fails to upload. (99mb works fine, any file over 100mb hangs at 0, sometimes it eventually fails.) I’m aware that filedrop doesn’t support chunking yet, but I have set my upload_max_filesize
, post_max_size
and memory_limit
to 16G
(tried 8G
too), the upload fail still stays at 100mb. I can’t find anything else that is limiting it.
Is this the first time you’ve seen this error? (Y/N): N
Steps to replicate it:
- Create a folder and share it as Filedrop (and Hide Download ticked, not sure if that is relevant)
- Go to the share link and upload a file larger than 100mb.
The output of your Nextcloud log in Admin > Logging:
No logs generated on upload/fail in Logging.
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'instanceid' => 'REMOVED',
'passwordsalt' => 'REMOVED',
'secret' => 'REMOVED',
'trusted_domains' =>
array (
0 => 'cloud.snows.dev',
1 => 'cloud.raiko.dev',
),
'datadirectory' => '/var/www/nextcloud/data',
'dbtype' => 'mysql',
'version' => '27.1.3.2',
'overwrite.cli.url' => 'http://cloud.snows.dev',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'REMOVED',
'installed' => true,
'htaccess.IgnoreFrontController' => false,
'htaccess.RewriteBase' => '/',
'overwriteprotocol' => 'https',
'memcache.local' => '\\OC\\Memcache\\APCu',
'simpleSignUpLink.shown' => false,
'loglevel' => 2,
'debug' => false,
'filelocking.enabled' => true,
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'localhost',
'port' => 6379,
'timeout' => 0.0,
'password' => '',
),
'maintenance' => false,
);
The output of your Apache/nginx/system log in /var/log/____
:
No logs generated on upload/fail.
Output errors in nextcloud.log in /var/www/ or as admin user in top right menu, filtering for errors. Use a pastebin service if necessary.
No logs generated when upload starts/fails