schakko
Forum Replies Created
-
Forum: Plugins
In reply to: [Next Active Directory Integration] Cannot save configuration settingsGlad to hear that, thank you for the info!
Forum: Plugins
In reply to: [Next Active Directory Integration] Global Sync User Question@pegasuspress I have just corrected the shown text into “Please make sure you have added all UPN suffixes to the configuration tab User -> Account suffix”.
Please take a look into the documentation at https://active-directory-wp.com/docs/Getting_Started.html or purchase a support license and open a ticket.
Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADNo sorry, no French. Please take a look into the documentation: https://www.active-directory-wp.com/docs/Getting_Started.html
Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADI do not understand your reply. The synchronization did work (see above) but you can’t login because there are no WordPress roles mapped to Role Equivalent Groups.
Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADThis issue has been fixed. The fix (ADI-412) will be available in version 2.0.11.
Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADOk guys, I took a deeper look into this. I could reproduce the issue if the Active Directory account has no UPN suffix assigned.
e.g.:
– NADI configuration
— AD username: intranet@my.ad
— AD password: $my_password
– AD configuration
— sAMAccountName: intranet
— userPrincipalName: intranet
— UPN suffix: <empty>The authentication works but NADI can not resolve the AD attributes of the intranet@my.ad account as the userPrincipalName does not exist.
Solution: In the “Active Directory User and Computer MMC” > “Account” > “User logon name”: Make sure, that the first box (User logon name) contains your username (“intranet”) and in the second select list behind your UPN suffix is selected (“@my.ad”).
Let me know if this worked.
Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADThat was what I asked for, thank you 🙂
This is the response I had expected. I will take a deeper look into this contemporary.Forum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from AD@kyleabailey That is … interesting. Can you verify that your administrator account you use for the verification process has a valid SID? You can issue the following command to get the object SID of the Administrator
dsquery * -filter (samAccountName=Administrator) -attr ObjectSIDForum: Plugins
In reply to: [Next Active Directory Integration] Synch group members from ADWe have to a look at this in the next weeks. I can not reproduce this error on the fly in our environment. Would you re-verify your AD connection settings to see if or if not the domain SID is set?
Forum: Plugins
In reply to: [Next Active Directory Integration] Service Account PasswordThe password is stored encrypted. You can echo the decrpyted password if you are using the Sync Back option.
In ad-integration.php, line 1342 you can change
if ($this->_syncback_use_global_user === true) {
$ad_username = $this->_syncback_global_user;
$ad_password = $this->_decrypt($this->_syncback_global_pwd);
} else {into
if ($this->_syncback_use_global_user === true) {
$ad_username = $this->_syncback_global_user;
$ad_password = $this->_decrypt($this->_syncback_global_pwd);
die(“AD password: ” . $ad_password);
} else {and start the syncback process.
Otherwise you have to manually change the password of the account by using PowerShell or MMC.Forum: Plugins
In reply to: [Next Active Directory Integration] Understanding licenceHi @brunobarros,
“free” does not mean that support is for free. You can use the plug-in without any fees and we have a detailed documentation. But if you need support from our team you need to purchase a support license.Forum: Plugins
In reply to: [Next Active Directory Integration] Cannot save configuration settings@pwssupport Would you please include the HTTP body in your reply? Does the debug.log of NADI contains any error messages? Does the error.log of your Apache contains any errors?
Forum: Plugins
In reply to: [Next Active Directory Integration] Cannot save configuration settingsThis is the first time I see any JavaScript errors. My guess is that the returned JSON content is UTF-8 but your WordPress delivers another charset.
How does the HTTP server reponse which contains the JSON content look like? You can see it with the developer console of your browser.Forum: Plugins
In reply to: [Next Active Directory Integration] buddypress xprofileAt the moment there is no way to write the attributes to different WordPress settings/keys. We have plans for adding a usable API which could be used to accomplish this but no release date.
Forum: Plugins
In reply to: [Next Active Directory Integration] EncodingDid you check your MySQL database that UTF-8 is used as encoding character set? Please get in touch with us to receive a written offer to get this fixed in the near future.