tobi823
Forum Replies Created
-
Hi tmuikku,
I think that I understand your problem. You want to use the “User logon name (pre-Windows 2000)” like TEST\klammer instead of [email protected]. The plugin could not find any suffix in the username TEST\klammer and the configuration option “Account suffix”. Thats why the parameter $suffixes inside classes/Adi/Authentication/LoginServer.php::158 is empty. Due to the empty $suffixes the foreach loop with the AD authentication will never be executed.
This problem can be solved by adding an empty suffix on default ($suffixes[] = ”;) before the foreach loop on line 165/166 (foreach ($suffixes as $suffix) {).
But I have to check for side effect before I update the plugin. I will do it as soon as possible.
To your second question:
You can have only one Nxt ADI configuration for each “normal” WordPress instance or for each site in a WordPress MultiSite installation.Forum: Plugins
In reply to: [Next Active Directory Integration] Does not support custom roles?Hi bobchou9,
we were not aware that custom wordpress roles are being used. I will fix that as soon as possible.
Forum: Plugins
In reply to: [Next Active Directory Integration] Importing Domain UsersHi odiggy,
the behaviour is caused by the Active Directory.
By setting “Import members of security groups” to “Domain User” the Active Directory returns only all “normal” members.
By setting “Import members of security groups” to “id:513” the Active Directory returns all members which have as their Primary Group the security group “Domain User” with the id 513.You can verify that by:
– open “Active Directory Users and Computers” on your Active Directory
– open the properties window of an user by clicking him
– select tab “Member Of”Please dont change the Primary Group of an user because of some side effects.
- This reply was modified 8 years, 2 months ago by tobi823.
Forum: Plugins
In reply to: [Next Active Directory Integration] activate plugin notification bugHi bobchou9,
i can reproduce this bug. I will fix it as soon as possible.
Hi wordpressrene,
I suppose that you enter your configuration on the “profile options” page (wp-admin/network/admin.php?page=next_ad_int_profile_options)? If yes, then:
– change the permission for every profile option to “Deactivated and option value shown.”
– assign your profile to your blog/site (where you tried to login)On default only the options from the blog configuration (like wp-admin/admin.php?page=next_ad_int_blog_options or seite2/wp-admin/admin.php?page=next_ad_int_blog_options) will be used for login, Sync to WordPress, e.g.
By changing the permission from “Blog admin sets the option value.” to “Deactivated and option value shown.” you enforce your configuration on every blog/site which is assigned to this profile.
If that not help, please send me your wp-content/plugins/next-active-directory-integration/log/debug.log to [email protected].
- This reply was modified 8 years, 2 months ago by tobi823.
Forum: Plugins
In reply to: [Next Active Directory Integration] Some Users cannot authineiticateHi faiqhussain,
the plugin stores debug information in wp-content/plugins/next-active-directory-integration/logs/debug.log. But these debug information are also been displayed during “Sync To WordPress”
Forum: Plugins
In reply to: [Next Active Directory Integration] Unable to Verify CredentialsHi shadynicnack,
the plugin stores debug information in wp-content/plugins/next-active-directory-integration/log.debug. You can send me an email with debug.log to [email protected]. I will see what I can do.
My test user in my test AD has the distinguishedName CN=Karl Klammer,DC=test,DC=ad and the userPrincipalName [email protected].
With DC=test,DC=ad as Base DN the “Test authentication” tool works for user [email protected].
- This reply was modified 8 years, 2 months ago by tobi823.
Hi wordpressrene
are the option values like “account suffix” still visible after a page reload? Can you verify that the option values are stored correctly?
In version 2.0.4 you can configure the log pattern for the debug.log file and for the webpage (when executing “Sync To AD” or “Sync To WordPress”.
Either you manipulate the values in the constants.php (NEXT_AD_INT_FILE_CONVERSION_PATTERN or NEXT_AD_INT_ECHO_CONVERSION_PATTERN) or you can add your custom filter function (NextADInt_Core_Logger::FILE_CONVERSION_PATTERN_FILTER or NextADInt_Core_Logger::ECHO_CONVERSION_PATTERN_FILTER).
Hi tmuikku,
I will add a filter for the log pattern and save the default value inside the index.php. Is that ok? You can track the changes at https://github.com/NeosIT/active-directory-integration2/issues/17
Hi edomelters1,
sorry for the late response. The bug should be fixed already (https://github.com/NeosIT/active-directory-integration2/issues/13).
Does it work now?