"User permissions" refers to the permissions defined by modules to allow users to do specific actions defined from modules. It is different from "file permissions," which are the access permissions users have for files in a file system.
0
votes
1answer
22 views
Limiting users to edit other users
I have a hierarchical user structure, so every user has a entity reference field that points to another user - his/her supervisor.
The thing is that I need to give every user the permission to ...
0
votes
1answer
17 views
Flag Module: Possible to make admin's flags worth more points?
I'd like the admin's flagging of a node to carry more clout than with regular users. Is it possible to either;
Insert the count into the mysql database as a number larger than 1
whenever admin flags ...
2
votes
1answer
28 views
Allow a role to assign user roles but not to manage user permissions
on Drupal 7 how I can give to the "special" role the possibility to manage roles of other users (add a role to a user, remove, add more than a role, etc.), but not the possibility to manage all user ...
0
votes
0answers
17 views
Allowing Users to Sell Their Own Content [closed]
I am creating a content type of Video and I would like to use a drupal e-commerce module to allow users to optionally sell access to their videos for a period of time they specify. Not all videos ...
1
vote
1answer
22 views
Show content added by current user
In user permissions i let users with editor role "Access the content overview page". And this page showing them all added content. I can make a view with this user added content, but i want to achieve ...
0
votes
0answers
17 views
Access Denied occurs after a few page loads
I am creating a custom module and adding menu items like so:
$items['node/%node/tools'] = array(
'title' => 'Tools',
'page callback' => 'my_tools',
'page arguments' => array(1),
...
0
votes
2answers
23 views
Custom module shows in list but not in permissions
I have a simple module I created and it shows up in modules config panel and I have enabled it. The functions are called and the output even shows:
function products_help($path, $arg) {
if ($path ...
0
votes
0answers
25 views
term based edit permission to specific roles
Content Type "Article" is attached with the taxonomy "State". This taxonomy has many terms. Now I want that a registered user with "Reporter" role will be able to post news for the limited terms. I ...
0
votes
0answers
23 views
Only admins get results on exposed filters
When I enter a word into the exposed filter as an admin I get the results I'm looking for, but when I type the same word in as an authenticated or anonymous user I get no results at all.
UPDATE: ...
1
vote
1answer
34 views
Create user permission with specific role?
How to give create user profile permission. I have a manager role and I want to give permission to him to create a editor or manager role user. I don't want to show him all the role on user create or ...
0
votes
0answers
17 views
Admin or user login denied return to same page as before
I have this site that i uploaded from the localhost to remote web server http://nobleempire.co.ke I have tried to login to access the admin but I cannot it takes me back to the same page but this ...
0
votes
0answers
6 views
Book permissions for OG admin
I have a problem with OG permissions. I don't understand why some permissions do not appear on OG permissions.
For example, I would like to control these two permissions (which are available outside ...
1
vote
1answer
28 views
Separate permissions for form access and form submit
I have a module on a website, called members, and 2 roles: "low admin" and "manager". They have permissions: 'low admin tasks' and 'manager tasks'. Every low admin has access to both permissions.
...
0
votes
1answer
13 views
Bypass permissions in custom module
I have written a custom module which generates a PDF when a Webform is submitted and mails it to the admin. I am using the Print module to generate the PDF. The problem is, it seems to use the user's ...
0
votes
0answers
22 views
Accessing Unpublished Entity Reference field in Views for Anonymous Users
I have created a content type named "Services" which has an Entity reference field.
Referenced Content are all unpublished.
I have Created a view which displays fields from "Services Content Type" ...