Nextcloud version : 29.0.0
Operating system and version : Debian 11.9 (x86_64)
Apache or nginx version : Apache/2.4.59 / nginx as Proxy/1.25.5
PHP version : 8.2
The issue you are facing:
When trying to upload a file the progress bar takes the expected time until finished. Since large files take longer filling the bar. When it’s filled it’s stuck at “a few seconds left” and then starts uploading the file which can take a while for large files. Now I had to already set up the timeout otherwise the upload would even stop after 5 minutes and give an error.
Is this the first time you’ve seen this error? : N
Steps to replicate it:
- Upload a large file
- Wait until progress bar is filled
- Go on ftp and see the file is just starting to get uploaded after the bar is filled
The output of your Nextcloud log in Admin > Logging:
|Warnung|no app in context|Exception Transaction took 2.4642639160156s|"20.05.2024, 10:25:56"||
| --- | --- | --- | --- | --- |
|Warnung|no app in context|Exception Transaction took 2.5775899887085s|"20.05.2024, 10:25:00"||
|Warnung|no app in context|Exception Transaction took 3.6030189990997s|"20.05.2024, 10:23:58"||
|Warnung|no app in context|Exception Transaction took 3.1955461502075s|"20.05.2024, 10:22:57"||
|Warnung|no app in context|Exception Transaction took 1.2162249088287s|"20.05.2024, 10:22:06"||
|Warnung|no app in context|Exception Transaction took 1.9353880882263s|"20.05.2024, 10:18:57"||
|Warnung|no app in context|Exception Transaction took 4.4737200737s|"20.05.2024, 10:18:10"||
|Warnung|no app in context|Exception Transaction took 2.3284709453583s|"20.05.2024, 10:17:56"||
|Warnung|no app in context|Exception Transaction took 2.3585329055786s|"20.05.2024, 10:17:10"|
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'trusted_domains' =>
array (
0 => 'localhost',
),
'datadirectory' => '/home/nextcloud/web/public_html/data',
'dbtype' => 'mysql',
'version' => '29.0.0.19',
'overwrite.cli.url' => 'http://localhost',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'installed' => true,
'instanceid' => 'oc7bz6x64kvf',
'mail_from_address' => 'info',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_smtpport' => '465',
'mail_smtpauth' => 1,
'mail_smtpsecure' => 'ssl',
'enable_previews' => true,
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\HEIC',
1 => 'OC\\Preview\\TIFF',
2 => 'OC\\Preview\\Movie',
3 => 'OC\\Preview\\JPEG',
4 => 'OC\\Preview\\PNG',
5 => 'OC\\Preview\\Image',
),
'app_install_overwrite' =>
array (
0 => 'groupfolders',
1 => 'vibeetoee',
2 => 'extract',
),
'loglevel' => 2,
);