Googling this message brings up tonnes of discussion on this issue, but very little resolution.
Most of the discussion involves running Collabora in a docker container as well, I’m using the CODE service. I have also tried using a demo server, only to receive the same error.
There are no errors in the nextcloud.log file, no errors in the apache logs, and no errors in the system logs. So I don’t have anything to go on…How does one go about debugging this when using the CODE service?
Nextcloud version (eg, 20.0.5): 25.0.4
Operating system and version (eg, Ubuntu 20.04): Fedora 37
Apache or nginx version (eg, Apache 2.4.25): 2.4.56
PHP version (eg, 7.4): 8.1.6
<?php
$CONFIG = array (
'allow_local_remote_servers' => true,
'debug' => true,
'instanceid' => '',
'passwordsalt' => '',
'secret' => '',
'trusted_domains' =>
array (
0 => '',
1 => '',
),
'datadirectory' => '/export/home1/cloud_data',
'dbtype' => 'mysql',
'default_phone_region' => 'US',
'version' => '25.0.4.1',
'overwrite.cli.url' => 'https://nc.com/',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '',
'dbpassword' => '',
'installed' => true,
'memcache.local' => '\\OC\\Memcache\\APCu',
'maintenance' => false,
'theme' => '',
'loglevel' => 2,
'mail_from_address' => '',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => '',
'mail_smtphost' => '',
'updater.release.channel' => 'stable',
'trashbin_retention_obligation' => 'auto, 30',
'enable_previews' => true,
'preview_max_x' => 512,
'preview_max_y' => 512,
'preview_max_scale_factor' => 1,
'jpeg_quality' => '60',
'app_install_overwrite' =>
array (
0 => 'previewgenerator',
),
);
~