I have been using Nextcloud for years. I upgraded from 26 to 27 to 28. After seeing all of the warning messages I began to tackle them. The first was that I needed to upgrade from php 8.0 to 8.1 or higher. I tried to do just that. The error I get now is below.
`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.`
My apache access.log output is below.
192.168.2.1 - admin [07/Jan/2024:21:12:41 +0000] "GET /status.php HTTP/1.1" 500 719 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
192.168.1.22 - - [07/Jan/2024:21:13:33 +0000] "GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1" 500 185 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0"
192.168.2.1 - admin [07/Jan/2024:21:13:44 +0000] "GET /status.php HTTP/1.1" 500 3893 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
192.168.1.22 - - [07/Jan/2024:21:13:57 +0000] "PUT /ocs/v2.php/apps/user_status/api/v1/heartbeat?format=json HTTP/1.1" 500 185 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0"
192.168.2.1 - admin [07/Jan/2024:21:14:45 +0000] "GET /status.php HTTP/1.1" 500 719 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
192.168.1.21 - - [07/Jan/2024:21:14:56 +0000] "GET /index.php HTTP/1.1" 500 477 "http://192.168.2.10/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0"
192.168.1.21 - - [07/Jan/2024:21:14:58 +0000] "GET /index.php HTTP/1.1" 500 477 "http://192.168.2.10/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0"
192.168.2.1 - admin [07/Jan/2024:21:15:47 +0000] "GET /status.php HTTP/1.1" 500 719 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
192.168.2.1 - admin [07/Jan/2024:21:16:49 +0000] "GET /status.php HTTP/1.1" 500 719 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
192.168.1.22 - - [07/Jan/2024:21:16:52 +0000] "GET /index.php/csrftoken HTTP/1.1" 500 477 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/119.0"
192.168.2.1 - admin [07/Jan/2024:21:17:51 +0000] "GET /status.php HTTP/1.1" 500 719 "-" "Mozilla/5.0 (Windows) mirall/3.4.1stable-Win64 (build 20211221) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
I do not know where my nextcloud log file is located. The list of my nextcloud folder is below.
<?php
$CONFIG = array (
'instanceid' => x
'passwordsalt' => x
'secret' => x
'trusted_domains' =>
array (
0 => 'x
),
'datadirectory' => '/mnt/NextCloud',
'dbtype' => 'mysql',
'version' => '28.0.1.1',
'overwrite.cli.url' => x
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'memcache.local' => '\\OC\\Memcache\\APCu',
'dbuser' => 'nextcloud',
'dbpassword' => x
'installed' => true,
'maintenance' => true,
'loglevel' => 2,
'updater.release.channel' => 'stable',
'mysql.utf8mb4' => true,
'mail_from_address' => x
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => x
'mail_smtphost' => x
'mail_smtpport' => '587',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => 1,
'mail_smtpname' => x
'mail_smtppassword' => x
'mail_smtpsecure' => 'tls',
'theme' => '',
);
Nextcloud version - 28.0.1
Ubuntu 20.04
Apache 2.4.41
PHP 8.3 (upgraded from 8.0)