Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can.
The Basics
- Nextcloud Server version (e.g., 29.x.x):
- 25.0.13.2
- Operating system and version (e.g., Ubuntu 24.04):
- Truenas Core 13.1-RELEASE-p9 (latest release for truenas core)
- Web server and version (e.g, Apache 2.4.25):
- not too sure about this one
- Reverse proxy and version _(e.g. nginx 1.27.2)
- Caddy v2.6.2
- PHP version (e.g, 8.3):
- PHP 8.1.31
- Is this the first time you’ve seen this error? (Yes / No):
- Yes
- When did this problem seem to first start?
- When attempting to upgrade from V24 to V25
- Installation method (e.g. AlO, NCP, Bare Metal/Archive, etc.)
- I don’t remember the original install method for V24, but for V25, I downloaded the server.zip from nextcloud archives.
- Are you using CloudfIare, mod_security, or similar? (Yes / No)
- Yes, using Cloudflare
Summary of the issue you are facing:
Before seeing the real issues below, I actually ran into a different one which I have solved. That issue was exactly the same as outlined here:
I did the file replacement, taking specifically this commit hash:
Login page loads fine. After inputting correct creds, page redirects to myurl/apps/dashboard/
and client has error:
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.
Log available below.
Unfortunately from searching online, this is not a common issue.
I’ve messed around with this a bit, and I am fairly confident that this is due to the user_status app. It is some desync from the application code and the database definition.
From my occ status
:
nextcloud# occ status
- installed: true
- version: 25.0.13.2
- versionstring: 25.0.13
- edition:
- maintenance: false
- needsDbUpgrade: false
- productname: Nextcloud
- extendedSupport: false
The db seems to be up to date, and here’s how the user status table looks:
MariaDB [nextcloud]> describe oc_user_status
-> ;
+--------------------------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------------------+---------------------+------+-----+---------+----------------+
| id | bigint(20) unsigned | NO | PRI | NULL | auto_increment |
| user_id | varchar(255) | NO | UNI | NULL | |
| status | varchar(255) | NO | | NULL | |
| status_timestamp | int(10) unsigned | NO | MUL | NULL | |
| is_user_defined | tinyint(1) | YES | MUL | NULL | |
| message_id | varchar(255) | YES | | NULL | |
| custom_icon | varchar(255) | YES | | NULL | |
| custom_message | longtext | YES | | NULL | |
| clear_at | int(10) unsigned | YES | MUL | NULL | |
| is_backup | tinyint(1) | YES | | 0 | |
| status_message_timestamp | int(10) unsigned | NO | MUL | 0 | |
+--------------------------+---------------------+------+-----+---------+----------------+
11 rows in set (0.001 sec)
So to me, it seems like there’s an issue with how the table’s status_message_timestamp
field is getting mapped via the mapper from /lib/public/AppFramework/Db/QBMapper.php
I don’t really want to dive in the code to mess with things, but I wonder if it’s due to the difference between status_message_timestamp
and statusMessageTimestamp
like the stack trace is suggesting?
I also just tried to disable the user_status app but it appears to not be possible. Is this like the theming app which cannot be disabled, or am I doing this wrong somehow?
nextcloud# occ app:disable user_status
Not enough arguments (missing: "app-id").
app:disable <app-id>...
Steps to replicate it (hint: details matter!):
- Upgrade from V24 to V25 (latest)
- When running into the issue of passwordHash, replace file as suggested (server/lib/private/Authentication/Token/PublicKeyToken.php at adfe367106ccf1dd158099f10be021702297ebb5 · nextcloud/server · GitHub)
- Attempt to log into the app.
Log entries
Nextcloud
Here is a relevant excerpt of two instances of this happening by refreshing client:
"reqId": "6XZ5ANUkf6Gf29wu1T8J",
"level": 3,
"time": "2025-04-27T22:19:49-07:00",
"remoteAddr": "192.168.1.199",
"user": "admin",
"app": "no app in context",
"method": "GET",
"url": "/ocs/v2.php/apps/user_status/api/v1/user_status?format=json",
"message": "statusMessageTimestamp is not a valid attribute",
"userAgent": "Mozilla/5.0 (Windows) mirall/3.16.0 (build 20250306) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)",
"version": "25.0.13.2",
"exception": {
"Exception": "BadFunctionCallException",
"Message": "statusMessageTimestamp is not a valid attribute",
"Code": 0,
"Trace": [
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"line": 165,
"function": "setter",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "->",
"args": [
"statusMessageTimestamp",
[
1712050254
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"line": 73,
"function": "__call",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "->",
"args": [
"setStatusMessageTimestamp",
[
1712050254
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/QBMapper.php",
"line": 322,
"function": "fromRow",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "::",
"args": [
[
1,
"admin",
"offline",
1745783105,
0,
"And 6 more entries, set log level to debug to see all entries"
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/QBMapper.php",
"line": 362,
"function": "mapRowToEntity",
"class": "OCP\\AppFramework\\Db\\QBMapper",
"type": "->",
"args": [
[
1,
"admin",
"offline",
1745783105,
0,
"And 6 more entries, set log level to debug to see all entries"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Db/UserStatusMapper.php",
"line": 111,
"function": "findEntity",
"class": "OCP\\AppFramework\\Db\\QBMapper",
"type": "->",
"args": [
[
"OC\\DB\\QueryBuilder\\QueryBuilder"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Service/StatusService.php",
"line": 153,
"function": "findByUserId",
"class": "OCA\\UserStatus\\Db\\UserStatusMapper",
"type": "->",
"args": [
"admin"
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Controller/UserStatusController.php",
"line": 84,
"function": "findByUserId",
"class": "OCA\\UserStatus\\Service\\StatusService",
"type": "->",
"args": [
"admin"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php",
"line": 225,
"function": "getStatus",
"class": "OCA\\UserStatus\\Controller\\UserStatusController",
"type": "->",
"args": []
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php",
"line": 133,
"function": "executeController",
"class": "OC\\AppFramework\\Http\\Dispatcher",
"type": "->",
"args": [
[
"OCA\\UserStatus\\Controller\\UserStatusController"
],
"getStatus"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/App.php",
"line": 172,
"function": "dispatch",
"class": "OC\\AppFramework\\Http\\Dispatcher",
"type": "->",
"args": [
[
"OCA\\UserStatus\\Controller\\UserStatusController"
],
"getStatus"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/Route/Router.php",
"line": 298,
"function": "main",
"class": "OC\\AppFramework\\App",
"type": "::",
"args": [
"OCA\\UserStatus\\Controller\\UserStatusController",
"getStatus",
[
"OC\\AppFramework\\DependencyInjection\\DIContainer"
],
[
"ocs.user_status.UserStatus.getStatus"
]
]
},
{
"file": "/usr/local/www/nextcloud/ocs/v1.php",
"line": 64,
"function": "match",
"class": "OC\\Route\\Router",
"type": "->",
"args": [
"/ocsapp/apps/user_status/api/v1/user_status"
]
},
{
"file": "/usr/local/www/nextcloud/ocs/v2.php",
"line": 23,
"args": [
"/usr/local/www/nextcloud/ocs/v1.php"
],
"function": "require_once"
}
],
"File": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"Line": 136,
"CustomMessage": "--"
}
}
{
"reqId": "P6ns78VGZKjA3BHuSLkB",
"level": 3,
"time": "2025-04-27T22:19:49-07:00",
"remoteAddr": "192.168.1.199",
"user": "admin",
"app": "no app in context",
"method": "GET",
"url": "/ocs/v2.php/apps/notifications/api/v2/notifications?format=json",
"message": "statusMessageTimestamp is not a valid attribute",
"userAgent": "Mozilla/5.0 (Windows) mirall/3.16.0 (build 20250306) (Nextcloud, windows-10.0.19045 ClientArchitecture: x86_64 OsArchitecture: x86_64)",
"version": "25.0.13.2",
"exception": {
"Exception": "BadFunctionCallException",
"Message": "statusMessageTimestamp is not a valid attribute",
"Code": 0,
"Trace": [
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"line": 165,
"function": "setter",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "->",
"args": [
"statusMessageTimestamp",
[
1712050254
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"line": 73,
"function": "__call",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "->",
"args": [
"setStatusMessageTimestamp",
[
1712050254
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/QBMapper.php",
"line": 322,
"function": "fromRow",
"class": "OCP\\AppFramework\\Db\\Entity",
"type": "::",
"args": [
[
1,
"admin",
"offline",
1745783105,
0,
"And 6 more entries, set log level to debug to see all entries"
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/QBMapper.php",
"line": 340,
"function": "mapRowToEntity",
"class": "OCP\\AppFramework\\Db\\QBMapper",
"type": "->",
"args": [
[
1,
"admin",
"offline",
1745783105,
0,
"And 6 more entries, set log level to debug to see all entries"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Db/UserStatusMapper.php",
"line": 125,
"function": "findEntities",
"class": "OCP\\AppFramework\\Db\\QBMapper",
"type": "->",
"args": [
[
"OC\\DB\\QueryBuilder\\QueryBuilder"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Service/StatusService.php",
"line": 163,
"function": "findByUserIds",
"class": "OCA\\UserStatus\\Db\\UserStatusMapper",
"type": "->",
"args": [
[
"admin"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/user_status/lib/Connector/UserStatusProvider.php",
"line": 50,
"function": "findByUserIds",
"class": "OCA\\UserStatus\\Service\\StatusService",
"type": "->",
"args": [
[
"admin"
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/UserStatus/Manager.php",
"line": 69,
"function": "getUserStatuses",
"class": "OCA\\UserStatus\\Connector\\UserStatusProvider",
"type": "->",
"args": [
[
"admin"
]
]
},
{
"file": "/usr/local/www/nextcloud/apps/notifications/lib/Controller/EndpointController.php",
"line": 84,
"function": "getUserStatuses",
"class": "OC\\UserStatus\\Manager",
"type": "->",
"args": [
[
"admin"
]
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php",
"line": 225,
"function": "listNotifications",
"class": "OCA\\Notifications\\Controller\\EndpointController",
"type": "->",
"args": [
"v2"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php",
"line": 133,
"function": "executeController",
"class": "OC\\AppFramework\\Http\\Dispatcher",
"type": "->",
"args": [
[
"OCA\\Notifications\\Controller\\EndpointController"
],
"listNotifications"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/AppFramework/App.php",
"line": 172,
"function": "dispatch",
"class": "OC\\AppFramework\\Http\\Dispatcher",
"type": "->",
"args": [
[
"OCA\\Notifications\\Controller\\EndpointController"
],
"listNotifications"
]
},
{
"file": "/usr/local/www/nextcloud/lib/private/Route/Router.php",
"line": 298,
"function": "main",
"class": "OC\\AppFramework\\App",
"type": "::",
"args": [
"OCA\\Notifications\\Controller\\EndpointController",
"listNotifications",
[
"OC\\AppFramework\\DependencyInjection\\DIContainer"
],
[
"v2",
"ocs.notifications.Endpoint.listNotifications"
]
]
},
{
"file": "/usr/local/www/nextcloud/ocs/v1.php",
"line": 64,
"function": "match",
"class": "OC\\Route\\Router",
"type": "->",
"args": [
"/ocsapp/apps/notifications/api/v2/notifications"
]
},
{
"file": "/usr/local/www/nextcloud/ocs/v2.php",
"line": 23,
"args": [
"/usr/local/www/nextcloud/ocs/v1.php"
],
"function": "require_once"
}
],
"File": "/usr/local/www/nextcloud/lib/public/AppFramework/Db/Entity.php",
"Line": 136,
"CustomMessage": "--"
}
}
Web server / Reverse Proxy
Don’t think this is relevant here, but I will paste relevant logs if community thinks so.
Configuration
Nextcloud
The output of occ config:list system
or similar is best, but, if not possible, the contents of your config.php
file from /path/to/nextcloud
is fine (make sure to remove any identifiable information!):
nextcloud# occ config:list system
{
"system": {
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"localhost",
"redacted",
"192.168.1.70",
"191.168.1.199"
],
"datadirectory": "***REMOVED SENSITIVE VALUE***",
"dbtype": "mysql",
"version": "25.0.13.2",
"overwrite.cli.url": "https:\/\/redacted\/",
"dbname": "***REMOVED SENSITIVE VALUE***",
"dbhost": "***REMOVED SENSITIVE VALUE***",
"dbport": "",
"dbtableprefix": "oc_",
"mysql.utf8mb4": true,
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"installed": true,
"instanceid": "***REMOVED SENSITIVE VALUE***",
"logtimezone": "America\/Vancouver",
"default_phone_region": "US",
"log_type": "file",
"logfile": "\/var\/log\/nextcloud\/nextcloud.log",
"loglevel": "2",
"logrotate_size": "104847600",
"memcache.local": "\\OC\\Memcache\\APCu",
"redis": {
"host": "***REMOVED SENSITIVE VALUE***",
"port": 0
},
"memcache.distributed": "\\OC\\Memcache\\Redis",
"memcache.locking": "\\OC\\Memcache\\Redis",
"overwritehost": "redacted",
"overwriteprotocol": "https",
"htaccess.RewriteBase": "\/",
"maintenance": false,
"theme": "",
"preview_max_memory": 4096,
"preview_max_filesize_image": 256,
"enabledPreviewProviders": [
"OC\\Preview\\Image",
"OC\\Preview\\HEIC",
"OC\\Preview\\TIFF",
"OC\\Preview\\Movie",
"OC\\Preview\\MKV",
"OC\\Preview\\MP4",
"OC\\Preview\\AVI"
],
"memories.ffmpeg_path": "\/usr\/local\/bin\/ffmpeg",
"memories.ffprobe_path": "\/usr\/local\/bin\/ffprobe",
"memories.transcoder": "\/usr\/local\/www\/nextcloud\/apps\/memories\/exiftool-bin\/go-vod-amd64",
"memories.no_transcode": false,
"memories.qsv": false,
"memories.gis_type": 1
},
"apps": {
"activity": {
"enabled": "yes",
"installed_version": "2.17.0",
"types": "filesystem"
},
"admin_audit": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": "logging"
},
"announcementcenter": {
"enabled": "no",
"installed_version": "6.3.1",
"types": "logging"
},
"appointments": {
"enabled": "no",
"hk": "9c525f426914abccf605e1cd34f4e31a232e872baa4eaf83ec475c6d9c35a9ae",
"installed_version": "1.14.14",
"tiv": "0fc3ad6af30fce00c81ad1c76fe3e734",
"types": "dav"
},
"apporder": {
"enabled": "no",
"installed_version": "0.15.0",
"types": ""
},
"backgroundjob": {
"lastjob": "706975"
},
"bbb": {
"enabled": "no",
"installed_version": "2.4.0",
"types": "prevent_group_restriction"
},
"breezedark": {
"enabled": "no",
"installed_version": "24.0.3",
"types": ""
},
"bruteforcesettings": {
"enabled": "yes",
"installed_version": "2.5.0",
"types": ""
},
"calendar": {
"enabled": "yes",
"installed_version": "4.6.8",
"types": ""
},
"camerarawpreviews": {
"enabled": "no",
"installed_version": "0.8.1",
"types": "filesystem"
},
"circles": {
"enabled": "no",
"installed_version": "24.0.1",
"loopback_tmp_path": "\/",
"loopback_tmp_scheme": "https",
"maintenance_run": "0",
"maintenance_update": "{\"maximum\":3,\"4\":1669773602,\"3\":1686503103,\"2\":1686504905,\"1\":1686504905,\"5\":1669431601}",
"migration_22": "1",
"migration_run": "0",
"types": "filesystem,dav"
},
"cloud_federation_api": {
"enabled": "yes",
"installed_version": "1.8.0",
"types": "filesystem"
},
"comments": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": "logging"
},
"contacts": {
"enabled": "yes",
"installed_version": "5.5.3",
"types": "dav"
},
"contactsinteraction": {
"enabled": "yes",
"installed_version": "1.6.0",
"types": "dav"
},
"core": {
"backgroundjobs_mode": "cron",
"default_encryption_module": "OC_DEFAULT_MODULE",
"files_metadata": "{\"photos-original_date_time\":{\"value\":null,\"type\":\"int\",\"indexed\":true,\"editPermission\":0},\"photos-exif\":{\"value\":null,\"type\":\"array\",\"indexed\":false,\"editPermission\":0},\"photos-ifd0\":{\"value\":null,\"type\":\"array\",\"indexed\":false,\"editPermission\":0},\"photos-size\":{\"value\":null,\"type\":\"array\",\"indexed\":false,\"editPermission\":0},\"photos-gps\":{\"value\":null,\"type\":\"array\",\"indexed\":false,\"editPermission\":0},\"photos-place\":{\"value\":null,\"type\":\"string\",\"indexed\":true,\"editPermission\":0},\"files-live-photo\":{\"value\":null,\"type\":\"string\",\"indexed\":false,\"editPermission\":1}}",
"files_metadata_installed": "1",
"installedat": "1668315693.697",
"lastcron": "1745817600",
"lastupdateResult": "{\"version\":\"24.0.12.1\",\"versionstring\":\"Nextcloud 24.0.12\",\"url\":\"https:\\\/\\\/download.nextcloud.com\\\/server\\\/releases\\\/nextcloud-24.0.12.zip\",\"web\":\"https:\\\/\\\/docs.nextcloud.com\\\/server\\\/24\\\/admin_manual\\\/maintenance\\\/upgrade.html\",\"changes\":\"https:\\\/\\\/updates.nextcloud.com\\\/changelog_server\\\/?version=24.0.12\",\"autoupdater\":\"1\",\"eol\":\"1\"}",
"lastupdatedat": "0",
"moveavatarsdone": "yes",
"oc.integritycheck.checker": "{\"theming_old_broken\":{\"EXTRA_FILE\":{\"js\\\/3rdparty\\\/jscolor\\\/LICENSE.txt\":{\"expected\":\"\",\"current\":\"7633623b66b5e686bb94dd96a7cdb5a7e5ee00e87004fab416a5610d59c62badaf512a2e26e34e2455b7ed6b76690d2cd47464836d7d85d78b51d50f7e933d5c\"},\"js\\\/3rdparty\\\/jscolor\\\/jscolor.min.js\":{\"expected\":\"\",\"current\":\"571928b11f53b1784139f2b266d2918cf8fa0256586c7d0f37f8a1fc5c16cbf3d14987e6c24ecf3ae82b1d37d985ed16b3fb4bbbf0450b4bfbcf5f2bc86b35e7\"},\"js\\\/3rdparty\\\/jscolor\\\/jscolor.js\":{\"expected\":\"\",\"current\":\"a1ff09cd6364301a1560661ebaa34839a641d287af6c298c8284620324aea5ba3b1fa7ab3f835c81d12fd60a2e99d74daa9e1948f2ccc3b4c54b183b2162488d\"},\"js\\\/settings-admin.js\":{\"expected\":\"\",\"current\":\"5505fefa979461a0b374e847424cc2240aced890b5fb2e2a8656a50a9d5885b0dc0498a1434693774c1e5a35b197e31d70ea0cacdab4c3dc1167eddd6577ee6d\"},\"css\\\/settings-admin.scss\":{\"expected\":\"\",\"current\":\"eca940dd2505dfa168daa957db4250ca3637f433a7ede41705c92fede7d76d5be14eadb49525e3d655de908d31b8bb2daf69e389fa3fbef522c8734e8cb9c242\"},\"css\\\/settings-admin.css\":{\"expected\":\"\",\"current\":\"6361b404ed7c81d50006a2cad9f996caca207d1b96e449e13f44d147b7c1a61bcee5deea64c0003e014679c3f32a40f89f47e44fb15b926131fb311f682d710d\"},\"css\\\/settings-admin.css.map\":{\"expected\":\"\",\"current\":\"9c71db6396f51db497565da126fa1372fc9da6b661f596b61b536494a7ae675a28a33052bcf2ff5e24f57351eb88535cb9f432391ad2c029b33624193e21eeb5\"},\"lib\\\/Migration\\\/MigrateUserConfig.php\":{\"expected\":\"\",\"current\":\"1f188a3f0ce9eff7a4bb583b7b42f08a064e876448259154fa6aad969d4ea625c043b91e2bb5d47cf04f7ae4250a6256f6f52f33ac55024404a165d7ad7c8c13\"},\"lib\\\/Migration\\\/MigrateAdminConfig.php\":{\"expected\":\"\",\"current\":\"d943d1dc01f2508e4a042c8753b9934913452c9bf3e2aad4fa4397e35a26b4443031f2797e90082ea1ec5424049f3d2a63cfb3fff69162a7b2f2d2380f251084\"}}}}",
"previewsCleanedUp": "1",
"public_files": "files_sharing\/public.php",
"public_webdav": "dav\/appinfo\/v1\/publicwebdav.php",
"theming.variables": "a123f4e02b6daa90672ad154e99d6802",
"updater.secret.created": "1669830714",
"vendor": "nextcloud"
},
"dashboard": {
"enabled": "yes",
"installed_version": "7.5.0",
"types": ""
},
"dav": {
"buildCalendarReminderIndex": "yes",
"buildCalendarSearchIndex": "yes",
"builtSocialSearchIndex": "yes",
"chunks_migrated": "1",
"enabled": "yes",
"installed_version": "1.24.0",
"needs_system_address_book_sync": "no",
"regeneratedBirthdayCalendarsForYearFix": "yes",
"types": "filesystem"
},
"deck": {
"enabled": "yes",
"installed_version": "1.8.8",
"types": "dav"
},
"drawio": {
"DrawioAutosave": "yes",
"DrawioLang": "auto",
"DrawioLibraries": "no",
"DrawioOffline": "no",
"DrawioTheme": "kennedy",
"DrawioUrl": "https:\/\/embed.diagrams.net",
"enabled": "no",
"installed_version": "2.1.4",
"types": "filesystem"
},
"encryption": {
"enabled": "no",
"installed_version": "2.12.0",
"masterKeyId": "master_90fb0e85",
"publicShareKeyId": "pubShare_90fb0e85",
"recoveryKeyId": "recoveryKey_90fb0e85",
"types": "filesystem"
},
"extract": {
"enabled": "no",
"installed_version": "1.3.6",
"types": ""
},
"federatedfilesharing": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": ""
},
"federation": {
"enabled": "no",
"installed_version": "1.14.0",
"types": "authentication"
},
"files": {
"enabled": "yes",
"installed_version": "1.20.1",
"types": "filesystem"
},
"files_accesscontrol": {
"enabled": "no",
"installed_version": "1.14.1",
"types": "filesystem"
},
"files_archive": {
"enabled": "no",
"installed_version": "1.1.2",
"types": "filesystem,dav"
},
"files_fulltextsearch": {
"enabled": "no",
"installed_version": "24.0.1",
"types": "filesystem"
},
"files_markdown": {
"enabled": "no",
"installed_version": "2.4.0",
"types": ""
},
"files_pdfviewer": {
"enabled": "yes",
"installed_version": "2.6.0",
"types": ""
},
"files_reminders": {
"enabled": "no",
"installed_version": "1.1.0",
"types": "dav"
},
"files_rightclick": {
"enabled": "no",
"installed_version": "1.6.0",
"types": ""
},
"files_sharing": {
"enabled": "yes",
"installed_version": "1.17.0",
"types": "filesystem"
},
"files_trashbin": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": "filesystem,dav"
},
"files_versions": {
"enabled": "yes",
"installed_version": "1.18.0",
"types": "filesystem,dav"
},
"firstrunwizard": {
"enabled": "no",
"installed_version": "2.13.0",
"types": "logging"
},
"forms": {
"enabled": "no",
"installed_version": "2.5.2",
"types": ""
},
"fulltextsearch": {
"enabled": "no",
"installed_version": "24.0.0",
"types": ""
},
"integration_github": {
"enabled": "no",
"installed_version": "1.0.4",
"types": ""
},
"integration_reddit": {
"enabled": "no",
"installed_version": "1.0.7",
"types": ""
},
"logreader": {
"enabled": "yes",
"installed_version": "2.10.0",
"types": ""
},
"lookup_server_connector": {
"enabled": "yes",
"installed_version": "1.13.0",
"types": "authentication"
},
"maps": {
"enabled": "yes",
"installed_version": "1.1.0",
"osrmDEMO": "1",
"types": "filesystem"
},
"memories": {
"enabled": "no",
"installed_version": "7.4.1",
"last_index_job_duration": "86.35",
"last_index_job_start": "1742408102",
"last_index_job_status": "Indexing completed successfully",
"last_index_job_status_type": "success",
"types": ""
},
"nextcloud_announcements": {
"enabled": "no",
"installed_version": "1.13.0",
"pub_date": "Thu, 24 Oct 2019 00:00:00 +0200",
"types": "logging"
},
"notes": {
"enabled": "no",
"installed_version": "4.5.1",
"types": ""
},
"notifications": {
"enabled": "yes",
"installed_version": "2.13.1",
"types": "logging"
},
"oauth2": {
"enabled": "yes",
"installed_version": "1.13.1",
"types": "authentication"
},
"onlyoffice": {
"enabled": "no",
"installed_version": "9.0.0",
"types": "prevent_group_restriction"
},
"password_policy": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": "authentication"
},
"photos": {
"enabled": "yes",
"installed_version": "2.0.1",
"lastPlaceMappedUser": "wl",
"lastPlaceMappingDone": "true",
"types": "dav,authentication"
},
"previewgenerator": {
"enabled": "no",
"heightSizes": "512",
"installed_version": "5.6.0",
"squareSizes": "512",
"types": "filesystem",
"widthSizes": "512"
},
"privacy": {
"enabled": "yes",
"fullDiskEncryptionEnabled": "0",
"installed_version": "1.9.0",
"readableLocation": "ca",
"types": ""
},
"provisioning_api": {
"enabled": "yes",
"installed_version": "1.15.0",
"types": "prevent_group_restriction"
},
"recommendations": {
"enabled": "yes",
"installed_version": "1.4.0",
"types": ""
},
"related_resources": {
"enabled": "yes",
"installed_version": "1.0.4",
"types": ""
},
"richdocuments": {
"enabled": "no",
"installed_version": "6.3.9",
"types": "prevent_group_restriction"
},
"serverinfo": {
"cached_count_filecache": "849660",
"cached_count_storages": "9",
"enabled": "yes",
"installed_version": "1.15.0",
"types": ""
},
"settings": {
"enabled": "yes",
"installed_version": "1.7.0",
"types": ""
},
"sharebymail": {
"enabled": "no",
"installed_version": "1.14.0",
"types": "filesystem"
},
"socialsharing_twitter": {
"enabled": "no",
"installed_version": "3.1.0",
"types": ""
},
"spreed": {
"enabled": "no",
"has_reference_id": "yes",
"installed_version": "18.0.5",
"project_access_invalidated": "1",
"signaling_token_privkey_es256": "***REMOVED SENSITIVE VALUE***",
"signaling_token_pubkey_es256": "***REMOVED SENSITIVE VALUE***",
"types": "dav,prevent_group_restriction"
},
"support": {
"SwitchUpdaterServerHasRun": "yes",
"enabled": "yes",
"installed_version": "1.8.0",
"types": "session"
},
"survey_client": {
"enabled": "yes",
"installed_version": "1.13.0",
"types": ""
},
"systemtags": {
"enabled": "no",
"installed_version": "1.14.0",
"types": "logging"
},
"text": {
"enabled": "yes",
"installed_version": "3.6.0",
"types": "dav"
},
"theming": {
"backgroundMime": "image\/jpeg",
"cachebuster": "4",
"color": "#E23B9A",
"enabled": "yes",
"installed_version": "2.0.1",
"slogan": "***REMOVED SENSITIVE VALUE***",
"types": "logging"
},
"twofactor_backupcodes": {
"enabled": "yes",
"installed_version": "1.14.0",
"types": ""
},
"unsplash": {
"enabled": "no",
"installed_version": "2.0.1",
"types": ""
},
"updatenotification": {
"appointments": "1.14.14",
"breezedark": "24.0.3",
"calendar": "3.5.7",
"camerarawpreviews": "0.8.1",
"contacts": "4.2.5",
"core": "24.0.12.1",
"deck": "1.7.4",
"drawio": "2.1.1",
"enabled": "no",
"files_archive": "1.1.2",
"files_markdown": "2.4.0",
"forms": "2.5.2",
"installed_version": "1.14.0",
"integration_reddit": "1.0.7",
"maps": "0.2.2",
"onlyoffice": "7.7.0",
"previewgenerator": "5.2.4",
"richdocuments": "6.3.5",
"spreed": "14.0.11",
"types": "",
"update_check_errors": "0"
},
"user_status": {
"enabled": "yes",
"installed_version": "1.5.0",
"types": ""
},
"viewer": {
"enabled": "yes",
"installed_version": "1.9.0",
"types": ""
},
"weather_status": {
"enabled": "yes",
"installed_version": "1.5.0",
"types": ""
},
"workflow_media_converter": {
"enabled": "no",
"installed_version": "1.7.0",
"types": ""
},
"workflowengine": {
"enabled": "yes",
"installed_version": "2.7.0",
"types": "filesystem"
}
}
}
Apps
The output of occ app:list
(if possible).
nextcloud# occ app:list
Enabled:
- activity: 2.17.0
- admin_audit: 1.15.0
- bruteforcesettings: 2.5.0
- calendar: 4.6.8
- cloud_federation_api: 1.8.0
- comments: 1.15.0
- contacts: 5.5.3
- contactsinteraction: 1.6.0
- dashboard: 7.5.0
- dav: 1.24.0
- deck: 1.8.8
- federatedfilesharing: 1.15.0
- files: 1.20.1
- files_pdfviewer: 2.6.0
- files_sharing: 1.17.0
- files_trashbin: 1.15.0
- files_versions: 1.18.0
- logreader: 2.10.0
- lookup_server_connector: 1.13.0
- maps: 1.1.0
- notifications: 2.13.1
- oauth2: 1.13.1
- password_policy: 1.15.0
- photos: 2.0.1
- privacy: 1.9.0
- provisioning_api: 1.15.0
- recommendations: 1.4.0
- related_resources: 1.0.4
- serverinfo: 1.15.0
- settings: 1.7.0
- support: 1.8.0
- survey_client: 1.13.0
- text: 3.6.0
- theming: 2.0.1
- twofactor_backupcodes: 1.14.0
- user_status: 1.5.0
- viewer: 1.9.0
- weather_status: 1.5.0
- workflowengine: 2.7.0
Disabled:
- circles: 24.0.1
- encryption: 2.12.0
- federation: 1.14.0
- files_external
- files_rightclick: 1.6.0
- firstrunwizard: 2.13.0
- nextcloud_announcements: 1.13.0
- sharebymail: 1.14.0
- suspicious_login
- systemtags: 1.14.0
- theming_old_broken
- twofactor_totp
- updatenotification: 1.14.0
- user_ldap