Hello!
My problem ist precisly described in this thread:
error-when-assembling-chunks-status-code-504
and I have already written there, but since this is already marked as solved, I gave it another thought and decided that it is better to open a new one.
Uploading one large file results in the error message “Error when assembling chunks, status code 504”, but the file is available on the system afterwards.
I’m using Plesk, that’s why nginx is used on top of apache and
in the other thread raising timeout was the solution, that’s why I tried this:
First I set in php.ini
max_execution_time = 21600
Then in /etc/apache2/apache2.conf I set
Timeout 21600
Last thing I tried was adding
fastcgi_read_timeout 1d;
proxy_read_timeout 1d;
in the http section of /etc/nginx/nginx.conf
Nothing worked.
Can somebody tell what else I can try?
Nextcloud version: 16.0.3
Operating system and version : Ubuntu 16.04
Apache or nginx version: Apache/2.4.18 and nginx/1.14.2
PHP version: 7.3.7
Is this the first time you’ve seen this error?: Yes
The output of your Nextcloud log in Admin > Logging:
Nothing
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'instanceid' => 'id',
'passwordsalt' => 'secret',
'secret' => 'victoria',
'trusted_domains' =>
array (
0 => 'nextcloud.my.domain',
),
'datadirectory' => '/opt/nextcloud/data',
'overwrite.cli.url' => 'https://nextcloud.my.domain',
'dbtype' => 'mysql',
'version' => '16.0.3.0',
'dbname' => 'db',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'admin',
'dbpassword' => 'admin',
'installed' => true,
'maintenance' => false,
'mail_smtpmode' => 'sendmail',
'mail_smtpauthtype' => 'LOGIN',
'mail_from_address' => 'my',
'mail_domain' => 'adress',
'mail_smtpsecure' => 'tls',
'mail_smtphost' => 'smtp',
'mail_smtpport' => '587',
'theme' => '',
'loglevel' => 2,
'mail_smtpauth' => 1,
'app_install_overwrite' =>
array (
0 => 'calendar',
),
'filelocking.ttl' => 21600,
'updater.secret' => 'secret',
);