Hi!
When uploading a folder with a lot of files and subfolders through the drag and drop feature in the browser. I get a lot of these errors:
After the upload, files are missing randomly.
Nextcloud version: 22.1.0
with nextcloud/docker
Is this the first time you’ve seen this error? No (happens on every upload)
Steps to replicate it:
- Upload a folder with a lot of files and subfolders through the drag and drop feature in the browser
- Download the uploaded folder from the Nextcloud
- Compare if files are missing (check errors shown in the browser)
My config.php file:
<?php
$CONFIG = array (
'htaccess.RewriteBase' => '/',
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => 'REDACTED',
'port' => REDACTED,
),
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'instanceid' => 'REDACTED',
'passwordsalt' => 'REDACTED',
'secret' => 'REDACTED',
'trusted_proxies' =>
array (
0 => 'REDACTED',
),
'trusted_domains' =>
array (
0 => 'REDACTED',
),
'default_phone_region' => 'REDACTED',
'datadirectory' => 'REDACTED',
'dbtype' => 'mysql',
'version' => '22.1.0.1',
'overwritehost' => 'REDACTED',
'overwriteprotocol' => 'https',
'overwrite.cli.url' => 'REDACTED',
'dbname' => 'REDACTED',
'dbhost' => 'REDACTED',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'REDACTED',
'dbpassword' => 'REDACTED'
'installed' => true,
'maintenance' => false,
'preview_max_x' => '2048',
'preview_max_y' => '2048',
'jpeg_quality' => '60',
'logfile' => '/var/log/nextcloud.log',
'logtimezone' => 'REDACTED',
'mail_smtpmode' => 'smtp',
'mail_smtphost' => 'REDACTED',
'mail_smtpport' => '465',
'mail_smtpsecure' => 'ssl',
'mail_smtpauth' => true,
'mail_smtpauthtype' => 'PLAIN',
'mail_smtpname' => 'REDACTED',
'mail_smtppassword' => 'REDACTED',
'mail_from_address' => 'REDACTED',
'mail_domain' => 'REDACTED',
'loglevel' => 2,
);
What causes this? Any idea?
Currently I am using this workaround:
Upload a .zip
file and extracting it on the Nextcloud using the “Extract” Addon.
Thanks for your help!