Hello,
I have run into an issue upgrading my Nextcloud app. I have looked through the logs but unfortunately I do not feel that I understand this well enough to effectively troubleshoot. Any insight or ideas would be very appreciated.
My YunoHost server
**Hardware:Zotac Zbox EN760 SFF PC.
YunoHost version: 11.2.9.1
I have access to my server : Through the web admin panel and through SSH
Are you in a special context or did you perform some particular tweaking on your YunoHost instance ? : yes
If yes, please explain: Installed the Face Recognition app which required some advanced config.
If your request is related to an app, specify its name and version: Nextcloud 28.0.1~ynh1
Description of my issue
I attempted to upgrade the Nextcloud app on my Yunohost instance via the web interface and it failed. I first updated all of the system packages, followed by my attempt to upgrade the app. I am not 100% sure but as far as I am aware the Nextcloud app was functioning before this attempted upgrade. I have not logged into the web interface for the last week or so, but I do use Nextcloud to back up the photos on my phone, and typically it will give me an error notification if it is unable to upload.
Here is the YunoPaste log provided by the installer. https://paste.yunohost.org/raw/ogovenuzec. Additionally when I attempt to access Nextcloud in browser I receive the following generic error message referencing the server log. Unfortunately I am not sure where this log is located so that I may post it.
:"Internal Server Error
The server encountered an internal error and was unable to complete your request.
Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.
More details can be found in the server log."
The YunoPaste log mentions in a warning that /var/www/nextcloud/config/config.php has been edited. Here is a copy of the contents of that file with identifying information removed.
<?php
$CONFIG = array (
'passwordsalt' => 'REDACTED',
'secret' => 'REDACTED',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'REDACTED',
),
'datadirectory' => '/home/yunohost.app/nextcloud/data',
'dbtype' => 'mysql',
'version' => '27.1.4.1',
'overwrite.cli.url' => 'REDACTED',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'REDACTED',
'installed' => true,
'instanceid' => 'REDACTED',
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
'updatechecker' => false,
'memcache.local' => '\\OC\\Memcache\\APCu',
'integrity.check.disabled' => true,
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'localhost',
'port' => '6379',
'timeout' => '0.0',
'password' => '',
),
'hashing_default_password' => true,
'localstorage.allowsymlinks' => true,
'logout_url' => 'REDACTED',
'maintenance' => false,
'preview_max_x' => '2048',
'preview_max_y' => '2048',
'jpeg_quality' => '60',
'loglevel' => 2,
'simpleSignUpLink.shown' => false,
'app_install_overwrite' =>
array (
0 => 'facerecognition',
),
);