Ok, I just installed Drupal 6.9 a few days ago, Ive got it pretty much figures out, except: How do you get a FULL member list? I.E. A list of ALL members on the site, not just recent, for everyone to see?

Also, how do I get comments for peoples profiles? And can they be public, but not put on the recent post/comment block?

I've installed modules and themes, I know how to do it.

Comments

mafi-a’s picture

Jack™’s picture

Thanks, helped a lot
Except, it shows me as the only user: http://jacktm.net/home/user_list How do I fix it?

What about the profile comments, know how to do that?

vm’s picture

it actually shows 3 users. There is a page 2.

export the view, use pastebin.com and link to the view here.

Jack™’s picture

$view = new view;
$view->name = 'user_list';
$view->description = 'A simple user listing.';
$view->tag = '\'users\'';
$view->view_php = '';
$view->base_table = 'node';
$view->is_cacheable = FALSE;
$view->api_version = 2;
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
$handler = $view->new_display('default', 'Defaults', 'default');
$handler->override_option('fields', array(
  'name' => array(
    'label' => 'Name',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'html' => 0,
    ),
    'link_to_user' => 1,
    'overwrite_anonymous' => 0,
    'anonymous_text' => '',
    'exclude' => 0,
    'id' => 'name',
    'table' => 'users',
    'field' => 'name',
    'relationship' => 'none',
  ),
  'picture' => array(
    'id' => 'picture',
    'table' => 'users',
    'field' => 'picture',
  ),
  'created' => array(
    'label' => 'Created date',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'html' => 0,
    ),
    'date_format' => 'small',
    'custom_date_format' => '',
    'exclude' => 0,
    'id' => 'created',
    'table' => 'users',
    'field' => 'created',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'access' => array(
    'id' => 'access',
    'table' => 'users',
    'field' => 'access',
  ),
  'edit_node' => array(
    'id' => 'edit_node',
    'table' => 'users',
    'field' => 'edit_node',
  ),
  'delete_node' => array(
    'label' => 'Operations',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'html' => 0,
    ),
    'text' => '',
    'exclude' => 0,
    'id' => 'delete_node',
    'table' => 'users',
    'field' => 'delete_node',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
));
$handler->override_option('filters', array(
  'uid' => array(
    'operator' => 'not in',
    'value' => array(
      '0' => 0,
    ),
    'group' => '0',
    'exposed' => FALSE,
    'expose' => array(
      'operator' => FALSE,
      'label' => '',
    ),
    'id' => 'uid',
    'table' => 'users',
    'field' => 'uid',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
));
$handler->override_option('access', array(
  'type' => 'none',
));
$handler->override_option('title', 'User List');
$handler->override_option('use_pager', '1');
$handler->override_option('style_plugin', 'table');
$handler->override_option('style_options', array(
  'grouping' => '',
  'override' => 1,
  'sticky' => 0,
  'order' => 'asc',
  'columns' => array(
    'name' => 'name',
    'picture' => 'picture',
    'created' => 'created',
    'access' => 'access',
    'edit_node' => 'delete_node',
    'delete_node' => 'delete_node',
  ),
  'info' => array(
    'name' => array(
      'sortable' => 1,
      'separator' => '',
    ),
    'picture' => array(
      'sortable' => 1,
      'separator' => '',
    ),
    'created' => array(
      'sortable' => 1,
      'separator' => '',
    ),
    'access' => array(
      'sortable' => 1,
      'separator' => '',
    ),
    'edit_node' => array(
      'separator' => '',
    ),
    'delete_node' => array(
      'separator' => '|',
    ),
  ),
  'default' => 'name',
));
$handler = $view->new_display('page', 'Page', 'page_1');
$handler->override_option('path', 'user_list');
$handler->override_option('menu', array(
  'type' => 'normal',
  'title' => 'User list',
  'description' => '',
  'weight' => '0',
  'name' => 'navigation',
));
$handler->override_option('tab_options', array(
  'type' => 'none',
  'title' => '',
  'description' => '',
  'weight' => 0,
));

Whats wrong with it?

Jack™’s picture

Anyone? I know it's long...
How about profile comments? Is that possible?

vm’s picture

if you want comments and such on profiles you need to investigate the advanced profile.module and its dependencies or write a custom module.

Jack™’s picture

Ok thanks
I have 2 more question, can I install/make something so when people sign up, there's a box to put someones name if they "recomended" the site for them, and then I would know
Can I get an email when someone applies for a position/reports abuse? Right now I have to look in the module settings

Sry, I'm new at this(as u can tell)

vm’s picture

investigate the referral.module in the downloads area.

If you have more questions that don't have anything to do with views. create a new forum thread.

vm’s picture

part of the problem with the view as compared to the documentation may be that you failed to follow all the directions. specifically setting up an argument which is the last step.

Jack™’s picture

I deleted the last access filter, but it's still mostly me as a user, thanks though... I followed that tutorial step by step.

Jack™’s picture

I deleted the last access filter, but it's still mostly me as a user, thanks though... I followed that tutorial step by step.

I probalby missed a step ill check it

Jack™’s picture

I forgot the argument step, but that didn't do much, now it just separates the "19" users in to 3 categories, 17 admins, all me... but still not working... I'll go through each step, see if I forgot everything

vm’s picture

you have to adjust the view as you have adjusted other instructions negating roles as part of the equation.

Remember, the documentation is a user list by roles. you seemingly just want a user list.

have you investigated the user_list.module ?