-
Notifications
You must be signed in to change notification settings - Fork 11
Description
How to use GitHub
- Please use the 👍 reaction to show that you are affected by the same issue.
- Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
- Subscribe to receive notifications on status change and new comments.
Steps to reproduce
- Install and configure Nextcloud and LDAP
- Configure Users and Groups on LDAP
- Modify the groups of one user
Expected behaviour
By changing the groups the user belongs to, the change is recorded on LDAP
Actual behaviour
When modifying user groups the change is not recorded on LDAP
Server configuration
<?php
$CONFIG = array (
'datadirectory' => '/data',
'instanceid' => '************',
'passwordsalt' => '/*********************',
'secret' => '***************************************',
'trusted_domains' =>
array (
0 => '192.168.1.100:70',
),
'dbtype' => 'mysql',
'version' => '31.0.1.2',
'overwrite.cli.url' => 'http://192.168.1.100:70',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '*******',
'dbpassword' => '********',
'installed' => true,
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
'app_install_overwrite' =>
array (
0 => 'wopi',
),
'loglevel' => 2,
'maintenance' => false,
'memcache.local' => '\\OC\\Memcache\\APCu',
'filelocking.enabled' => true,
'memcache.locking' => '\\OC\\Memcache\\APCu',
'upgrade.disable-web' => true,
);Web server: Apache/Nginx
Ngnix Version 2024/05/27
Database: MySQL/Maria/SQLite/PostgreSQL
MariaDB 11.4.5
PHP version: 8.1/8.2/8.3
PHP 8.3.17
Nextcloud version: (see Nextcloud admin page)
Nextcloud Hub 10 (31.0.1)
List of activated apps
occ app:listEnabled:
- activity: 4.0.0
- app_api: 5.0.2
- bruteforcesettings: 4.0.0
- calendar: 5.1.3
- circles: 31.0.0
- cloud_federation_api: 1.14.0
- comments: 1.21.0
- contacts: 7.0.4
- contactsinteraction: 1.12.0
- dashboard: 7.11.0
- dav: 1.33.0
- federatedfilesharing: 1.21.0
- federation: 1.21.0
- files: 2.3.1
- files_downloadlimit: 4.0.0
- files_external: 1.23.0
- files_pdfviewer: 4.0.0
- files_reminders: 1.4.0
- files_sharing: 1.23.1
- files_trashbin: 1.21.0
- files_versions: 1.24.0
- firstrunwizard: 4.0.0
- ldap_write_support: 1.13.0
- logreader: 4.0.0
- lookup_server_connector: 1.19.0
- mail: 4.2.6
- nextcloud_announcements: 3.0.0
- notes: 4.11.0
- notifications: 4.0.0
- oauth2: 1.19.1
- password_policy: 3.0.0
- photos: 4.0.0-dev.1
- privacy: 3.0.0
- profile: 1.0.0
- provisioning_api: 1.21.0
- recommendations: 4.0.0
- related_resources: 2.0.0
- richdocuments: 8.6.2
- serverinfo: 3.0.0
- settings: 1.14.0
- sharebymail: 1.21.0
- spreed: 21.0.1
- support: 3.0.0
- survey_client: 3.0.0
- systemtags: 1.21.1
- text: 5.0.0
- theming: 2.6.1
- twofactor_backupcodes: 1.20.0
- updatenotification: 1.21.0
- user_ldap: 1.22.0
- user_status: 1.11.0
- viewer: 4.0.0
- weather_status: 1.11.0
- webhook_listeners: 1.2.0
- workflowengine: 2.13.0
Disabled:
- admin_audit: 1.21.0
- encryption: 2.19.0
- suspicious_login: 9.0.1
- twofactor_nextcloud_notification: 5.0.0
- twofactor_totp: 13.0.0-dev.0
Nextcloud configuration
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
occ config:list system
{
"system": {
"datadirectory": "REMOVED SENSITIVE VALUE",
"instanceid": "REMOVED SENSITIVE VALUE",
"passwordsalt": "REMOVED SENSITIVE VALUE",
"secret": "REMOVED SENSITIVE VALUE",
"trusted_domains": [
"192.168.1.100:70"
],
"dbtype": "mysql",
"version": "31.0.1.2",
"overwrite.cli.url": "http://192.168.1.100:70",
"dbname": "REMOVED SENSITIVE VALUE",
"dbhost": "REMOVED SENSITIVE VALUE",
"dbport": "",
"dbtableprefix": "oc_",
"mysql.utf8mb4": true,
"dbuser": "REMOVED SENSITIVE VALUE",
"dbpassword": "REMOVED SENSITIVE VALUE",
"installed": true,
"ldapProviderFactory": "OCA\User_LDAP\LDAPProviderFactory",
"app_install_overwrite": [
"wopi"
],
"loglevel": 2,
"maintenance": false,
"memcache.local": "\OC\Memcache\APCu",
"filelocking.enabled": true,
"memcache.locking": "\OC\Memcache\APCu",
"upgrade.disable-web": true
}
}
Browser
Browser name: Firefox/Chrome/Safari/…
Chrome
Browser version: 124/125/…
Versione 134.0.6998.89
Operating system: Windows/Ubuntu/Mac/…
Windows 11


