If you have access to your command line run e.g.:
sudo -u www-data php occ config:list system
from within your Nextcloud installation folder
{
"system": {
"trashbin_retention_obligation": "auto, 30",
"instanceid": "***REMOVED SENSITIVE VALUE***",
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"**redacted-address**",
"**redacted-address**"
],
"datadirectory": "***REMOVED SENSITIVE VALUE***",
"overwrite.cli.url": "https:\/\/**redacted-address**",
"overwriteprotocol": "https",
"memcache.local": "\\OC\\Memcache\\Redis",
"memcache.locking": "\\OC\\Memcache\\Redis",
"redis": {
"host": "***REMOVED SENSITIVE VALUE***",
"port": 6379,
"timeout": 0,
"password": "***REMOVED SENSITIVE VALUE***"
},
"dbtype": "mysql",
"dbname": "***REMOVED SENSITIVE VALUE***",
"dbhost": "***REMOVED SENSITIVE VALUE***",
"dbport": "",
"dbtableprefix": "oc_",
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"version": "33.0.0.16",
"installed": true,
"ldapIgnoreNamingRules": false,
"ldapProviderFactory": "OCA\\User_LDAP\\LDAPProviderFactory",
"app_install_overwrite": {
"0": "whiteboard",
"2": "fulltextsearch",
"3": "fulltextsearch_elasticsearch",
"4": "files_fulltextsearch",
"5": "dashboardcharts",
"6": "ownpad",
"7": "timetracker",
"8": "keeweb",
"9": "documents"
},
"mail_smtpmode": "smtp",
"mail_smtphost": "***REMOVED SENSITIVE VALUE***",
"mail_sendmailmode": "smtp",
"mail_from_address": "***REMOVED SENSITIVE VALUE***",
"mail_domain": "***REMOVED SENSITIVE VALUE***",
"theme": "",
"loglevel": 1,
"has_rebuilt_cache": true,
"default_language": "de_DE",
"htaccess.RewriteBase": "\/",
"maintenance": false,
"encryption.legacy_format_support": false,
"encryption.key_storage_migrated": false,
"maintenance_window_start": 1,
"mysql.utf8mb4": true,
"serverid": 1,
"default_phone_region": "DE",
"mail_smtpport": "25",
"mail_smtpstreamoptions": {
"ssl": {
"allow_self_signed": false,
"verify_peer": true,
"verify_peer_name": true
}
},
"allow_local_remote_servers": true
}
}
How to use GitHub
Steps to reproduce
occ circles:checkExpected behaviour
No profit, uhm, a better error message
Actual behaviour
For debugging purposes, I extended line 287 in
apps/circles/lib/Command/CirclesCheck.php:$output->writeln('<error>Event created too many Wrappers</error>: '. count($wrappers) );. The result:I wouldn't call zero "too many Wrappers" and neither would I go from
if( count($wrappers) !== 1 )to "oh, that's too many" but to "that's not the expected count of$wrappers" 😉.Still can't figure out why that happens, though. But that's another issue.
Server configuration
Web server: Nginx
Database: MariaDB
PHP version: 8.4
Nextcloud version: (see Nextcloud admin page)
List of activated apps
Nextcloud configuration
{ "system": { "trashbin_retention_obligation": "auto, 30", "instanceid": "***REMOVED SENSITIVE VALUE***", "passwordsalt": "***REMOVED SENSITIVE VALUE***", "secret": "***REMOVED SENSITIVE VALUE***", "trusted_domains": [ "**redacted-address**", "**redacted-address**" ], "datadirectory": "***REMOVED SENSITIVE VALUE***", "overwrite.cli.url": "https:\/\/**redacted-address**", "overwriteprotocol": "https", "memcache.local": "\\OC\\Memcache\\Redis", "memcache.locking": "\\OC\\Memcache\\Redis", "redis": { "host": "***REMOVED SENSITIVE VALUE***", "port": 6379, "timeout": 0, "password": "***REMOVED SENSITIVE VALUE***" }, "dbtype": "mysql", "dbname": "***REMOVED SENSITIVE VALUE***", "dbhost": "***REMOVED SENSITIVE VALUE***", "dbport": "", "dbtableprefix": "oc_", "dbuser": "***REMOVED SENSITIVE VALUE***", "dbpassword": "***REMOVED SENSITIVE VALUE***", "version": "33.0.0.16", "installed": true, "ldapIgnoreNamingRules": false, "ldapProviderFactory": "OCA\\User_LDAP\\LDAPProviderFactory", "app_install_overwrite": { "0": "whiteboard", "2": "fulltextsearch", "3": "fulltextsearch_elasticsearch", "4": "files_fulltextsearch", "5": "dashboardcharts", "6": "ownpad", "7": "timetracker", "8": "keeweb", "9": "documents" }, "mail_smtpmode": "smtp", "mail_smtphost": "***REMOVED SENSITIVE VALUE***", "mail_sendmailmode": "smtp", "mail_from_address": "***REMOVED SENSITIVE VALUE***", "mail_domain": "***REMOVED SENSITIVE VALUE***", "theme": "", "loglevel": 1, "has_rebuilt_cache": true, "default_language": "de_DE", "htaccess.RewriteBase": "\/", "maintenance": false, "encryption.legacy_format_support": false, "encryption.key_storage_migrated": false, "maintenance_window_start": 1, "mysql.utf8mb4": true, "serverid": 1, "default_phone_region": "DE", "mail_smtpport": "25", "mail_smtpstreamoptions": { "ssl": { "allow_self_signed": false, "verify_peer": true, "verify_peer_name": true } }, "allow_local_remote_servers": true } }