Log in

View Full Version : vBFriends - View your social network and surf to others in vBulletin 3


Cloud-Warrior
06-22-2004, 10:00 PM
As with vBFOAF, I've just released this mod. (There are no modications needed really, so it's more of an add-on.)

Please note that your buddy list becomes public (to other registered users) with vBFriends, so you will have to notify people of the small change in policy.

Put the attached file in your vbulletin folder, and call with the u=1 parameter, e.g.

http://www.vbulletin.ie/forums/friends.php?u=1

You can surf your social network (similar to orkut), and view connections you have made to others and that others have made to you (similar to FOAF, or as illustrated with plink.org).

Screenshot attached.

The code contains some hardcoded HTML to avoid the use of templates (for now), but it uses standard vB3 CSS classes such as tcat, thead, smallfont, alt1 and alt2 - so should be fine with most styles.

Changelog:


// 0.1 - 2004-06-23 - First version
// 0.2 - 2004-06-24 - Added missing trailing slash
// 0.3 - 2004-06-28 - Added missing TABLE_PREFIX to tables
// 0.4 - 2004-07-01 - Added functionality for enemies
// 1.0 - 2004-07-21 - No comment
// 1.1 - 2004-09-09 - Added mutual percentage, in and out counts, link and unlink options for own account

Cold Steel
06-23-2004, 07:10 PM
Excellent! Installed!

However, I had to add a "/" to every instance of [bburl]. My [bburl] doesn't have a trailing slash.

Cold Steel
06-23-2004, 07:14 PM
Can you explain a little bit about how it works?

I have one buddy, so I am only linked to one person.

Another user has four buddies, and she is linked to eight people.

If they are linked through buddies of buddies, can that be made clear?

Polo
06-23-2004, 07:54 PM
Looks like a cool hack, i may install it later...

FleaBag
06-23-2004, 09:54 PM
Sweet ass. :)

Erwin
06-23-2004, 10:30 PM
Sounds like a very interesting idea. :) I may try this out...

Polo
06-23-2004, 11:04 PM
Installed. Works nice so far... (i also had to add a "/")

Cold Steel
06-24-2004, 07:03 AM
This hack would be orgasmic if it could become a vBulletin version of Friendster.

Cloud-Warrior
06-24-2004, 08:02 AM
If they are linked through buddies of buddies, can that be made clear?

Sure, I'll explain it now...

Let's say I have 6 buddies on my list (Homer, Marge, Bart, Lisa, Maggie and Grandpa), but only Homer, Bart and Grandpa have me on their buddy lists - then I'm linked to 3 people (because the link has been reciprocated).

So the number of 'friends' is really those who have linked back - you can't make a friend by just adding them to a buddy list. You'll see the number corresponds to the common names in the two lists (linked to / linked from).

I'll fix that trailing slash thing in the next version...

Polo
06-24-2004, 12:10 PM
Nice hack Cloud warrior, i have made several modifications to the code (so it can work the way i want it) and so far i havent had any problems.

Ghostsuit
06-24-2004, 12:17 PM
This looks fantastic. Wait for next release before testing :)

Polo
06-24-2004, 12:21 PM
i think the file has been updated

Cloud-Warrior
06-24-2004, 02:54 PM
Nice hack Cloud warrior, i have made several modifications to the code (so it can work the way i want it) and so far i havent had any problems.

Thanks for the positive comments all - Polo, I'll appreciate any useful updates / changes you have made...

D|ver
06-24-2004, 03:52 PM
great hack :D :D

but is it possible to integrate this into the normal user profile?

Dan
06-24-2004, 03:59 PM
Nice Idea :)

Cloud-Warrior
06-24-2004, 04:09 PM
If you mean linking to the Friends page, it just involves some editing of your templates. One way to make it more visible is to edit your postbit template, and just add in something like:


<a class="smallfont" href="friends.php?$session[sessionurl]u=$post[userid]">Friends</a>


whereever you want it. I put it after the reputation images on my forum, it's a matter of personal taste I guess.

Polo
06-24-2004, 04:50 PM
Thanks for the positive comments all - Polo, I'll appreciate any useful updates / changes you have made...

ok Cloud, ;)

D|ver
06-25-2004, 09:06 AM
If you mean linking to the Friends page, it just involves some editing of your templates. One way to make it more visible is to edit your postbit template, and just add in something like:


<a class="smallfont" href="friends.php?$session[sessionurl]u=$post[userid]">Friends</a>


whereever you want it. I put it after the reputation images on my forum, it's a matter of personal taste I guess.
thx for you help, but i don't mean linking to it

i want to show the friends page under the contact information in the normal user profile
is there any way to include friends.php?u=&userid for example?

that would be really great :)

Gryphon
06-25-2004, 05:46 PM
It didn't like table prefixes so I had to make the following changes.

Find:
// (Dis)Likes
$outuserids = array();
$outuserids = explode(' ', trim($userinfo[$whichlist]));
if (trim($userinfo[$whichlist]) != "") {
$outusers = $DB_site->query("SELECT user.username,user.userid,usertextfield.".$whichlist." FROM
".TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
user.userid = usertextfield.userid AND
user.userid IN (".implode(',',$outuserids).")
Replace:
// (Dis)Likes
$outuserids = array();
$outuserids = explode(' ', trim($userinfo[$whichlist]));
if (trim($userinfo[$whichlist]) != "") {
$outusers = $DB_site->query("SELECT ".TABLE_PREFIX."user.username,".TABLE_PREFIX."user.userid,".TABLE_PREFIX."usertextfield.".$whichlist." FROM
".TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
".TABLE_PREFIX."user.userid = ".TABLE_PREFIX."usertextfield.userid AND
".TABLE_PREFIX."user.userid IN (".implode(',',$outuserids).")

Find:
// (Dis)Liked By
$counter = 0;
$inusersquery = "SELECT user.username,user.userid,usertextfield.".$whichlist." FROM
".TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
user.userid = usertextfield.userid AND
FIND_IN_SET('".$userinfo[userid]."', REPLACE(usertextfield.".$whichlist.", ' ', ',')) > 0
ORDER BY user.username";

Replace:
// (Dis)Liked By
$counter = 0;
$inusersquery = "SELECT ".TABLE_PREFIX."user.username,".TABLE_PREFIX."user.userid,".TABLE_PREFIX."usertextfield.".$whichlist." FROM
".TABLE_PREFIX."user,".TABLE_PREFIX."usertextfield WHERE
".TABLE_PREFIX."user.userid = ".TABLE_PREFIX."usertextfield.userid AND
FIND_IN_SET('".$userinfo[userid]."', REPLACE(".TABLE_PREFIX."usertextfield.".$whichlist.", ' ', ',')) > 0
ORDER BY ".TABLE_PREFIX."user.username";

58sniper
06-25-2004, 06:50 PM
The one minor issue I've seen so far is that the avatar dimensions are hard coded. This is fine if you're using the 64x64 format.

Just a thought. Otherwise it's cool.

gmarik
06-26-2004, 10:58 AM
Looks great - like livejoornal and even better!

Serph_kun
06-29-2004, 08:18 PM
Ohhhh!!
excellent!! :D
Good idea!! ^^
Congratulations!! :)

will_lean
06-30-2004, 12:11 AM
#Fixed
nice hack.

yinyang
07-01-2004, 05:27 PM
i'm getting an "Invalid user ID specified. " error. don't know what's wrong, in fact i don't know much about coding in general. any ideas?

Cloud-Warrior
07-02-2004, 12:34 PM
For u=1 is it? Try the userid of your own account...

yinyang
07-02-2004, 09:02 PM
For u=1 is it? Try the userid of your own account...
when you mean try the userid of my own account, does this mean i type something in the friends.PHP file? where would i put it?

58sniper
07-03-2004, 12:00 AM
You have to call the file with a value for u. For example, friends.php?u=1 where the value of u is the user ID that you want to see the friends for....

yinyang
07-03-2004, 05:13 AM
You have to call the file with a value for u. For example, friends.php?u=1 where the value of u is the user ID that you want to see the friends for....
tks, i got that. but how do i do that automatically? is there anyway that it can be made a global so if i make the link into a tab, any of my members will get their friends list?

58sniper
07-03-2004, 11:17 AM
tks, i got that. but how do i do that automatically? is there anyway that it can be made a global so if i make the link into a tab, any of my members will get their friends list?


I added this to postbit:
<a href="friends.php?u=$post[userid]"><img class="inlineimg" src="$stylevar[imgdir_button]/friends.gif" alt="<phrase 1="$post[username]">$vbphrase[see_xs_friends]</phrase>" border="0" /></a>

Lee Wilde
07-04-2004, 07:12 AM
great hack :D :D

but is it possible to integrate this into the normal user profile?


Yes, I've done this. I dissected friends.php.....I took all the code and added it to member.php and I took the html and added it to the end of the MEMBERINFO template (see attached).

Cold Steel
07-04-2004, 07:27 AM
Can you give a larger screenshot?

Lee Wilde
07-04-2004, 07:54 AM
Can you give a larger screenshot?

Oops sorry....I've just uploaded a larger image.

Cold Steel
07-04-2004, 08:08 AM
Thanks, much appreciated.

Since you have it in the profile, have you used the separate file at all?

Lee Wilde
07-04-2004, 08:38 AM
Thanks, much appreciated.

Since you have it in the profile, have you used the separate file at all?


Well I don't think I have any need to link to friends.php on its own :rolleyes: but I'll keep it just in case.

This is an excellent feature, especially for a networking site like mine....when I eventually launch it.

Cloud-Warrior
07-06-2004, 09:32 AM
This is an excellent feature, especially for a networking site like mine....when I eventually launch it.

Thanks Lee - looks good.

I've updated the file with a slight change - adding do=ignorelist to the URL changes it from showing Friends to Enemies ;)

Lee Wilde
07-06-2004, 10:59 AM
This is a really cool hack Cloud-Warrior, thank you for your generosity in sharing it.

Someone has asked me to clarify what I've done to my member.php so I'm attaching a copy of an un-hacked member.php with the vbfriends code included. Search for "vBFriends 0.1 - John Breslin and Jon Hanna".

Cloud-Warrior
07-23-2004, 09:49 AM
Moved to Full Releases - thanks Logician.

Dark_Wizard
07-23-2004, 10:13 AM
This is a really cool hack Cloud-Warrior, thank you for your generosity in sharing it.

Someone has asked me to clarify what I've done to my member.php so I'm attaching a copy of an un-hacked member.php with the vbfriends code included. Search for "vBFriends 0.1 - John Breslin and Jon Hanna".

Lee, you can't post full vb files...I would instead document the changes made to member.php.

Darkwolf
07-25-2004, 02:28 AM
Could you add-on a feature to allow user to write testimonals for this user... after being added as friend..

and how do i add a "friend" button on the navbar template ?

Ghostsuit
07-28-2004, 02:49 AM
This is a really cool hack Cloud-Warrior, thank you for your generosity in sharing it.

Someone has asked me to clarify what I've done to my member.php so I'm attaching a copy of an un-hacked member.php with the vbfriends code included. Search for "vBFriends 0.1 - John Breslin and Jon Hanna".

Yeah could you quote the changes you made, since you can't attach the actual file?

The Coldwood
07-28-2004, 03:43 PM
Kewl hack - installed it on my own server.

rsuplido
07-28-2004, 06:20 PM
I second on testimonials. :D

DrkFusion
07-28-2004, 08:02 PM
I was suprised that I didn't see this. I installed it right away! I am writing an addon of how they are connected :)

sabret00the
07-28-2004, 10:46 PM
is their no way to have public friend (linked friends) and still keep normal private ones too?

Ghostsuit
07-29-2004, 05:53 PM
Just curious but what did everyone use the buddy list for anyway?

Polo
07-29-2004, 08:12 PM
but can you see who has you listed as a buddy in their buddy list? and besides, this little hack just gives it a more graphical interface...

webrats
07-30-2004, 12:39 AM
This is a really cool hack Cloud-Warrior, thank you for your generosity in sharing it.

Someone has asked me to clarify what I've done to my member.php so I'm attaching a copy of an un-hacked member.php with the vbfriends code included. Search for "vBFriends 0.1 - John Breslin and Jon Hanna".
repost please

Ghostsuit
08-12-2004, 10:04 AM
Anyone done any changes to this then?

deathemperor
08-26-2004, 09:09 AM
cool, a hack that I've requested about ten times but no replies but it's here >_<

Cloud-Warrior
08-27-2004, 10:28 AM
Glad to hear it! Next week, when the FOAF and Social Networking (http://rdfweb.org/topic/FoafGalway) workshop is over, I hope to make some additions to this hack.

D|ver
08-28-2004, 10:23 AM
Glad to hear it! Next week, when the FOAF and Social Networking (http://rdfweb.org/topic/FoafGalway) workshop is over, I hope to make some additions to this hack.
looking forward to it :)

a profile integration would be great :)

Ghostsuit
09-02-2004, 12:49 PM
Glad to hear it! Next week, when the FOAF and Social Networking (http://rdfweb.org/topic/FoafGalway) workshop is over, I hope to make some additions to this hack.

I would have to find out about this meeting now :D

Mosh
09-23-2004, 10:59 AM
* jd clicks install *

I have been testing this for a while, it is great just installed it on my live forum.

I added a link in my forums navbar (also a conditional so guests will not see the link), so when each member clicks the link it will bring up vBFriends with their userID.

Thank you.

JD. :)

Erwin
09-23-2004, 11:29 PM
Just a note - this hack is not well-optimized - each "friend" adds a query - so if a member has 50 friends, that is 57 or 59 queries when you run the script. :)

Something to bear in mind. I'll see if I can optimize it.

Ghostsuit
09-24-2004, 01:37 AM
Oh would be nice.

y2krazy
09-24-2004, 03:12 AM
Something that would be nice is if it were to use a template instead of the HTML outputs in the file itself. I know how to use if conditionals in the templates, but cannot seem to grasp how to utilize them through the friends.php file itself. The code won't work, and I'm not that great with PHP, so if you could maybe allow it to use a template instead, that would be great!

/me clicks install!

Cloud-Warrior
09-27-2004, 10:06 AM
Just a note - this hack is not well-optimized - each "friend" adds a query - so if a member has 50 friends, that is 57 or 59 queries when you run the script. :) Something to bear in mind. I'll see if I can optimize it.

Thanks Erwin - that would be great. What had you in mind?

I have a new version here too that I'm about to upload with a few more small changes (adds link / unlink things when viewing your own friends, calculates mutuality percentage, in and out counts).

D|ver
09-27-2004, 10:13 AM
will there also be the feature to show the friends in the users profile page?


that would be so great :)

Mosh
09-30-2004, 01:51 AM
Thanks Erwin - that would be great. What had you in mind?

I have a new version here too that I'm about to upload with a few more small changes (adds link / unlink things when viewing your own friends, calculates mutuality percentage, in and out counts).

Cloud-Warrior, will this have the mods that Erwin has in mind, if it will that will kill 2 birds with 1 stone as the saying goes. My members will appriciate it. Thanks :)

Just a note - this hack is not well-optimized - each "friend" adds a query - so if a member has 50 friends, that is 57 or 59 queries when you run the script. :)

Something to bear in mind. I'll see if I can optimize it.

That would be nice Erwin as my members love this feature, thanks in advance.

JD. :)

Lord Brar
10-04-2004, 03:32 PM
Quick Question - If as an Admin, I add every member in my friends list then will all of these friends be displayed on One Page? or is a Pagination possible?

Cloud-Warrior
10-04-2004, 04:01 PM
Quick Question - If as an Admin, I add every member in my friends list then will all of these friends be displayed on One Page? or is a Pagination possible?

Good question, but good grief don't do it (add all those friends) with the current version of vBFriends if you have more than 50 members because there's a query for each one of your friends (until it gets optimised) - there's no pagination at present, but after optimisation we could add that in.

BTW if anyone else has any ideas, please add them here. Someone was asking about integration into the profile, someone did that earlier in the thread so perhaps they can let us know what they edited (member.php I guess).

Erwin
10-05-2004, 01:16 AM
My forums had a database crash, so I've been busy restoring things. :) When I find time I will investigate this.

Mosh
10-05-2004, 11:18 AM
BTW if anyone else has any ideas, please add them here. Someone was asking about integration into the profile, someone did that earlier in the thread so perhaps they can let us know what they edited (member.php I guess).

Here are four:

1. The ability to add a friend to vBFriends (I know you can via your buddy list and a member's profile).
2. If you add someone, then some sort of automatic invite (PM?) to the person added to reciprecate the link, thereby making them a friend.
3. Online status in vBFriends
4. A PM this member link next to each friend.

Just a small wish list.

JD. :)

Benj
10-06-2004, 07:19 AM
i also would like the ability to have a friends request system that tells you who has linked to you giving you the option to allow / block the friend link

Benj
10-09-2004, 09:06 AM
cloud are you going to be optimising this script soon

D|ver
10-09-2004, 09:31 PM
My forums had a database crash, so I've been busy restoring things. :) When I find time I will investigate this.
cool that's good news :)

i' lookin forward for the next version

hopefully with a profile integration :D

Lee Wilde
10-26-2004, 04:12 PM
repost please

Sorry everyone, I stopped getting email notifications on this thread for some reason and didn't know people were asking for help.

Basically, all I did was take all the code from friends.php and pasted it into my member.php....right at the bottom, just above the print_output information.

Then I added a table to the bottom of my MEMBERINFO template (see attached text file). WARNING! I have changed my MEMBERINFO template around a great deal as you can see from the screenshot. All you really need is the small table at the end to add to your own template.

Then I got an error saying that there was no such file as ../vbulletin - so I just went back into member.php and deleted that line of code and everything works fine.

I really love it. Here is an updated screenshot.

Lee Wilde
10-26-2004, 04:22 PM
To clarify....

(1) Open friends.php and copy EVERYTHING between the <?php and ?>

(2) Paste it into your member.php.....right at the bottom, directly above this line:

$templatename = iif($quick, 'memberinfo_quick', 'MEMBERINFO');

(3) Remove all the html info (I don't know if it makes any difference to leave it in)

(4) Add a small table at the end of your MEMBERINFO template (see attached text file above)

I basically have no idea what I'm doing....just amusing myself by cutting n' pasting, so don't expect much in the way of technical advice...but it worked for me as you can see above.

Can't wait for the update with the added features!!

Lee Wilde
10-26-2004, 04:41 PM
Oh, also......in your new member.php.....you need to change every mention of "friends.php" to "member.php" I think there were 3

LeeLee is in Aussieland and has to go sleepy bye bye now.

Benj
11-03-2004, 12:31 PM
is anything being dun with this script now or ?

GamerJunk.net
11-06-2004, 07:20 PM
Here is a template mod I did for this so you can access it easier for each user.

sabret00the
11-18-2004, 11:22 AM
did this ever get optimised?

Benj
12-03-2004, 08:18 AM
nope

sabret00the
12-03-2004, 08:31 AM
it's a shame, would've been a nice thing to have.

Benj
12-03-2004, 08:45 AM
yeah sure wound

Lee Wilde
12-06-2004, 02:53 AM
One of my members has added EVERY other member as a friend. 400+ users at present, so it would have taken him a while. What an idiot. Our site is for business professionals, so what he has done looks particularly ridiculous.

Where do I go/what do I do to delete all his linked "friends"?

Cloud-Warrior
12-06-2004, 03:58 PM
You'll have to clear his buddy list with an SQL statement.

update usertextfield set buddylist="" where userid=HIS_USERID_HERE;

Lee Wilde
12-06-2004, 10:21 PM
Thank you VERY much! Worked like a charm. Really appreciated.

T3MEDIA
12-14-2004, 12:47 AM
Well I installed this but I found a bug! Yeah! I actually did something here!

well if there is no users in your (top) Friends % Mutual list the tables messes up. The HTML isnt what I am used to so I have no idea how to fix that.

in other words is linked to and is linked from get fat and just ruin the look.

file attached. any help in this area would be nice.

Cloud-Warrior
12-15-2004, 10:25 AM
Sorry I can't see the problem with the HTML here, maybe it's something obvious but what's wrong in the screenshot?

Thanks,

John.
--

Benj
12-15-2004, 01:37 PM
are there any plans to update this hack in any way shape or form ?

sabret00the
12-15-2004, 01:46 PM
something i was both wondering and hoping, especially in regards to caching the queries via a function, i like this hack and i have something similar planned but i honestly think that it would just seem more of an add-on.

the features i was looking for was;
adding a friend requires their acceptance
and then you go click ona link to display all the friends instead of the admin set amount.

ofcourse that would make obselete the "is linked too" and "is linked from" columns and queries :)

T3MEDIA
12-15-2004, 02:56 PM
Sorry I can't see the problem with the HTML here, maybe it's something obvious but what's wrong in the screenshot?

Thanks,

John.
--
Oh I am sorry see the is linked to and from? Its fatter than the others. It only happens when there isnt anyone mutually linked.

When there are avatars uptop it works or I should say looks perfect. I also would like it so it doesnt link to other peoples buddies profiles. just shows who I am linked to and who linked to me. and who reciprocated. Thats it. I would rather if you click on a name in the list it just goes to thier profile page.


If you can show me how to do that that would be awsome!

sabret00the
12-15-2004, 03:28 PM
here yo go t3media

i basicallly cleaned up the code so i could take a proper look at it, i was gonna make it template based too but decided to leave it, but alas here it is, i couldn't work out a way to get the info via a cache in my spare hour, hopefully someone else will :)

T3MEDIA
12-15-2004, 03:36 PM
here yo go t3media

i basicallly cleaned up the code so i could take a proper look at it, i was gonna make it template based too but decided to leave it, but alas here it is, i couldn't work out a way to get the info via a cache in my spare hour, hopefully someone else will :)
Oh you hucked it up. I would like to make a donation for that. (it wont be big) but I mean that is exactly what I wanted. for saber and Cloud-Warrior.

The only thing I ask is what ever you did to fix the tables can you do it as well when there isnt anyone listed? If there are no buddys at all the tables go fat as well. That is about it!!!

Thank you very much. please both users PM me a paypal to send to.

sabret00the
12-15-2004, 03:53 PM
thank you but i couldn't accept i barely done anything :)

T3MEDIA
12-15-2004, 04:25 PM
thank you but i couldn't accept i barely done anything :)
ohh now the link adds people to the ignore list lol.
that was actually funny.

can these incy wincy things be fix in my mini mod?

Oh if there are no buddies at all... the bottom tables go fat as well.

sabret00the
12-15-2004, 05:11 PM
what link add's em to your iggy list?

sabret00the
12-15-2004, 06:30 PM
minor update, now most of it is handles via vB

adding the template and the updated file here

name the template: vbfriends_main

updated the php file

T3MEDIA
12-15-2004, 06:35 PM
what link add's em to your iggy list?
ya know... like if you have people on the link to side (far right) it says link next to thier name.

if I hit it now. they will be added to my ingore list not the add buddy list. it has to be something small. they are going to the oposite thing. Same thing if I try to unlink.

something small you changed in the code.

here is a new pic of fat tables with out any data.

sabret00the
12-15-2004, 06:38 PM
ahhhhh i just noticed that issue too, ok i'll fix that :)

sabret00the
12-15-2004, 06:41 PM
fixed code, it was dirty but it works

replace the template with this
$stylevar[htmldoctype]
<head>
<title>$vboptions[bbtitle] vBFriends</title>
$headinclude

</head>
<body>
$header
$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="200">
User
</td>
<if condition="$whichlist == 'buddylist'">
<td class="tcat" colspan="2">
Friends ($inoutcounter) ... $mutual% Mutual
</td>
<else />
<td class="tcat" colspan="2">
Enemies ($inoutcounter) ... $mutual% Mutual
</td>
</if>
</tr>
<tr>
<td class="alt1" valign="top" align="center" rowspan="3">
<if condition="!$userinfo[profilepicdateline]">
<img src="$vboptions[bburl]/$userinfo[avatarurl]\ /"><br />
<else />
<img src="$vboptions[bburl]/image.php?u=$userinfo[userid]&amp;type=profile&amp;dateline=$userinfo[profilepicdateline]" /><br />
</if>
$userinfo[username] ($inoutcounter)<br />
<br />
<a class="smallfont" href="$vboptions[bburl]/member.php?u=$userinfo[userid]">View Full Profile</a><br />
<!-- // If already on list, will want to change this to remove... -->
<if condition="$userinfo[userid] != $bbuserinfo[userid]">
<a class="smallfont" href="$vboptions[bburl]/profile.php?do=addlist&userlist=$whichlistshort&u=$userinfo[userid]">Add to Your $whichlistshort List</a>
</if>
</td>
<td class="alt2" colspan="2">
<table>
<tr>
$inoutuserlist
</tr>
</table>
</td>
</tr>
<tr>
<td class="thead" height="20">
Is Linked To ($outcounter)
</td>
<td class="thead" height="20">
Is Linked From ($incounter)
</td>
</tr>
<tr>
<td class="alt2" valign="top">
<div class="smallfont">
$outuserlist
</div>
</td>
<td class="alt2" valign="top">
<div class="smallfont">
$inuserlist
</div>
</td>
</tr>
</table>


$footer

T3MEDIA
12-15-2004, 06:43 PM
Thank you ever so much.

sabret00the
12-17-2004, 11:28 AM
i've not been able to work out how to optimise this at all. :(

D|ver
12-17-2004, 11:42 AM
are there any plans to update this hack in any way shape or form ?
yeah that would be really so great if this hack would be optimised :)

i really love this hack but because there is still no profile integration i can't use it ;(

sabret00the
12-17-2004, 11:55 AM
profile integration is the easy bit, the harder bit is the optimisation, then what i'd really love is making sure you have to accept buddy request, which even that aint too too hard (not saying i could do it but whoever can optimise it can, imo it's just a matter of sending a pm with two links, accept/deny if you click accept then it adds the userid to each table, else it sends back a pm to say request denied.

MikaK
12-22-2004, 07:57 AM
This surely looks like a very cool hack to have once optimized! Any progress with that?

Cheers,

-Mika

sabret00the
12-22-2004, 09:29 AM
aye once it's optimised it will be a great hack.

T3MEDIA
01-18-2005, 12:39 AM
Bump~~~ Any thing new on this?

Cloud-Warrior
01-20-2005, 08:41 AM
I'm afraid work priorities have put me off track on this hack - it'll be a few weeks before I can take a look.

There's three ideas - see if the existing SQL and code can be optimised, create a new table to store buddy IDs, or cache the output to a HTML file that only gets updated every so often...

Sorry - but I do want to do this, just can't at the moment.

Erwin
01-20-2005, 08:49 PM
The easiest would be a separate column which gets updated as people are added or removed from the buddy list. When I have time I was going to look into it. But I'm just too busy. :) It's not hard - same queries only when people are added to buddy list, adds to the column in user table with list of userids.

T3MEDIA
01-28-2005, 09:14 AM
I'm afraid work priorities have put me off track on this hack - it'll be a few weeks before I can take a look.

There's three ideas - see if the existing SQL and code can be optimised, create a new table to store buddy IDs, or cache the output to a HTML file that only gets updated every so often...

Sorry - but I do want to do this, just can't at the moment.
Hey so far for me it works great.

Dennis Olson
02-15-2005, 02:14 PM
I'd like something a little different:

Mods and admins can see anyone's list, but regular users can only see their own list. (For example user# 123 could not see user # 456's friends list.) How could that be done?

altsounds
03-05-2005, 12:09 PM
Re-vamping the buddy portion of VB would be excellent for this hack so that a PM is sent when you ask to add a buddy and they can either accept you or deny you.

If they accept you, it would be cool if it automatically created the reverse (add me as one of their friends too).

And having the capability of viewing the buddies from the profile with a limit (say 8) shown. Would be cool if they could be shown in random order too so every time you open the profile it would be different. There should then be a link saying view full buddy list which will take you to friends.php

I can mess around with the profile integration thing (not that good at coding mind you) if some expert can handle the whole back end buddy pm sending, accepting, denying and checking.

I'll be keeping my eye on this post!!!!

Great Hack.

Chris

T3MEDIA
03-05-2005, 08:31 PM
good idea sounds like myspace... nice.

altsounds
03-10-2005, 06:08 PM
Anyone willing to take my suggestions above on?? As I stated I am not a coder so all I can help with is suggestions!! This would be amazing if someone could take it on.

Chris

T3MEDIA
03-13-2005, 12:59 PM
Hey a few if statements do not work in this.
I never noticed before. The enemy and " <!-- // If already on list, will want to change this to remove... -->" part.
if you look there isnt code there for the if statement. should be a else but I am not sure what string to put.

If your around think you can fix that small mishap?

fixed code, it was dirty but it works

replace the template with this
$stylevar[htmldoctype]
<head>
<title>$vboptions[bbtitle] vBFriends</title>
$headinclude

</head>
<body>
$header
$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="200">
User
</td>
<if condition="$whichlist == 'buddylist'">
<td class="tcat" colspan="2">
Friends ($inoutcounter) ... $mutual% Mutual
</td>
<else />
<td class="tcat" colspan="2">
Enemies ($inoutcounter) ... $mutual% Mutual
</td>
</if>
</tr>
<tr>
<td class="alt1" valign="top" align="center" rowspan="3">
<if condition="!$userinfo[profilepicdateline]">
<img src="$vboptions[bburl]/$userinfo[avatarurl]\ /"><br />
<else />
<img src="$vboptions[bburl]/image.php?u=$userinfo[userid]&amp;type=profile&amp;dateline=$userinfo[profilepicdateline]" /><br />
</if>
$userinfo[username] ($inoutcounter)<br />
<br />
<a class="smallfont" href="$vboptions[bburl]/member.php?u=$userinfo[userid]">View Full Profile</a><br />
<!-- // If already on list, will want to change this to remove... -->
<if condition="$userinfo[userid] != $bbuserinfo[userid]">
<a class="smallfont" href="$vboptions[bburl]/profile.php?do=addlist&userlist=$whichlistshort&u=$userinfo[userid]">Add to Your $whichlistshort List</a>
</if>
</td>
<td class="alt2" colspan="2">
<table>
<tr>
$inoutuserlist
</tr>
</table>
</td>
</tr>
<tr>
<td class="thead" height="20">
Is Linked To ($outcounter)
</td>
<td class="thead" height="20">
Is Linked From ($incounter)
</td>
</tr>
<tr>
<td class="alt2" valign="top">
<div class="smallfont">
$outuserlist
</div>
</td>
<td class="alt2" valign="top">
<div class="smallfont">
$inuserlist
</div>
</td>
</tr>
</table>


$footer

sabret00the
03-13-2005, 08:38 PM
Hey a few if statements do not work in this.
I never noticed before. The enemy and " <!-- // If already on list, will want to change this to remove... -->" part.
if you look there isnt code there for the if statement. should be a else but I am not sure what string to put.

If your around think you can fix that small mishap?
i have no idea what so ever what you mean, this template is working properly for me.

T3MEDIA
03-13-2005, 08:44 PM
i have no idea what so ever what you mean, this template is working properly for me.ok look at your if statement.

<if condition="$userinfo[userid] != $bbuserinfo[userid]">
<a class="smallfont" href="$vboptions[bburl]/profile.php?do=addlist&userlist=$whichlistshort&u=$userinfo[userid]">Add to Your $whichlistshort List</a>
</if>

this is always true. On top of that there isnt a remove there.
shouldnt it not show all the time? I can see it even if they are on my list.

as for enemies I never see that.

is it just me?

sabret00the
03-13-2005, 08:48 PM
ok look at your if statement.

<if condition="$userinfo[userid] != $bbuserinfo[userid]">
<a class="smallfont" href="$vboptions[bburl]/profile.php?do=addlist&userlist=$whichlistshort&u=$userinfo[userid]">Add to Your $whichlistshort List</a>
</if>

this is always true. On top of that there isnt a remove there.
shouldnt it not show all the time? I can see it even if they are on my list.

as for enemies I never see that.

is it just me?
what the if condition is asking is "if you are not this user => do you want to add him/her to your userlist?" and NOT "if you're a buddy do you wanna add me?".

T3MEDIA
03-13-2005, 08:53 PM
what the if condition is asking is "if you are not this user => do you want to add him/her to your userlist?" and NOT "if you're a buddy do you wanna add me?".
what????
ok hold up. I am looking at a user right now. I am his buddy he is mine.
it still says Add to Your buddy List

that isnt right. ok. put it this way look at your comment. "we want to change this to remove"
there isnt anything there right?

sabret00the
03-13-2005, 09:03 PM
you're correct, but the comment is wrong
<!-- // If already on list, will want to change this to remove... -->

should read
<!-- // If i am not this user offer to add me -->

you could, or anyone could quite easily readd the original conditional but if i remember correctly i removed that due to a bug in the system where it wasn't removing users properly.

T3MEDIA
03-13-2005, 09:05 PM
you're correct, but the comment is wrong
<!-- // If already on list, will want to change this to remove... -->

should read
<!-- // If i am not this user offer to add me -->

you could, or anyone could quite easily readd the original conditional but if i remember correctly i removed that due to a bug in the system where it wasn't removing users properly.
ummm so your sayin just leave it I guess? Ok the reason I asked was I would like that conditional to actually work

If I am a buddy already just disapear. any if cons I could use?

It shows constantly at the moment you really dont need a if statement.

sabret00the
03-13-2005, 09:12 PM
surround it with this <if condition="in_array($userinfo[userid], $outuserids)">
<if condition="$userinfo[userid] != $bbuserinfo[userid]">
<a class="smallfont" href="$vboptions[bburl]/profile.php?do=addlist&userlist=$whichlistshort&u=$userinfo[userid]">Add to Your $whichlistshort List</a>
</if>
</if>

T3MEDIA
03-13-2005, 09:27 PM
Im on it batman

T3MEDIA
03-13-2005, 09:29 PM
+++++++++++++++
question what is the URL to remove so I can do a else statement?

thanks for the help so far.

sabret00the
03-13-2005, 09:34 PM
i have no idea try this though

<a href="$vboptions[bburl]/profile.php?do=removelist&userlist=$whichlistshort&u=$userinfo[userid]">

Dennis Olson
03-15-2005, 10:31 PM
good idea sounds like myspace... nice.
I'd still REALLY like this change:

https://vborg.vbsupport.ru/showpost.php?p=612175&postcount=103

Could someone perhaps work that out?

TIA!

T3MEDIA
03-15-2005, 10:36 PM
a template conditional? like your asking a Hi5 thing? I can see people in my own network? I never understood what that ment.

Dennis Olson
03-29-2005, 04:59 PM
A "regular member" should ONLY be able to see his/her own list. An Admin could see everyone's list. Would probably be a conditional, but I don't know where it'd go, or the syntax.

T3MEDIA
04-02-2005, 02:02 PM
vbbuddies I think is the new thing.

Check it out and let me know.

Allan
04-02-2005, 04:33 PM
work under vB3.0.7 ?

Selene
04-04-2005, 12:37 PM
any one who installed it? any URLS?

Hanif
04-05-2005, 10:07 PM
Hi waht I'm looking for is a hack that allows some sort of functionality as such:
My basic wishlist:
- User profiles with guestbook, multiple photos, html user page (myspace.com), blog feed on profile (my hack of mod_feedrss)
- User Groups like tribe.net and e-Friends.
- Events posting, registration and payment with PayPal (iVITE)
- User-to-user event and site invitation with referral system. (If someone joins and they enter my user name I am automatically sent a buddy request)
- Friend/Buddy system with request/deny, buddy groups and buddy/group PM
- Find users/events by zipcode distance
- Profile search by clicking on keywords/phrases like tribe.net and myspace.com

the main thing would be searching for users by a certain zipcode/distance...
any joy anyone?

Kind regards,

Hanif

CSS59
04-09-2005, 01:58 AM
Hi waht I'm looking for is a hack that allows some sort of functionality as such:
My basic wishlist:
- User profiles with guestbook, multiple photos, html user page (myspace.com), blog feed on profile (my hack of mod_feedrss)
- User Groups like tribe.net and e-Friends.
- Events posting, registration and payment with PayPal (iVITE)
- User-to-user event and site invitation with referral system. (If someone joins and they enter my user name I am automatically sent a buddy request)
- Friend/Buddy system with request/deny, buddy groups and buddy/group PM
- Find users/events by zipcode distance
- Profile search by clicking on keywords/phrases like tribe.net and myspace.com

the main thing would be searching for users by a certain zipcode/distance...
any joy anyone?

Kind regards,

Hanif


All that would be so nice! What does myspace.com run?


I would like to show thumbnails by your frineds link

I hope someone can finish this hack.

Polo
04-11-2005, 12:17 PM
check out vbuddies... maybe that is what you are looking for...

altsounds
04-18-2005, 01:18 AM
I have vbuddies installed for my buddy portion and that works awesome. I have used this friends however to show people that have requested to add you as a friend that you have not accepted and it gives you the ability to accept. I am using the linked from portion of this script and have changed the Unlink portion to show nothing and the Link portion to show user picture and accept user.

However, this is all cool but the only way to remove somebody from the "Buddy Requests" is to accept them then it uses the unlink portion of the php file and doesn't show them in the file. What I need is a way to figure out how you can decline the user request so it will also not show.

Anyone have any ideas?

Chris

T3MEDIA
04-18-2005, 11:04 AM
I did the exact same thing. I turned this hack into "degrees of seperation" and the other hack vbbudies as a FRIENDS section.

Not to talk about a next hack but my workaround to your delema was to use the pm additon to the vbuddies hack. in the pm I give the option to see the users profile. so you can add them or remove them.

Yes I know there isnt a refusal.

Benj
10-07-2005, 11:25 PM
OMFG I HAVE AN AMAZING USE FOR THIS IN VB3.5 any chance of a port ?

drumsy
10-11-2005, 12:36 PM
I would definitely enjoy this being ported to 3.5.0! :)

Benj
10-11-2005, 02:07 PM
OMFG I HAVE AN AMAZING USE FOR THIS IN VB3.5 any chance of a port ?
hahahaha i dont remember posting this.... AH must have been drunk

ludachris
10-16-2005, 08:56 PM
PLEASE port this for vB 3.5!!!!

Cloud-Warrior
11-24-2005, 03:52 PM
Sorry it took me so long to do this - I've ported this, and it is at:

https://vborg.vbsupport.ru/showthread.php?t=101470

cfspinner
12-26-2006, 02:51 PM
Will this be ported to vB 3.6