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
0
votes
1 answer

XWiki ignores global edit rights for XWikiAllGroup

We are using XWiki in Version 4.5 and I want to set edit-rights by default for every user. But setting edit-rights on XWikiAllGroup globaly via the administration-panel doesn't take effect. I still need to add edit-rights explicitly on every space.…
heinkunibert
  • 361
  • 2
  • 5
  • 15
0
votes
1 answer

Implementing forms authentication in asp.net mvc application

I am developing an ASP.NET MVC4 social networking application which will be having 5 types of users namely student, administrator, supervisor, providers, etc. I want to use forms authentication as it is a internet application. My database has…
pbhalchandra
  • 287
  • 1
  • 6
  • 14
0
votes
1 answer

Extending WSO2 Identity Server JDBCUserStoreManager to fit external user database

We have a requirement to authenticate users of a web application deployed in WSO2 Application Server against an existing external database. We are trying using WSO2 Identity Server for this. Our db table containing users has two columns which make…
kmkale
  • 115
  • 10
0
votes
2 answers

Assigning Resolved Issues to Reporter Except If Reporter Is Not In QA Group

I am currently revising our JIRA workflow and issue routing and have the following predicament. I want to assign all resolved issues back to the original reporter EXCEPT when the reporter is not in the QA Group. Then the issue should be assigned to…
RamblingAP
  • 145
  • 2
  • 9
0
votes
1 answer

SQL - user-management --> export/import users via script

The company I'm working at is migrating their databases from Oracle 10g to 11g. On Monday we want to clean our development database and clone the production database to that storage. Here we go again. My second task is a little bit more complicated…
Chris.V
  • 177
  • 2
  • 7
0
votes
2 answers

Devise: Associated Model on Sign Up: Can't mass-assign

I setup Devise on User model with its default options. I also have a Company model that needs to add data added whenever a user registers. A company owner setups a User to login with and a Company profile, both in the same form. I setup Company…
Max
  • 841
  • 1
  • 12
  • 25
0
votes
1 answer

user/group/permission is need in Yii framework

I am developing a project with Yii framework. I need to organized website users in some groups to give them specific permissions. I don't know if there is any pre-written module/extension for this purpose in Yii framework I have to write it…
hd.
  • 17,596
  • 46
  • 115
  • 165
0
votes
8 answers

User or account or person or what?

Here on Stack Overflow, you're a "user." On 43things.com you're a "person." On other sites, you're an "account." And then some web apps skip the usage of this kind of signifier, and it's just http://webapp.com/yourusername Do you think that these…
Bill Turner
  • 3,695
  • 1
  • 20
  • 26
0
votes
2 answers

Is there a meteor.js library available for managing user accounts?

Is there a meteor.js library available for managing user accounts? I'd like to have users register, have access to unique user IDs to limit the number of times a single user can do something, and also have different tiers of users to control access.…
Matt
  • 1,996
  • 5
  • 18
  • 24
0
votes
2 answers

Databases: Save users and admins in the same table (pros/cons)?

I'm interested in your opinion: at the moment I've only one user-table in my database but I think about adding a new one to separate public accounts from the admin accounts. Pro: I don't have to check the "roles"-table for validating the user who…
Mr. B.
  • 8,041
  • 14
  • 67
  • 117
0
votes
1 answer

CakePHP: Passing data to plugin

I have installed a plugin (SignMeUp) for the user registration, and according to the documentation the registration function inside my User Controller has to look something like this: public function register() { …
Cos
  • 1,649
  • 1
  • 27
  • 50
0
votes
1 answer

Is this the right db design for the most flexible and modular CMS with user management in CakePHP?

I would like to ask you guys if you could review my database design. I think it is quite self-explanatory, but to be absolutely clear: My goal is to make an application which has a super flexible user management (which is why the groups are in…
0
votes
2 answers

Does JBoss have a user management API which I can use?

I am going to run a Web App on JBoss App Server 7. Does JBoss have some sort of inbuilt user management module/API which I can use rather than code my own? Or do I have to make this module myself. I know about the default JAAS pieces providing…
0
votes
1 answer

ASP.net sessions, interacting with NHibernate

I have a question about how to keep the current ASP.net/User's session during the duration of a user's visit. What is the best way to keep the current User object? Currently I am keeping it as a session object in the Session management in ASP.net.…
monksy
  • 14,156
  • 17
  • 75
  • 124
0
votes
1 answer

Symfony2 Authenticating Someone with a Custom Entity Provider ERROR

I faced a problem when trying to implement the Custom Entity Provider for user authentication. I got the Mapping Exception that my entity is not a valid or mapped super class. Here is my Actual Error: ------------- Exception/Error Start…