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
wordpress user management user specific page
I want create wordpress website into which I want create user management...
That means only registered users with specific role can see restricted pages of my websites and visitors can see only the common pages. Also user can see/edit his/her…

mahesh
- 4,625
- 11
- 42
- 61
0
votes
2 answers
Integrate CRM or Webapp behind Joomla site
Im trying to figure out how to do this but i cant seem to find a solution.
Ive writen a crm/client management software with php/sql and java.
It works ok with it's own database etc and it's written from scratch, all handwritten code.
What i want to…

krasatos
- 1,177
- 3
- 13
- 26
0
votes
1 answer
Letting visitors try out user-only features that write to DB
My site lets people create database entries (which most rails apps do), and I realized that there's a huge drop-off from landing on the site to actually signing up to try it. Basically the service lets users build their own document by combining…

Vlad
- 8,038
- 14
- 60
- 92
-1
votes
1 answer
webservice authentication and user identity management
My team and me are currently working on quite a large project. We are working on an online game, which will be accessible (for the moment), in two ways:
-Via a web browser, an application full JavaScript(client-side), full Ajax (basically…

Callum Torr
- 3
- 1
-1
votes
2 answers
Unable to Login into WSO2 EI 6.5.0 after editing user-mgt.xml
I am trying to change admin credentials in WSO2 EI 6.5.0 by following WSO2 DOC.
By using WSO2 Management console, i can able to modify admin password as described here in the section called "Change password using the previous password" and can able…

Justin
- 855
- 2
- 11
- 30
-1
votes
1 answer
How to create Unique User Dashboards in Wordpress
thank you for opening this thread. I am designing a wordpress website and I want users to have the ability to login, register and also have a unique user dashboard where I can control what each user sees on their dashboards.
I have created a…

Alexander1370
- 1
- 2
-1
votes
1 answer
Any developer can decode password?
Say I'm a part of a 10 member team and we are developing a banking application and few members are part of the user management module.
Note: the user management system is username and password based only. Only one layer of authentication.
The UI…

k_vishwanath
- 1,326
- 2
- 20
- 28
-1
votes
1 answer
How can i get user id serverside?
I am making a node.js application with express and i need to get user ID. I need something like "req.userID", to use like that:
var counter=0;
var user = new Array();
router.get("/", function(req, res) {
var aux=0;
user.forEach(i => {
if(i !=…
-1
votes
2 answers
node.js: Can I do a POST under a router like below?
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
router.post('/', function(req, res, next){
res.send("post…

Harsh Patalia
- 173
- 1
- 10
-1
votes
1 answer
How to specify names of pages inside table for each user type to be accessible inside application?
I'm using SQL Server and a C# Webforms application.
Inside a table, I want to specify usergroup and in front of each group names of accessible pages.
So inside the web application, I search inside masterpage using stored procedure if each entered…

Melody Magdy
- 148
- 3
- 11
-1
votes
2 answers
How to remove login page of android webview navigation after the the user is logged in?
I have a Webview in which there is a user management system. After the user is logged in, it is redirected to dashboard but if the user presses the back button it comes back to login page where the user has to relogin to view dashboard.
My activity…

Sarbjit Singh
- 47
- 9
-1
votes
1 answer
useradd -u issue: User not listed in /etc/group nor /etc/gshadow
When running the following line, I expect the new user- user3- to be added with the GID of 1001, but when ran the user is not listed in either the /etc/group nor the /etc/gshadow files:
# useradd -u 1010 -g 1001 -m -d /home/user3 -k /etc/skel -s…
-1
votes
1 answer
Simulating Linux-like admin privilege enabling in Windows 10
In Linux, when we execute a script/application/command line which needs sudo, it ask for the password even current logged account has sudo privileges.
In Windows, if admin user account is logged in, all it asks for executing the app is clicking a…

bahadircyildiz
- 1
- 1
- 3
-1
votes
2 answers
PHP: User Management, Data Access
i made a little web application in university and have some problems with data access.
There are 3 user accounts which can log in and all of them can create their own lectures afterwards.
Problem:
Each teacher should only see the lectures he created…

Timo Springer
- 15
- 6
-1
votes
1 answer
Is it okay to have user email addresses and passwords stored in standard Mongo Collection?
I am making an app that needs accounts, but I find all of the account management frameworks for Node.js to be too complicated. Would it be a bad idea to store user info in a regular collection? How could I do this to maximize security? I.E.…

Isaac Wasserman
- 1,461
- 4
- 19
- 39