Nextcloud version (eg, 20.0.5): 25.0.5.1
Operating system and version (eg, Ubuntu 20.04): Debian 4.19.260-1
Apache or nginx version (eg, Apache 2.4.25): Apache
PHP version (eg, 7.4): 8.1
I’m trying to download a collection of photos as a zip file via the Download all button (in Firefox Android). The file size of the full archive is ~175 MB but more often than not, the download stalls at ~160 MB-173 MB for no apparent reason and eventually fails. Sometimes it succeeds, though, but it seems more or less random. I’m quite certain it is not the internet connection and I’m suspecting some mis-configuration, maybe php or caching options etc… I don’t remember having these problems with NC 24 but maybe I was just lucky.
The other threads I found with a similar issue were all talking about much larger files (500 MB-1.5GB).
config.php:
<?php
$CONFIG = array (
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'nc.xxx.x',
2 => 'xxx.x',
3 => 'www.xxx.x',
),
'datadirectory' => '/data/web/xxx/html/nc/data',
'overwrite.cli.url' => 'http://localhost',
'dbtype' => 'mysql',
'version' => '25.0.5.1',
'dbname' => 'xxx',
'dbhost' => 'localhost:/data/sockets/mysql80/mysqld.sock',
'dbport' => '3307',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'xxx',
'dbpassword' => 'xxx',
'installed' => true,
'instanceid' => 'xxx',
'maintenance' => false,
'default_phone_region' => 'at',
'theme' => '',
'loglevel' => 2,
'defaultapp' => 'files',
'memcache.local' => '\\OC\\Memcache\\APCu',
'mail_smtpmode' => 'smtp',
'mail_smtphost' => 'xxx',
'mail_smtpauthtype' => 'PLAIN',
'mail_sendmailmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_from_address' => 'nc-admin',
'mail_domain' => 'xxx',
'mail_smtpauth' => 1,
'mail_smtpname' => 'xxx',
'mail_smtppassword' => 'xxx',
'mail_smtpport' => '465',
);