Log in

View Full Version : vBindex Last Members Hack


TouchingVirus
04-18-2004, 10:00 PM
Major thanks to assassingod for giving me the key to this hack, and to my other ones that were in the DEV stage because i didnt know i had to loop :)

Find this in vbindex.php


$DB_site->free_result($getthreads);
}


Underneath, add:


// #################### PROCESS LATEST MEMBERS #######################

$lastlimit = 7;
$lastquery = $DB_site->query('SELECT username,userid FROM '.TABLE_PREFIX.'user ORDER BY joindate DESC LIMIT '.$lastlimit.'');
while ($lastmember = $DB_site->fetch_array($lastquery))
{
$lastusername = $lastmember['username'];
$lastuserid = $lastmember['userid'];
exec_switch_bg();
eval("\$lastmemberbits .= \"".fetch_template('vbindex_lastmemberbit')."\";");
}


Save & Upload!

Next to the templates..go to the custombox you want the information to appear in & change the code to this..


<table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%">
<tr>
<td>
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<thead>
<tr>
<td class="tcat" style="text-align: center">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('vbindex_customblock$box')"><img id="collapseimg_vbindex_customblock$box" src="$stylevar[imgdir_button]/collapse_tcat$collapseimg_vbindex_customblock.gif" alt="" border="0" /></a>
<strong>Last $lastlimit Members</strong>
</td>
</tr>
</thead>
<tbody id="collapseobj_vbindex_customblock$box" style="$collapseobj_vbindex_customblock">
$lastmemberbits </tbody>
</table>
</td>
</tr>
</table>
<br />


Next add in a template named vbindex_lastmemberbit with contents..


<tr class="$bgclass">
<td>
<div class="smallfont">
<a href="/member.php?u=$lastuserid"><strong>$lastusername</strong></a>
</div>
</td>
</tr>


Leave the php in the vbindex.php file, for some strange reason, if you add it into vbindex_custombox_php it doesnt work..so if this is Custom box 1, make sure that in vbindex_custombox_php under Case 1: is empty ;)

Onkel_Tom
04-20-2004, 09:42 PM
nice hack !
Works fine in my vB3.0.1.

thanks

Onkel_Tom
04-20-2004, 10:48 PM
smal bugfix for this hack:

replace in template vbindex_lastmemberbit

<a href="/member.php?u=$lastuserid">


With:

<a href="$vboptions[bburl]/member$ext?u=$lastuserid">


and the link to the profile of the newest members will also work ;)

chet
04-21-2004, 06:46 AM
DO you have a screen shot please

Davey-UK
04-21-2004, 03:33 PM
Here is a screenshot of mine. Its a great simple addition.

http://www.yewlandspast.co.uk/screeny.gif

Hope this helps

draculanowaday
04-25-2004, 08:45 AM
Unable to add cookies, header already sent.
File: /home/virtual/site27/fst/var/www/html/forum/vbiconfig.php
Line: 34

I've got this problem while viewing vbindex page as Guest.
Anyone please help me to fix this problem.
Thanks so much

draculanowaday
05-01-2004, 08:35 AM
no one can help me :(

Gervie
05-15-2004, 11:11 AM
no one can help me :(
tee-hee... what's wrong, baby ? :dead: :banana:

Skipsoutdoors
05-18-2004, 10:24 AM
Thanks,

Nice feature. I appreciate it.

Skip