Tagged Questions
The user-roles tag has no wiki summary.
10
votes
2answers
3k views
PHP login class
I'm looking for a good PHP login class via MySQL, and I'm not yet completely satisfied with anything I've found. This prior SO question doesn't really address my needs, as I'd prefer to stay away from ...
6
votes
1answer
149 views
Drupal: How to implement a SECOND admin with fewer rights than the normal and own theme?
I'm currently trying to realize a second (lower) admin layer in drupal. I have made an extra section via the module of the same name for those users so they can have their own theme etc. I want to ...
5
votes
1answer
118 views
What's a clean/DRY way to show available operations on user content?
Working on an ASP.NET MVC 3 (Razor) application, that's mainly concerned with UGC (user generated content).
I'm working on a "Q&A" area - where users can ask questions, others can answer, vote, ...
5
votes
2answers
492 views
Standard Website User Role Names?
What are the standard user role names that a majority of sites could all use? Below is a list of the best roles that I could think of (in order of importance). But I am hoping to find at least ten ...
4
votes
4answers
4k views
Role Management in MVC3
I want to add a functionality to application such that only admin can create users and he can provide access to particular pages to user.
He can create roles and can provide users different roles.
I ...
3
votes
2answers
454 views
SQL Database Powered C# & ASP.Net Role based authentication control
I want an ASP.net and C# authentication/logon control which references a SQL server database containing two tables: users and roles. When the authentication is successful, I want the user to be ...
3
votes
5answers
193 views
What is the recommended way to handle different user roles in a C# application?
I'm going to make a small application for a business that will be used locally for scanning, and storing documents in a database located on the local machine or on a machine located in the same LAN.
...
3
votes
2answers
235 views
Help with database strategy for giving roles to users in specific model instances
I have a ruby app running with declarative authorization and I have made the roles:
admin ( app admin )
org_admin ( organization administratr )
org_colab ( organization colaborator )
...
2
votes
1answer
158 views
ASP.NET MVC3, How to Use Different OutputCacheProfile to Different User Role?
I know I can setup OutputCacheProfiles at web.config file.
I like to know how to apply different cache profile to different user role on page (controller) level?
Thanks.
2
votes
5answers
88 views
Convince a skeptic! Why do I need a “Roles” table in my database?
When designing the database tables for storing simple User/Role information, can anyone tell me why it would be a bad idea to store the Role information directly on the User table (for example, ...
2
votes
1answer
801 views
MVC 3 ASP.NET Roles-Authorize Attribute
I am getting user roles from Active Directory and I am binding the same roles to ASP.NET Membership Roles.
I want to control the display for the various Views in Controller by using
...
2
votes
1answer
283 views
Designing a multiple level user permission system
I am working on a site that has a database schema like a tree. From top to bottom I have:
One Company can have many
Locations that can have many
Fleets that can have many
Vehicles
The user ...
2
votes
3answers
182 views
Better method to get users belonging to no role?
I wrote the following that does work, but want to know if there is any more efficient ways to get all users without any role.
using System.Collections.Generic;
using System.Linq;
using ...
2
votes
0answers
246 views
No mapping available for role reference with sessionContext.isCallerInRole()
I have a method that can be called if the person has a specific role and they are associated with a particular group in JIRA. Since the groups in JIRA are dynamic, I can't have a role per JIRA group.
...
2
votes
2answers
432 views
User roles in GWT applications
I'm wondering if you could suggest me any way to implement "user roles" in GWT applications. I would like to implement a GWT application where users log in and are assigned "roles". Based on their ...
2
votes
3answers
246 views
Setting up a user / roles management system - with multi-tenancy
Does anyone have any schema's, data models, or suggestions for creating a user / roles management system that accounts for multi-tenancy. For example, a user in organization A, may be assigned a role ...
2
votes
3answers
930 views
ASP.NET MVC Check role inside view
In my View I have some admin links that I would like to hide and show based on user role how can do this inside the view e.g.
<%= if(CHECK IF USER ROLE ADMIN) { %>
<div ...
2
votes
2answers
526 views
Unit Test(mvc) -problem with Roles
I have mvc application and I'm working with poco objects and writing unit test. Problem is that all my test fail when they reach this line of code Roles.IsUserInRole("someUser", "role"). Should I ...
2
votes
1answer
336 views
Grails Acegi security: Problem with roles and access
sad end to this story
Well, as it turns out, the compareTo method in my Role class (Role implements GrantedAuthority) was returning always 0. So each user had only one role (since they are stored in ...
2
votes
1answer
62 views
PHP: How to check if changing model is allowed to member of a given group
In the app that I'm working on each user can belong to one or more of the groups, e.g. 'guest', 'member', 'admin' etc.
When user applies action that changes model, e.g. registering account, editing ...
2
votes
2answers
882 views
drupal 6: redirect admin url for custom user role
I need to redirect a url for a user role.
URL From: http://www.example.com/admin
URL TO: http://www.example.com/admin/content/filter
User Role: example-admin
So, when a user (example-admin role) ...
1
vote
2answers
90 views
MVC 3 Authentication / Authorization: Roles missing
We use MVC 3. The default user management is not usable for us as our account info is stored in our own data-store and access goes via our own repository classes.
I'm trying to assign a principal add ...
1
vote
1answer
102 views
ColdFusion: Application Options Based on Role?
I understand how to restrict entire pages, or even components by implementing <cflogin> and roles. For example:
<cfif IsUserInRole("Admin") OR IsUserInRole("Accounting")>
...You can ...
1
vote
2answers
353 views
Data based on user role
I have a product with array of prices. I want that based on the user group the corresponding price will be displayed.
As far i created roles that are describing these groups
Admin
UserPriceA
...
1
vote
1answer
148 views
Execute multiple queries then union them with LINQ?
I'm trying to build a drop down list that holds available options (i.e. a page category that a user can create a page for) for the logged in user, however, these are based on user roles due to the ...
1
vote
2answers
117 views
User types / role - developers
You have regular user's that use your website/services, they can login to mainsite1, then you have developers, that can not login to mainsite1, but can login to developercenter1.
1) Do you store ...
1
vote
2answers
99 views
What is the best way to store 10 options in a mysql database?
I am modifying my PHP network's code to have "user roles" like wordpress here is my plan so far
0 = registred non email verified user
1 = registed and verified email
2 = moderator
3-9 = nothing yet
...
1
vote
1answer
808 views
Adding custom roles - VB 2008 Winforms
I have a winforms (VB 2008) based app that I'm developing and I want to use custom roles for user access.
Application Layout:
I have a Main form that opens a login form when certain actions occur. ...
0
votes
4answers
56 views
Implementing different user types through classes and interfaces in Java
Problem
I'm fairly new to design patterns, and have been studying the book, Head First Design Patterns. I need to implement a system with 3 kinds of users: Member, Moderator, Admin. A Moderator can ...
0
votes
0answers
17 views
Database access by user role in config files
I am about to design Data Access and Business Logic Layers for a client/server app. The data access is very generic and there are no entities defined.
Question 1)
Depending on where the app is ...
0
votes
2answers
187 views
T-SQL to list all the user mappings with database roles/permissions for a Login
I am looking for a t-sql script which can list the databases and and the respective roles/privileges mapped for a particular user. Using SQL Server 2008 R2.
0
votes
1answer
34 views
Roles and Permissions in Windows Forms
I am wanting to update our current windows forms security to something a lot more flexible.
At the moment we have a single column in thew users table which is named 'Access_Level', this field holds ...
0
votes
1answer
33 views
IIS asp.net 4.0, upload to server / user rights to write
On my asp.net 4.0 site I have a upload function which allow a user to upload a document to the server.
The uploaded document is stored in a folder named c:\uploads\ and I store a reference to it in ...
0
votes
1answer
50 views
Good idea to resolve User roles in the application layer?
The reason I need a role-based system:
Restrict access to pages.
Restrict access to certain features on pages.
Check/validation inside service layer.
So I'm guessing, I can just create an enum and ...
0
votes
1answer
60 views
Entity Framework CodeFirst Multiple type of users
I have task to build application for user registration. I have 3 types of user (profiles)
1. "Normal" user
2. "Company" user
3. "Company2" user - similar like 2. but with few additional fields..
...
0
votes
0answers
38 views
User authentication and management
We are planning to develop a web-application using .net and sqlserver. The application will be deployed on web-server which can be access from within or outside the client's network.
I was thinking ...
0
votes
1answer
121 views
Firebird 2.1 Issue with User and Role
I am using FireBird 2.1 and I have a user and a role. I granted execute permission on an stored procedure to role but not to user.
When I am trying to execute the stored procedure while logged in as a ...
0
votes
0answers
8 views
Should I compel a user to choose between being signing up as either a contractor or providor or make it optional?
I have a site where companies approach customers who have orders. I'ma bit perplexed at setting up the registration. Right now an individual can sign up and place orders and at the same time be able ...
0
votes
3answers
352 views
User roles and authorization
So I want to create a login page where when you enter your login credentials as a admin you get acces. If you are not a admin you get redirected back to the login page. In my database I have a field ...
0
votes
0answers
186 views
After executing Membership.ValidateUser, the roles and userroles are cleared and returns nothing
I am having a strange problem. I am using c# asp.net with forms authentication with Mysql.
The website has 2 folders insite the root, "User" and "Admin".
I have created a test user using the asp net ...
0
votes
2answers
89 views
User rights needed for Bind-user for LDAP query
We are implementing Subversion and i'm struggling with the LDAP authentication because i don't want to use my DC's administrator account to execute the LDAP queries, as then I also need to specify its ...
0
votes
0answers
172 views
Role Provider in Active Directory
i have facing a problem when i am trying to login my AD user on Blog in my web application.
an abstract overview of the system is that i have a web app , users of app are authenticated through active ...
0
votes
0answers
32 views
Force modified contributor role to be re-approved on edit in WordPress?
I gave the Contributor role edit_published_posts capability. Contributor submits a post, Admin publishes it. Now Contributor can edit it without approval. Is there a way to force it to be re-approved ...
0
votes
1answer
112 views
Sitecore User Roles and cloning
When cloning an item in Sitecore 6.4 the clone inherits the security settings of the cloned (parent) item. Can I create a security role that applies to the clone but not to the parent? Or does that ...
0
votes
1answer
213 views
Can Forms Authentication, Role Management and Data for the WinForm application all work from a single SQL database?
With reference to this Question: Can Forms Authentication, Role Management and Data for the website all work from a single SQL database?, I require a single Database but for WinForm applications. I ...
0
votes
1answer
201 views
Security Architecture - Settings to drive UI and Priveledges (Rights) - Role-Based, per User-Account
How do large companies implement their security requirements which are centralized and used to drive things people can do (allowed to call a certain web-service, submit an order, etc.) as well as to ...
0
votes
2answers
539 views
ADAM (AD LDS) & AzMan for Membership and Roles
Well, I'm currently developing an application that must use the local Active Directory for membership. Everything is alright with membership, since I have no domain controllers around and a virtual ...
0
votes
1answer
45 views
Showing an input in a view depending on role
I have a fat view (add) with a lot of inputs (it's a form).
For a role , there is a user_id input that is necessary, but for another role it isn't necessary. Here it comes my question, I know that ...
0
votes
1answer
296 views
How to insert secret question and answer using ASP.NET membership?
I am using asp.net membership for my web application.I need my users to choose their own secret question and answer in a separate page after their successful login.
What is the method to insert the ...
0
votes
1answer
44 views
Instance and roles of ASP.net MVC 2 + SS 2008 Developer
Gonna need some advice for my work.
In my computer I have installed VS2010 and SQL Server 2008 Developer with a customized instance name named MYCOMPUTER. If I need to transfer the project work, that ...