Nextcloud version : Nextcloud Hub 6 27.1.3
Operating system and version : Unraid 6.12.4 nextcloud in docker
Apache or nginx version : nginx via swag 2.7.4
PHP version (eg, 7.4): php8.2
The issue you are facing:
I can upload 900MB fine. If I try to upload 2GB the upload completes but then get unknown error message. No error in logfile.
Is this the first time you’ve seen this error? (Y/N): N
Steps to replicate it:
- upload a file larger then 1GB
The output of your Nextcloud log in Admin > Logging:
PASTE HERE
The output of your config.php file in /path/to/nextcloud
:
<?php
$CONFIG = array (
'datadirectory' => '/data',
'instanceid' => 'xxxxxxxxxxxxxx',
'passwordsalt' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'trusted_domains' =>
array (
0 => '192.168.3.12:444',
1 => 'xxxxxxxxxxxxxx.com',
),
'trusted_proxies' =>
array (
0 => 'swag',
),
'default_phone_region' => 'US',
'dbtype' => 'mysql',
'version' => '27.1.3.2',
'overwrite.cli.url' => 'https://xxxxxxxx.com',
'overwritehost' => 'xxxxxxxxxxxx.com',
'overwriteprotocol' => 'https',
'dbname' => 'nextcloud',
'dbhost' => '192.168.3.12:3306',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'xxxxxxxxxxxxxx',
'installed' => true,
'memcache.local' => '\\OC\\Memcache\\APCu',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\APCu',
'upgrade.disable-web' => true,
'mail_from_address' => 'xxxxxxx',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => 'yahoo.com',
'mail_smtphost' => 'xxxxxxxxxxx',
'mail_smtpport' => '465',
'mail_smtpauth' => 1,
'mail_smtpname' => 'xxxxxxxxx',
'mail_smtppassword' => 'xxxxxxxxxxxxxxxxx',
'maintenance' => false,
'app_install_overwrite' =>
array (
0 => 'flowupload',
),
);
~
The output of your Apache/nginx/system log in /var/log/____
:
empty
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.
empty
I modified /etc/php82/conf.d/nextcloud.ini
memory_limit=2048M
upload_max_filesize=70G
post_max_size=70G
max_input_time=6400
max_execution_time=6400