TL;DR XMod Pro 4.9.2: Resolves an issue on DNN 9.3.2 and later where the <AddUser> tag would not send verification emails to new users on sites whose registration mode was set to Verify. DETAILS: Yesterday we were notified of an issue in DNN. As you are probably aware, registration in DNN can be set to Private, Verified, Public, or None. When a user registers, an email is sent to the user. Its con
I have a basic registration form using the usual country/region dropdown lists. The feeds and values are working properly (eg pick US and NC and you get 221 and 279 - or whatever DNN entryID is for those 2) Everything is working fine EXCEPT for the region property. I am aware of the issues with adduser and having to name the property value as in Property name ="Region" type syntax. I have added a
I'm using a form to manage users for a Europe wide group. I'm managing user additions by using the <AddUser... > tag with the RoleNames attribute set to a list of roles from a checkbox list. In the EDIT FORM, I'm using <UpdateUser... > but that has no RoleNames attribute. I've tried using the <AddToRoles... /> tag on the Edit Form, but this doesn't work. Any pointers would be gratefully received.
it appears that <adduser> is working correctly in my forms. The action runs and the user is created but it is not populating FirstName and LastName even when parameters are hard coded... Email, username, password, display name are working. Can anyone confirm this? Or suggest what the issue might be?
Is it possible to use XMOD's AddUser function when a user checks a checkbox in a Grid Template? For more detail: I have a table displayed in a grid that contains records which have values for users and an IsVerified field. When an administrator checks the IsVerified for that record then the User will be created with the relevant information for that record. If unselected then the user is removed(o
How would I go about calling a stored procedure using the UserID created with AddUser?
Hi. I need to run a stored procedure after a user has registered via the (AddUser) action, and I need to pass the UserID token to the stored procedure. Traditionally in XMP, you can call a stored procedure from the (SubmitCommand) statement. However, since (AddUser) only runs after (SubmitCommmand), the UserID token is unavailable to SubmitCommand. Does anyone have any ideas about how to approach