Questions tagged [user-management]

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.

537 questions
1
vote
2 answers

how to expire a password with ADAM

We are using ADAM to simulate an AD server in our development environment. We need to expire passwords for a couple of our users to test several key code paths. We have been doing this by setting the password expiry window low (1 day) and then…
yamspog
  • 18,173
  • 17
  • 63
  • 95
1
vote
2 answers

SugarCRM - how to make users see only child users?

I want to change the behaviour of Sugar CRM community version. Here's what sugar currently does: Admin logs into Sugar Admin clicks on Admin tab Admin creates a new user named George with admin access Under user information section, Admin makes…
John
  • 32,403
  • 80
  • 251
  • 422
1
vote
1 answer

User bandwidth quota management with mysql php

I have a large user table in mysql with 50k+ entries. these users have limited download quota for their stored files in my website. currently the quota resets every 24 hours by resetting the traffic count in a seperate 'traffics' table (where each…
user3847106
  • 101
  • 3
  • 11
1
vote
1 answer

Dreamfactory User Management for Apps with different user roles and permissions?

I am developing an app which requires user management with different roles to get different views on data stored in a MS SQL Server DB. I use dreamfactory to provide a REST API for the data. I would like to store User data in the same DB as the…
1
vote
0 answers

yum cannot update or create new users/roles yii

I have installed YUM in yii. But when i click on create new user it display page like this The same when i click on Grand permission and on roles displays Any help will be appreciated.
1
vote
1 answer

ASP.NET Identity v2.0 IdentityUser properties missing

I've been using ASP.NET identity 1.0 in my previous application and by following simple tutorials like this did manage to implement custom properties into my user class: public class CustomUser : IdentityUser { public string ContactName { get;…
Bartosz
  • 4,542
  • 11
  • 43
  • 69
1
vote
4 answers

What is the best authentication script?

I'm planning on making some dynamic PHP websites and I need a free Authentication system that allows me to create control panel for these sites' admins. It should contain : Remember password Lost password Maximum login attempts per specific…
1
vote
1 answer

Sitecore user manager search

I'm trying to search for users in the user manager window and I'm not getting any results. For example "admin" is a existing user but it doesn't return any result. Do you have any ideas? Note: Role Manager works fine Cheers
Snapper
  • 686
  • 1
  • 13
  • 29
1
vote
1 answer

How to implement user access control mechanisam in web application

Am developing a web application using Springs. To make a scalability for my application am in need of user management system. In application having different groups each groups having different users.Every user having different roles. To implement…
Aravind Cheekkallur
  • 3,157
  • 6
  • 27
  • 41
1
vote
2 answers

Adding a user to a domain group doesn't grant access in TFS Web Access

I am trying to give access to group of domain users (like All Developers) to team web access. I am able to add them to readers in team web access but when users try to access team web access it does not work. When I add users individually it works.
will
  • 73
  • 6
1
vote
1 answer

Drupal 6 - Content profile and user management

I have developed a system using Drupal 6. I have implemented user registration with content profile. Which means there is a functionality called company registration. It is creating a content profile with companies and a user account also after…
Sudharshan R
  • 106
  • 1
  • 4
1
vote
0 answers

Administrator cannot run a SQL Server query to add a Windows user with "net user /add" using xp_cmdshell

I login to SQL Server with Administrator account and can execute the following query and get the result: xp_cmdshell 'net user' // Works well, and displays all local Windows user accounts But when I want to '/ADD' a new Windows user locally, with…
Mohammad Naji
  • 5,372
  • 10
  • 54
  • 79
1
vote
2 answers

List AD users who do not belong to one of several groups

First up, I am not a script writer, so I apologise if this sounds like a real newbie question. I am trying to write a Powershell query to list all user accounts within a certain OU sub-tree who do not belong to at least one of 4 groups. As far as I…
Jim
  • 13
  • 1
  • 1
  • 4
1
vote
1 answer

User management system feedback

Users belong to 1 group. Every group has specific rights (defined in the group_rights table). The group_rights: user_management: 0: nothing 1: may warn users 2: may suspend users 3: may edit/delete users group_management: 0:…
user2543798
  • 47
  • 1
  • 1
  • 6
1
vote
2 answers

How to handle user assets after deletion

As always, I apologize if this question has been discussed somewhere. I'm curious for some insight on how everyone is handling related tables and assets when a user is deleted. The project I'm currently working on is mostly a project management /…