I want users to participate in creating some content. I allowed them (people/permissions) to create own content on particular content type. The question is: how to provide them access to fields of content type, that are available to me as administrator? In other words, I can put content in fields through my admin panel, but how to make users possible to meet that fields, how to make fields public?
Thanks in advance!
Using the fields permissions module. This will allow you to set field level permissions in Drupal 6 and 7
https://drupal.org/project/field_permissions
Related
By default, it seems snippets are only accessible to admins in wagtail.
Is there a way to specify a snippet is accessible to moderators?
Within the Wagtail admin (as an administrator), go to Settings -> Groups and select the Moderators group. The snippet types will be listed under "Object permissions"; tick the boxes for the permissions you want to assign.
I want to create multisite in Drupal in which I want one master site and another sub sites operate by only one admin panel, single DB(different prefixes)
Eg.
www.red.com
blue.red.com
green.red.com
One admin panel for all these sites.
You can use Domain Access Module for multi-site you can edit anything with 1 admin panel no need to login in subsite.
Module give facility to publish content on specific domain(Affiliated content) and you can change it form backend.
Also you can Restrict user domain wise.
I am making a project and it has three types of users. My problem is I want the first 2 category of users to be able to access the information and for the third kind of user i want to display the access denied page. I know I have to combine the conditions and events in Rules under configuration page of Drupal but I am not able to get the result I want.Please help me.
If what you want to deny access is a content type, then check this module: http://drupal.org/project/content_access
Basically, it adds custom access rules for every content type in your Drupal installation. You can select the role and the the access type from the content type administration page in admin/structure/type. Also, it can show different access options depending on the node.
if you want to deny access to individual node this module node access that "override the permissions for a given content type by setting permissions on an individual node".
I am developing a site in drupal 7.14, and I have installed the Advanced User Management module of version 7.x-3.0-alpha2. With this module I was able to filter out the users by username, email id etc. But in additional to these features, I need to add the profile fields (specifically, 'last name') and filter out the users according to the last name.
Anyone knows how to implement profile fields to this module? Any solution for this will be greatly appreciated..
In Drupal 7, users are entities, so you don't need a separate module for user management or profile fields.
Simply add fields to users similar to how you'd add them to content types, then build a custom management dashboard with views. You can expose the filters you want (by the fields you added to users).
Is there a way to bulk add users to roles or group in Drupal 7.
I want to add users based on Profile 2 field(s) on filters like (Gender=Male and Age>=18) and so on.
I need to do this in order for Drupal content to be accessible to a specific group(s) or role(s) only.
I went through some modules (http://drupal.org/project/content_access, http://drupal.org/project/simple_access) but I'm really confused, on what suits best.
Try User Import Framework which allows you to use a CSV file to create new users and assign roles