Profile fields in Advanced User Management module - Drupal 7 - drupal-7

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).

Related

Multi site operate by single admin panel in Drupal 7

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.

how to store values in drupal database of contact form with contact module

I am using contact module in drupal.
but in contact module have only email send functionality..
But i want to store all values all values in database without use custom code.
Please suggest me any module is available for this in drupal
Use Webform module. It allows you to build any custom form and store all values in database. You can even set some permission to review user submissions.

Create a project section in Drupal 7

i am new to Drupal and want to do the following:
Allow for a simple user registration process
Once the user is registered, allow them to register a project->a project is going to basically have a name, an address and a picture.
Allow for projects to have teams within themselves
kindly guide how to proceed and modules required to do this.
So, there is a core module called "Users". That allows for username creation and authentication. Just go to "admin/modules" and enable it. Then take some time to familiarize yourself with how that works in terms of the experience of creating an account and managing users.
If you require additional login functionality (such as being able to log in using and email address instead of a username), there is a module called LoginToboggan that provides a lot of good functionality
For user profiles, there is a new Drupal 7 module called Profile2 which should meet your needs. Just install it and its dependencies and specify which fields should be in a user profile.
For teams and projects, I think that maybe you're thinking about things the wrong way. Look into the module Organic Groups. That will allow you or users to create their own teams that can then be associated with different nodes.
Finally, create a node type called Project. Specify whatever fields you need for that project. Then, set your permissions so that users can create groups and create new Projects.

Drupal 7 adding bulk users to group or roles

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

Drupal 7 exporting a custom profile to features

I've created some new fields for users who register in admin/config/people/profile
since we are still building the site I want to port these out to a features module
but am completely unable to figure out how to do this? I thought it would be some
thing like Features >> [Create Feature] [Edit components] >> Variables but cannot
find my custom fields?
I named my new form Registration, and tried view sourcing and flipping through the
source with the find command but am unable to find it there either. Anyone know what
it might be called or under?
In order to unlock the profiles, I used this Administer user profiles in Drupal 7 method.
In case you hadn't figured it out yet, you can export fields by selecting the "Fields: field" component when creating your view.
By the looks of your URL you're not using the latest 7.12 core version? Currently the page to manage the fields for user profiles is located at "Administer > Configuration > People > Account Settings > Manage fields" (admin/config/people/accounts/fields) page, so you may need to update...
Did you create a profile or add the fields directly to the user entity?
With the drupal 7 fields API you don't need the profile module anymore in fact it's deprecated. Because of that I don't think their is features support for profiles

Resources