Member Directory Module in dotnetnuke 6.2 - active-directory

how to display members in member directory module in dotnetnuke according to individual Group.i am able to set group filter for only single group not for multiple...can anyone suggest how to set it?
Thanks

To get the member directory to work for a specific group, you would need to place the module onto a Group configured page. If you use Social Groups in DNN, there is an auto-setup option that will create the pages for groups, which should include member directory. Check out the
Getting started with DotNetNuke 6.2 Series
tutorials on this page http://www.dotnetnuke.com/Resources/Training/Tutorials.aspx

Related

How does the country path drupal module work?

I want my Drupal site to be divided:
/uk/en
/uk/fr
/us/en
/us/es
Based on this advice, I was told to use this. The problem is, the module has no configuration page, nor does it have a README. I have scanned the code and it's not immediately apparent how to use it with the Domain Module.
Anybody been able to use this and get it working as described above?
Multilingual support is provided by the Locale core module. To add a new locale(country/language combination) enable the Locale module.
Go to Home » Administration » Configuration » Regional and language » Languages
and add the new locales you need.
Specifically Path prefix language code value will be used to build the url.
Country Path module extends domain access module. You do not have to configure anything except checking 'country path' in 'configuration->languages->detection and selection'. The country suffix will be added automatically based on the country domain selected in your domain record.
Example: I had created three domain records for india australia and singapore with the same URL and was able to access all the three by prefixing /in /au and /sg respectively

Combining conditions in Drupal

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

Profile fields in Advanced User Management module - 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).

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