Quote:
Originally Posted by grecostimpy
FYI: In the instructions you have it renamed to showroster_rosterbits. Mine was not working until I realized the difference.
Unfortunately, still getting the white screen of death on large usergroups....my main registered users group (which is the one it fails on) only has around 1,800 users. Any ideas?
|
Ahhh, thanks for pointing that out. I apologize for the typo.
1,800 users. Really not sure why it would be failing. I'll see if I can come up with a way to page it out for you, but that is probably a bit above my knowledge right now. I'll see if I can figure it out.
Quote:
Originally Posted by grecostimpy
...also...(sorry for so many requests)
Since the php file changed, could you show what edits I would need to make to only show users who have filled out custom profile field 5 again (I tried myself, but could not make it work)
|
NP. I'm actually enjoying this.
Find:
Code:
foreach ($users AS $user) {
exec_switch_bg();
$usercount++;
$avatarurl=fetch_avatar_url($user[userid]);
if (!$avatarurl) {
$avatarurl = 'images/spacer.gif';
} else {
$avatarurl = $vbulletin->options['bburl'] . '/' . $avatarurl[0];
}
$avatarimage='<img src="'.$avatarurl.'" border="0">'; //Use $avatarimage in userbits to display avatars
eval('$rosterbits .= "' . fetch_template('showroster_userbits') . '";');
}
Change to:
Code:
foreach ($users AS $user) {
if ($user['field5'] != '') {
exec_switch_bg();
$usercount++;
$avatarurl=fetch_avatar_url($user[userid]);
if (!$avatarurl) {
$avatarurl = 'images/spacer.gif';
} else {
$avatarurl = $vbulletin->options['bburl'] . '/' . $avatarurl[0];
}
$avatarimage='<img src="'.$avatarurl.'" border="0">'; //Use $avatarimage in userbits to display avatars
eval('$rosterbits .= "' . fetch_template('showroster_userbits') . '";');
}
}