More users on "Users" list

davidklop

Joined: 2006-05-24
Posts: 5
Posted: Wed, 2006-05-24 14:38

hi
is it possible to see more users on de user list
now I can see 10 users per page, but for me it is a lot easier to see more users (or all users) on one page

thnx!

david

Login or register to post comments
dotnature
dotnature's picture

Joined: 2005-10-26
Posts: 224
Posted: Wed, 2006-05-24 16:02

Yes you can list them all but you will have to alter the files for the members list module, I beleive it is found in the MemberList.inc file you will want to change the number for = $totalUserCount. Hopefully that will work.

I hacked that module many months ago to try and display everything on 1 page, the name, username, member since, and most importanty all the users items, so you dont have to click anything its all right there. Its like 90% done but Ive stopped working with gallery.

Login or register to post comments
davidklop

Joined: 2006-05-24
Posts: 5
Posted: Wed, 2006-05-24 21:59
dotnature wrote:
so you dont have to click anything its all right there. Its like 90% done but Ive stopped working with gallery.

where is "right here" :s?

Login or register to post comments
davidklop

Joined: 2006-05-24
Posts: 5
Posted: Wed, 2006-05-24 22:18

btw i can't find a number in MemberList.inc wby $totalUserCount...

can someone help me :)

Login or register to post comments
dcassone

Joined: 2006-08-24
Posts: 11
Posted: Fri, 2009-10-16 23:01
Quote:
btw i can't find a number in MemberList.inc wby $totalUserCount...

wrong anyway...

the answer I discovered for Gallery version = 2.3 core 1.3.0 is:

/modules/core/AdminUsers.inc line 159

$form['list']['pageSize'] = $totalUserCount > 10 ? 10 : $totalUserCount + 2;

changed to

$form['list']['pageSize'] = $totalUserCount > 50 ? 50 : $totalUserCount + 2;

Login or register to post comments