Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Topic started by: Grudge on December 05, 2004, 11:10:50 AM

Title: Buddy List
Post by: Grudge on December 05, 2004, 11:10:50 AM
Link to Mod (http://mods.simplemachines.org/index.php?mod=58)

This is a basic buddy list. It allows you to easily add people to your list through their profile. Once on your list it shows your buddies in the "who is online" area and makes it easy to select people to send IM's too.
Title: Re: Buddy List
Post by: snarf on December 08, 2004, 09:05:11 AM
Would be a nice mod if it worked, see error message:

Fatal error: Call to undefined function: buddymanage() in
/MY OWN URL/public_html/test/Sources/InstantMessage.php on line 105

Next messages occured during istallation

Voer code uit BuddyPdb.php 
2. Voer aanpassing uit ./Sources/BoardIndex.php Succes
3. Voer aanpassing uit ./Sources/InstantMessage.php Mislukt <= failed
4. Voer aanpassing uit ./Sources/Load.php Succes
5. Voer aanpassing uit ./Sources/Profile.php Succes
6. Voer aanpassing uit ./Themes/default/BoardIndex.template.php Mislukt <= failed
7. Voer aanpassing uit ./Themes/default/InstantMessage.template.php Succes
8. Voer aanpassing uit ./Themes/default/languages/Modifications.english.php Succes
9. Voer aanpassing uit ./Themes/default/Profile.template.php Succes


grtz Frans 8)
Title: Re: Buddy List
Post by: Grudge on December 08, 2004, 09:56:10 AM
All my mods haev been adapted ready for 1.0 Final and may not install in RC2 anymore I'm afraid - I adapted them early as it's better than adapting them late like I normally do :P Shouldn't be too long to wait for it I hope
Title: Re: Buddy List
Post by: Killer Possum on December 15, 2004, 06:23:20 PM
*coughmodpagestillsaysCompatibleWith:1.0 RC2cough*
Title: Re: Buddy List
Post by: Grudge on December 15, 2004, 07:07:30 PM
Mod Site doesn't have 1.0 Final on there yet :P
Title: Re: Buddy List
Post by: Killer Possum on December 15, 2004, 07:27:27 PM
Oh :-X
Title: Re: Buddy List
Post by: cleavers1066 on December 31, 2004, 07:39:34 AM
I've a minor problem since upgrading to 1.0

In the error log i'm getting this error from Guests ?

Quote8: Undefined index: buddyList
/home/website/public_html/forum/Sources/Load.php
180

Line 180

'buddy_list' => $user_settings['buddyList'],

I originally installed it inder RC2, and since the upgrade I have un-installed and re-installed.
Title: Re: Buddy List
Post by: Kindred on December 31, 2004, 08:13:01 AM
Change that line (line 180 in load.php)  to read:

      'buddy_list' => isset($user_settings['buddyList']) ? $user_settings['buddyList'] : '',
Title: Re: Buddy List
Post by: cleavers1066 on December 31, 2004, 09:17:37 AM
Thanks kindred that seems to have sorted the problem.

Much appreciated.
Title: Re: Buddy List
Post by: Webby on January 02, 2005, 10:05:16 AM
I would like to have it show the Buddies like this :

(http://www.salesplaza.nl/images/buddy.jpg)

How would I do that ?
Title: Re: Buddy List
Post by: Grudge on January 02, 2005, 05:05:08 PM
Webby, it should already do that! Are you using the default theme? If not you can check this happens by going to ?theme=1 on your url.
Title: Re: Buddy List
Post by: Webby on January 03, 2005, 02:05:41 AM
No, also when I use ?theme=1 it doesn't show me the count. What can I add to display the buddy-count then on a non-standard theme ?
Title: Re: Buddy List
Post by: Webby on January 03, 2005, 03:18:06 AM
Never mind, got it working already ;)
Title: Re: Buddy List
Post by: Sean on January 10, 2005, 09:35:23 PM
hi there, im getting a strange error, it took me forever to get the buddy mod to even load, than when i did, i keep getting this error on the top of some my pages

Notice: Undefined index: buddyList in /home/username/public_html/forums/Sources/Load.php on line 179

any ideas how to fix this, or to at least remove the mod?

like an idiot i didnt back up my database or sources directory

thanks for your time
Title: Re: Buddy List
Post by: Grudge on January 11, 2005, 08:53:36 AM
Is this happening when you are logged in? Can you check your members table to check the buddyList column was actually added?
Title: Re: Buddy List
Post by: Kindred on January 11, 2005, 09:03:21 AM
Sean,

Did you read the above posts at all?

Change that line (line 179 in load.php)  to read:

      'buddy_list' => isset($user_settings['buddyList']) ? $user_settings['buddyList'] : '',

Although we seem to have some additional mods, which set our buddy_list line to 180 instead of 179, the error and the fix remain the same.


Grudge,

for some reason, under SMF v1.0, this needs to be a conditional... but it's not in your basic code.

I had the same issue (and same fix) with someone else's mod as well...
Title: Re: Buddy List
Post by: Grudge on January 11, 2005, 03:12:11 PM
Actually, yes, I already fixed this!!

I suspect the user downloaded the old file from the mod site and not the new one?
Title: Re: Buddy List
Post by: Sean on January 11, 2005, 04:29:14 PM
well i got rid of the error, but it wont diplay the buddy list

could it have to do with im running the mos bridge?

or that im using a different theme other than the default theme?

thanks for your time
Title: Re: Buddy List
Post by: Kindred on January 11, 2005, 04:32:33 PM
Sean...

You really need to check other threads (and previous messages in the same thread) for answers.

The Mambo-SMF bridge requires some modification for SMF mods like this one (especially ones that add actions)

You have two options, modify the smf.php file in mambo/components/com_smf or install [unknown]'s newest version of the bridge along with his bridge package update for SMF.

The Buddy mods works perfectly on my site, which is running SMF 1.0 and Mambo 4.5.1 with [unknown]'s bridge
(it also worked when I originally ran 2.11 stable of Orstio's bridge with modifications)

Title: Re: Buddy List
Post by: Grudge on January 11, 2005, 05:32:14 PM
My mods only modify the default theme. Any other theme will require manual modification of BoardIndex.php (On this mod). To work out what changes to make open the archive, and then open the mod file contained within it. Search for "Boardindex.template.php" and make the changes that it says under that filename.
Title: Re: Buddy List
Post by: Sean on January 14, 2005, 07:31:45 AM
Okay thanks for your time, ill do some research and read previous threads etc,

thanks for all of your help :)
Title: Re: Buddy List
Post by: NoRad on January 19, 2005, 08:57:59 PM
Any plans to make this into a more advanced buddy list, allowing members to display their buddies on their profile, along with a special buddies screen that is easy for you to check off names for private message(s)?
Title: Re: Buddy List
Post by: [Unknown] on January 19, 2005, 09:02:27 PM
Quote from: Radianation on January 19, 2005, 08:57:59 PM
display their buddies on their profile

Hmm.

-[Unknown]
Title: Re: Buddy List
Post by: dschwab9 on January 19, 2005, 09:04:23 PM
Can we list enemies in our profiles too?
Title: Re: Buddy List
Post by: NoRad on January 21, 2005, 06:38:12 AM
Enemies (known as your blacklist on other popular sites I frequent) should not be displayed to the public in my opinion.

Here are some neat things another site is doing:

Blacklist: You can only blacklist somebody if they've sent you a private message. The number of blacklists shows up on their profile, much like karma would. A blacklist functions like the SMF enemies list, preventing other users from contacting them (harrassing them) via private messages.

Buddylist: The buddylist is an opt-in system with a basic challenge-response private message between users. It's a mutual system. So, if I add you and you authorize the request then I am added to your list as well. The buddylist is then displayed on the bottom of a users profile page with avatars (thumbnails) for the first x number of users. A link is provided to view the entire buddylist (nice for people that have 100+ buddies or whatever). The full screen buddylist only has an alphabetical list of names.

Second function of Buddylist: You can click a special buddylist/friends button (similar to where your profile button is) that allows you to easily access an alphabetized list of your buddies, sorted based on online status. This makes it easy to communicate with your friends while they are online.

-----------------------

These features could really help SMF out a lot in my opinion. It kind of fills in the gap between the awesome forums and the not-so-awesome private messaging features. I'd love to see a hack/mod for the PM's to display more like a yahoo Email page than a post reply / topic summary situation.

Thanks for reading.
Title: Re: Buddy List
Post by: Grudge on January 21, 2005, 08:11:41 AM
Radianation,

I don't intend to progress this mod further, but a similar system will be integrated into SMF 1.1. I do like some of your ideas but think that they may still be a candidate for a mod. What I may do is make a mod after 1.1 comes out to enhance the standard buddy functionality - or someone else can do it :D

Grudge
Title: Re: Buddy List
Post by: NoRad on January 21, 2005, 06:57:48 PM
Thank you. I just thought I'd throw a detailed message about what I'm looking for incase somebody did want to pick it up. I look forward to 1.1
Title: Re: Buddy List
Post by: edi67 on January 22, 2005, 06:46:08 AM
lovely mod grudge work perfectly with my SMF 1.0.1

i have one question for you, cause in my forum Global Mod are colored in Blue in list online users i have little confusion cause this mod colured too buddy user in blue, is possible add near buddy users one little icons ? for separate them from global moderator users?

i not want only change color blue in another but may be have one little icons for separate them .
Title: Re: Buddy List
Post by: FaSan on January 22, 2005, 08:39:08 AM
In BoardIndex.php you may change color :

$row['onlineColor'] = 'blue';

;)
Title: Re: Buddy List
Post by: edi67 on January 22, 2005, 08:46:37 AM
Quote from: FaSan on January 22, 2005, 08:39:08 AM
In BoardIndex.php you may change color :

$row['onlineColor'] = 'blue';

;)

i know this i already done but i like more if i can add one little icon near one buddies
Title: Re: Buddy List
Post by: [Unknown] on January 22, 2005, 01:40:00 PM
I wouldn't be opposed to opt-in functionality for the buddylist, but it seems as if it would be fairly complicated to implement.

-[Unknown]
Title: Re: Buddy List
Post by: NoRad on January 23, 2005, 03:29:40 AM
Hmm... Wouldn't it work similar to how a new user is signed up, but the Email isn't confirmed? Couldn't there be a flag like this? I'd use a lookup table for the buddies.
Title: Re: Buddy List
Post by: tomsl on January 29, 2005, 12:55:36 PM
Is it possible to find a list over your own buddy list? That would be great.

Tom
Title: Re: Buddy List
Post by: NoRad on January 29, 2005, 01:26:59 PM
What do you mean?
Title: Re: Buddy List
Post by: tomsl on January 29, 2005, 01:29:56 PM
Quote from: Radianation on January 29, 2005, 01:26:59 PM
What do you mean?

Just like the memberlist. So you'll be able to view all members you have put in your own buddy list.
Title: Re: Buddy List
Post by: NoRad on January 29, 2005, 04:31:57 PM
Dunno. I requested this also.
Title: Re: Buddy List
Post by: Grudge on January 29, 2005, 07:23:56 PM
Well - you can edit them from "PM Preferences" I believe, not quite what you want I guess, but close?
Title: Re: Buddy List
Post by: edi67 on January 30, 2005, 03:16:15 AM
is possible add users on buddy list not only from profile but from them post too?

i means one little buttons for add them from every them post
Title: Re: Buddy List
Post by: NoRad on January 30, 2005, 10:19:37 PM
I suppose you could do that by hand, but that seems like a feature not many people would want. I think it's better to have to go through their profile to add them.
Title: Re: Buddy List
Post by: madfiddler on February 13, 2005, 07:46:17 PM
Tried this on 1.0.1 and got this when I tried to add a buddy...

Fatal error: Cannot redeclare buddymanage() (previously declared in /home/blah/public_html/fiddleforum/Sources/InstantMessage.php:874) in /home/blah/public_html/fiddleforum/Sources/InstantMessage.php on line 900
Title: Re: Buddy List
Post by: [Unknown] on February 13, 2005, 10:03:27 PM
Sounds like you got the mod installed twice... :/.

-[Unknown]
Title: Re: Buddy List
Post by: NoRad on February 14, 2005, 01:17:08 AM
God I need a real buddylist feature. lol
Title: Re: Buddy List
Post by: madfiddler on February 14, 2005, 04:50:42 AM
Quote from: [Unknown] on February 13, 2005, 10:03:27 PM
Sounds like you got the mod installed twice... :/.

Oh dear :( So now I've uninstalled it, perhaps parts of it are still installed. There was a problem with some files not being writeable, so did have to run the install a couple of times *sigh* :(
Title: Re: Buddy List
Post by: IbrahimA on April 15, 2005, 10:14:38 PM
hey, any way to streamline installation on another theme besides default? I can't find any of the places i need to modify things in. someone should make an "install mod in all themes" mod.
Title: Re: Buddy List
Post by: oistarbwoy on April 29, 2005, 12:52:55 AM
ok hey there i was wondering if anyone could help me.

i installed the buddy mod and then my forum decided that nobody on my site would be able to use pm features in anyway. everytime i try to chheck pms or send pms it send me to a blank page.

i uninstalled the buddy mod. still no change, although im noticing the add to buddy list option link in user profiles twice.

im not really sure what to do and im not good with php at all, so im kind scared if i start messing about with it ill make it worse. can anyone help me as pms are a big part of my forum and entire website, competition entrys etc are sent to me via pm and having this feature offline is a massive pain!

Thank you
Cat Bowie
Title: Re: Buddy List
Post by: NoRad on April 29, 2005, 06:24:10 PM
how modified is your forum? You could always uninstall the mod and then just copy the standard installation files over the existing files to see if that resolves your PM problem? Are you sure that PMs are enabled? I think there is an option in the server settings to turn them on or off. Always backup your site before copying files over, as you might lose changes you've made.
Title: Re: Buddy List
Post by: oistarbwoy on April 30, 2005, 11:52:40 AM
pms are definatly enabled

the major problem is, i dont even know how modified my forum is i didnt set it up, but the dude that did isnt around anymore, so i cant get him to fix it. i really need to be able to get the pms working again but i have no idea how.

can you tell me how modified my forum is? lol

www.oistarbwoy.net/forums

test account

username:test1   password: test



Title: Re: Buddy List
Post by: NoRad on April 30, 2005, 03:26:36 PM
Looks like it's definitely modified and wrapped with some custom menus. I would say that the custom theme is what is causing you trouble. You can change *YOUR* profile to the standard SMF one to see if that shows the PM feature. If that's the case then you only need to change the part of the theme that links to the pms.
Title: Re: Buddy List
Post by: oistarbwoy on April 30, 2005, 07:57:54 PM
thanks for the help i tried that but still no luck, any other ideas?

Cat Bowie
Title: Re: Buddy List
Post by: d3v on June 10, 2005, 11:21:40 PM
Is it possible to display this in a seperate window/module? Who's Online in my Theme is sort of Hidden, A seperate window where the user could see right away online status of those who matters would be great. Just a question/suggestion. Thank you.
Title: Re: Buddy List
Post by: NoRad on June 12, 2005, 04:14:13 AM
You mean like this? (mine is a component in mambo, so the URL will be a little different for your forum)
http://www.louipimps.com/index.php?option=com_smf&Itemid=60&action=who
Title: Re: Buddy List
Post by: d3v on June 12, 2005, 04:16:30 AM
How do you do that?
Title: Re: Buddy List
Post by: NoRad on June 13, 2005, 11:12:41 AM
If you click on who's online on your page you should get the same thing. There is another thread on here that Explains how to split the guests from your registered members on that page.
Title: Re: Buddy List
Post by: vln004 on July 11, 2005, 02:05:19 AM
does this mod work with the new beta? if it doesn't, hows about a little updating?


with some new features, like listing all the friend's on the person's profile.
Title: Re: Buddy List
Post by: NoRad on July 13, 2005, 07:38:49 PM
Good luck. I've been wanting that for awhile. I think you'll just have to break down and do that yourself.
Title: Re: Buddy List
Post by: dtm.exe on July 13, 2005, 07:39:41 PM
Quote from: vln004 on July 11, 2005, 02:05:19 AM
does this mod work with the new beta? if it doesn't, hows about a little updating?


with some new features, like listing all the friend's on the person's profile.

The beta version of SMF has a buddy list mod built in.

-Dan The Man
Title: Re: Buddy List
Post by: NoRad on July 13, 2005, 09:52:01 PM
It's a step in the right direction, but that's not the buddylist people want.
Title: Re: Buddy List
Post by: d3v on July 13, 2005, 11:14:15 PM
Here's an idea I had. I was going to make a seperate post, but this is probably a better place

. Buddy list in a seperate pop-up window. easily done, _new tag and heigh/width parameters
. Allow instant message between the registered/guests users who are on the forum at the time
. Basic color codes for user groups (so you can differentiate between visitors and members) done already on the forums, just a matter of porting it to a mod
. Allow to to add buddies to the list which would be stored under your account profile if I'm not mistaken this mod already does this
. Clicking on the user's name in the profile would take you to his profile should be really easy once again
. CHAT room feature to allow a conversation between multiple users at once.
. Support for URL links simple parser

Stuff like Font change/Colors/BBC codes/HTML/Themes/File sending feature/History/Alerts/Direct Connection and etc are unnecessary since there are enough IM clients that support this feature and it would take away from the speed and security. Yes some extra features could be implemented in the future, but none of them are essential.

A very basic interface with text window and buddy list seperated by vertical line is all that is required. The idea not to have a full blown messanging system but to simply allow quick LIVE interaction between users. Something to ask a quick question, maybe make a private comment etc. A very simple build in instant message client into the forum system would be much more useful then a Shoutbox, yet will give an undeniably powerful feature to the community.

Yes there is interaction via posts/e-mail and PM's, but having a LIVE feature for your forum would put the nail in the coffin as far as having a complete community. I have not seen this feature on vBulletin/phpBB/Invision or any other popular Forum system.

Please post your comments/suggestions/flame....maybe something like that long exists and I just wasted some time out of my life...regardless...thanks for reading/

Title: Re: Buddy List
Post by: NoRad on July 14, 2005, 02:56:58 AM
That should be a simple hack on the already fabulous flashchat, which integrates nicely. It has private messaging built in. Just evoke that feature outside of the main chat window...
Title: Re: Buddy List
Post by: punkerman on July 19, 2005, 10:18:46 AM
Quote from: OIDanTheManIO on July 13, 2005, 07:39:41 PM
Quote from: vln004 on July 11, 2005, 02:05:19 AM
does this mod work with the new beta? if it doesn't, hows about a little updating?


with some new features, like listing all the friend's on the person's profile.

The beta version of SMF has a buddy list mod built in.

-Dan The Man

Where Dan??
Title: Re: Buddy List
Post by: NoRad on July 19, 2005, 10:46:43 AM
/me giggles

Call it a drop down box mod for your pm. That's about the extent of what it is. If I could remember everybody's name it would be quicker to wilcard search, but oh well. I thought for some reason the new version did the auto-complete like GMail?
Title: Re: Buddy List
Post by: vln004 on July 20, 2005, 04:38:15 PM
why don't i see the buddy list feature in the new version? i can't seem to find the add to buddy list link anywhere.  (i'm looking on this board.)
Title: Re: Buddy List
Post by: d3v on July 20, 2005, 04:44:28 PM
Are you reffering to 1.0.5 or 1.1?
Title: Re: Buddy List
Post by: vln004 on July 20, 2005, 06:50:01 PM
Quote from: d3v on July 20, 2005, 04:44:28 PM
Are you reffering to 1.0.5 or 1.1?

the 1.1.3 beta
Title: Re: Buddy List
Post by: Grudge on July 22, 2005, 08:28:00 AM
It was disabled on this site. I've enabled it again though as I like it :D
Title: Re: Buddy List
Post by: sarah on July 26, 2005, 10:51:22 AM
Quote from: vln004 on July 11, 2005, 02:05:19 AM
does this mod work with the new beta? if it doesn't, hows about a little updating?

I'm curious about this, too.  Specifically, does anyone know of a way to transfer users' buddylists (after upgrading from 1.0.5 to 1.1.3)  that were created via this mod so that they will be usable in the now-standard-buddylist of 1.1.3?

Sarah
Title: Re: Buddy List
Post by: JustJa on September 04, 2005, 04:20:57 PM
Hi. I saw that there was correction to some errors in this topic, but my error is on another line, the things that come in the code are quite different...
Could you tell me how to fix this one?

Undefined index: buddy_list
/home/XXXXX/Sources/BoardIndex.php
Line: 247

And I have in line 247:
$user_info['buddy_list'] = explode(',', $user_info['buddy_list']);

Title: Re: Buddy List
Post by: huijaa on September 27, 2005, 05:45:49 PM
I'll wait for newer version, supports 1.1 RC1 (or earlier).

This topic is now subscribed (notification) for me...



Title: Re: Buddy List
Post by: huijaa on October 07, 2005, 03:20:44 PM
No anyone about buddylist supporting 1.1 (beta 3 - RC1) ??
Title: Re: Buddy List
Post by: Kindred on October 07, 2005, 03:21:21 PM
ummm... buddy list is built into 1.1!
Title: Re: Buddy List
Post by: huijaa on October 07, 2005, 03:23:40 PM
ow...i don't see... where?...

I saw 'enabling buddylist' on adminpanel...thanks...
Title: Re: Buddy List
Post by: steve in houston on October 08, 2005, 02:52:30 PM
Great Mod.

Easy to implement.
Thanks.
Title: Re: Buddy List
Post by: steve in houston on October 08, 2005, 08:01:27 PM
Oops.  I just checked the error log.
I need help with the following:
Quote8: Undefined index: num_buddies
File: /home/xxxxxx/public_html/forum/Themes/default/BoardIndex.template.php (eval?)
Line: 350

and

Quote8: Undefined index: buddy_list
File: /home/xxxxxx/public_html/forum/Sources/BoardIndex.php
Line: 247
Title: Re: Buddy List
Post by: shishira on October 26, 2005, 09:06:25 AM
2 features requests

one to view other users buddies (if enabled)
two a notification when someone else ads you as a buddy and also the ability to add them as your buddies


great mod/feature


cheers to all my buddies
Title: Re: Buddy List
Post by: NoRad on January 01, 2006, 12:17:44 PM
I enabled the feature 1.1 RC1 but I'm still not seeing the buddylist or how to add people?
Title: Re: Buddy List
Post by: Grudge on January 01, 2006, 12:23:37 PM
You add people either from their profile, or add them from the "Buddy List" section of your profile. In SMF 1.1 it really just bolds them to the board index when they're online
Title: Re: Buddy List
Post by: Webrunner on February 22, 2006, 10:29:49 AM
Could we use some code from this mod to add the buddies to a PM ?
Title: Re: Buddy List
Post by: Garry on April 23, 2006, 06:06:25 PM
I dont seenm to be able to find any installation instructions with the buddy list

how and where do I install it

how do I call it up

im using version1.1 rc2
Title: Re: Buddy List
Post by: winrules on April 23, 2006, 06:27:47 PM
Quote from: Garry on April 23, 2006, 06:06:25 PM
I dont seenm to be able to find any installation instructions with the buddy list

how and where do I install it

how do I call it up

im using version1.1 rc2
This mod doesn't work with 1.1 RC2, there is a buddy list included by default.
Title: Re: Buddy List
Post by: Helvetii on September 28, 2006, 12:16:20 AM
How make list of all my friends at my profile ???
Title: Re: Buddy List
Post by: John S on May 01, 2007, 12:34:26 AM
hi, i've had a look into the file "buddy_v1.21.mod" and realise that there is meant to be:

<edit file>
$languagedir/Modifications.english.php
</edit file>

<search for>
?>
</search for>

<add before>
$txt['buddylist_buddies'] = 'Buddies';
$txt['buddylist_buddy'] = 'Buddy';
$txt['buddylist_select'] = 'Select Buddy';
$txt['buddyList_title'] = 'Buddy List';
$txt['buddyList_add_name'] = 'Add one Username on each line.';
$txt['buddyList_add'] = 'Add this member to my Buddy List';
$txt['buddyList_remove'] = 'Remove this member from my Buddy List';
</add before>


in the "Modifications.english.php" file, but when i look in this file i can't find this code anywhere in it..

Where else could this code be installed?
Title: Re: Buddy List
Post by: John S on May 07, 2007, 07:04:06 AM
Pls, HEELLLLPPPP!
i want to uninstall this mod but can't

i can't find it anywhere in the packages section!!!

so i tried to install it again, but i get all errors... what can i do, i wanna uninstall and then reinstall.. because it didnt install properly in all places..
Title: Re: Buddy List
Post by: KnightRobby on June 20, 2007, 11:53:47 PM
Hi, I am getting this error:

Installing this package will perform the following actions:
   Type    Action    Description
1.    Execute Code    BuddyPdb.php    
2.    Execute Modification    ./Sources/BoardIndex.php    Test failed
3.    Execute Modification    ./Sources/InstantMessage.php    File not found
4.    Execute Modification    ./Sources/Load.php    Test successful
5.    Execute Modification    ./Sources/Profile.php    Test failed
6.    Execute Modification    ./Themes/default/BoardIndex.template.php    Test failed
7.    Execute Modification    ./Themes/default/InstantMessage.template.php    File not found
8.    Execute Modification    ./Themes/default/languages/Modifications.english.php    Test successful
9.    Execute Modification    ./Themes/default/Profile.template.php    Test failed

So does my version of Simple Machines not support this Buddy List?  Because this buddy list is very important to what I have planned for my site and I would like to install it.  Let me know if you can help me install this baby because it would be awesome! :)  What do I need to do to get it to work?

Thanks for creating it btw,
Robby :)
Title: Re: Buddy List
Post by: KnightRobby on June 23, 2007, 10:33:13 PM
I have waited 24 hours (as stated for bumping or replying twice) to get a response.  I have noticed that the file Instantmessage.php doesn't even exist in my folders...Why is this?  Does this mod require another mod?  Or do I have the wrong version of SMF?  I have version 1.1 RC3.

NOTE: I am also running my site on Joomla - so there is a bridge between SMF and Joomla...does that help?  Hopefully! :)

Please let me know what to do when you have time.  Thanks!
Robby :)
Title: Re: Buddy List
Post by: universe on June 27, 2007, 04:16:05 PM
Hi friends
Is possible expect soon buddy list mod for version 1.1.2 smf
because now mods doesn't work for that version
I think I am not only one who would like it
and if possible use some more mods for make friends (buddies)?
:)