Generally used for a component of the software system - which is responsible for creating, managing and controlling users. This includes classical "authentication and authorization" terms too.
Questions tagged [user-management]
537 questions
0
votes
1 answer
Yii2.0 advanced template user-management Module
I am working with Yii2 with advanced template with frontend and backend.
i just want to implement Yii2.0 user-management Module in backend section. will it be possible?
in yii2 basic i have tried below reference and its working fine.
Ref :…

Ashok Chandrapal
- 1,020
- 7
- 27
0
votes
1 answer
Modifying UserAccountControl Flags - Toggling a Flag
I am wondering if there is a way to toggle a UserAccountControl flag on or off despite the other flags' states. For example, let's say we have a configuration like the following:
How would I only toggle the 'Password never expires' flag to true…

User 5842
- 2,849
- 7
- 33
- 51
0
votes
0 answers
Change Password for user in Django when not using the Django User model
I'm halfway through a Django project and we did not start with the default Django User model that is provided. Now it is too late into the project to go back and implement the User model.
The user I have has a set of fields including email,…

Khaled Alomari
- 11
- 1
0
votes
2 answers
mysql - Maintaining Subscription List of a Group in a Website
I'm creating a website where the users can join certain groups. Now I need to maintain the set of users in each group and/or the set of groups that each user has joined. Since MySql doesn't support arrays, I cannot maintain say, an array of users in…

samurdhilbk
- 419
- 1
- 5
- 16
0
votes
1 answer
Web App Central AAA
I would like to centralise user management including authentication, authorisation and auditing as this is currently being performed by each application. I was wondering if there is an open source solution already available? I'm aware I can use LDAP…

Jack
- 417
- 2
- 8
- 18
0
votes
0 answers
Handling unregistered Website Visitors [php]
I am making a hotels booking website. I need to save visited hotels, searches and interests of every visitor, that is registered or unregistered.
Now for registered user's it's easy, I can save them in Session variable with respect to their userId…

Mohammad Mahroz
- 432
- 4
- 14
0
votes
2 answers
Who creates the very first admin user in an event sourced system?
With Event Sourcing, everything is traceble to the very beginning, so also user creation. In our system we do user creation and admin stuff over a public API. We have a (quite common) security rule: Only Admin users may delete users and give…

Pepster
- 1,996
- 1
- 24
- 41
0
votes
1 answer
iOS - Supporting multiple devices for one user?
In modern mobile apps, the idea is to support multiple devices; that is assume a user has multiple iOS devices and they can use one ID to carry on using their app.
I've never done user management, user sessions before for iOS; I do recall you can't…

zardon
- 1,601
- 4
- 23
- 46
0
votes
0 answers
How to reset password in User Management System in Asp net mvc
Can anyone help me to make Forgot Password in User Management system to reset the password with sending link on email.
Thanks

Biljana
- 21
- 3
0
votes
1 answer
Activate/Deactivate user in user management system with asp net mvc
I have this in my Account controller :
public ActionResult UserActivation(string UserName)
{
setLanguage();
MembershipUser user = Membership.GetUser(UserName);
if (user != null)
{
if (user.IsApproved == true)
{
…

Biljana
- 21
- 3
0
votes
1 answer
MySQLUser administration deny access
I like to deny the change and creating of tables for a specific users.
So I searched for setting such privileges, but I've found nothing about it.
how can I archive these?

Kinimod
- 166
- 1
- 15
0
votes
1 answer
filling attribute with concatenated string
I am looking for a way to concatenate a string and put it in one active directory user account object, to be precise, in altsecurityidentities.
The value to be input will be as following:
" which is constant, and (firstName)(whitespace)(lastname)…

BoleslawA
- 7
- 1
- 5
0
votes
1 answer
Checking for users who are member in on of groups, but not in one specific group
Im looking for a way to identify users who are member of one of few groups (a,b,c) but also are not in a specific group (d), an exception group, to later on perform some tasks on them (filling in specific attribute based on value of…

BoleslawA
- 7
- 1
- 5
0
votes
1 answer
How to create a local user account that does not belong to any group?
Currently, I am creating a user with
var user = new UserPrincipal(localMachineContext, "MyUser1", "MyPassword", enabled: true);
user.Save();
However, new user is immediately included into "HomeUsers" group (Win10), which is undesired behavior. I…

LOST
- 2,956
- 3
- 25
- 40
0
votes
1 answer
equivalent of UserEntityManager of Activiti in Camunda
I'm in the process of moving from Activiti to Camunda.For user management tasks we were using…

user2894296
- 590
- 1
- 10
- 20