(Solved) Trouble uploading huge File (40GB)

Nextcloud version: 20.0.4
Operating system and version: Armbian 20.11.6 Buster
Apache version: Apache/2.4.38 (Debian)
PHP version: 7.3

The issue you are facing:
Hello,
i uploaded an 40GB file and after the upload its proceccing the file very long till i get this error:

“Vorgang wird durch die Zugangskontrolle blockiert”

wich means:

“Operation is blocked by the access control”

Is this the first time you’ve seen this error? (Y/N): Y

Steps to replicate it:

  1. Upload a 40GB file
  2. wait a little bit
  3. ???
  4. Profit

The output of your Nextcloud log in Admin > Logging:

There is nothing in the Log.

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'passwordsalt' => '-',
  'secret' => '-',
  'trusted_domains' => 
  array (
    0 => 'localhost',
    1 => '*',
  ),
  'datadirectory' => '/mnt/dietpi_userdata/nextcloud_data',
  'dbtype' => 'mysql',
  'version' => '20.0.4.0',
  'hashingThreads' => 6,
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'filelocking.enabled' => true,
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => '/run/redis/redis-server.sock',
    'port' => 0,
  ),
  'overwrite.cli.url' => 'http://localhost/nextcloud',
  'htaccess.RewriteBase' => '/',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => '-',
  'dbpassword' => '-',
  'installed' => true,
  'instanceid' => '-',
  'maintenance' => false,

  'log_type' => 'file',
  'logtimezone' => 'Europe/Berlin',
  'logfile' => '/var/log/nextcloud.log',
  'loglevel' => 2,
  'syslog_tag' => 'Nextcloud',


);

Thanks and stay healthy

you read through this?

https://docs.nextcloud.com/server/20/admin_manual/configuration_files/big_file_upload_configuration.html

Hello,
thank you for the answer.

I had another problem. I tried to write to a USB stick. However, I had no authorization and had to adjust it.

I thought it was because of the file size, but it was actually the permission. Thanks anyway.

This helped me:

1 Like