Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: Buddy List
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 4

rkattan
Starting Member

USA
12 Posts

Posted - 27 April 2001 :  07:45:40  Show Profile
small bug, in the buddy.asp, if the user is not logged in, it says "You need to login to create or view bookmarks." this need to be changed to something else like "You need to login to manage your buddies."

---------------------
Rami Kattan
http://www.kattanweb.com/forums
Go to Top of Page

faiz
Starting Member

India
13 Posts

Posted - 27 April 2001 :  12:41:49  Show Profile  Send faiz a Yahoo! Message
quote:

Hi getting this error when I try to run mod_db... :
Creating table(s)...
CREATE TABLE FORUM_BUDDYS( BUDDY_ID COUNTER CONSTRAINT PrimaryKey PRIMARY KEY , BUDMEMBERID#int##0 NOT NULL , BUDBUDID#int##0 NOT NULL )
-2147217900 | Syntax error in field definition.

I use Access 2000.

Any Ideeas?



I know this might not be a very technical answer but I had the same problem.

In the .dbs file for the buddy replace all the semicolons with hashes or else replace the contents of the buddylist.dbs with the following

Snitz Buddy List Mod
[CREATE]
BUDDYS
BUDDY_ID
BUDMEMBERID#int##0
BUDBUDID#int##0
[END]

This worked on my System.. It should work with your's too..


Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 27 April 2001 :  13:18:14  Show Profile  Send e3stone an AOL message
quote:
small bug, in the buddy.asp, if the user is not logged in, it says "You need to login to create or view bookmarks." this need to be changed to something else like "You need to login to manage your buddies."


doh!! I can't believe I didn't see that. Sorry about that. I'll fix it and update the zip. Can you tell that I put this mod together on only a few hours sleep?

The phrase for today is: Buddy Mod: Beta ....actually, it might be considered alpha....

<-- Eric -->


http://insidewaco.com/forum

Edited by - e3stone on 27 April 2001 13:21:47
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 28 April 2001 :  08:13:28  Show Profile  Send e3stone an AOL message
I've updated the buddy mod zip with an include file that you can insert on your front page. This file will show the members any buddies of theirs who are currently online.

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

Morpheus73
Average Member

Denmark
597 Posts

Posted - 30 April 2001 :  18:04:11  Show Profile
quote:

I've updated the buddy mod zip with an include file that you can insert on your front page. This file will show the members any buddies of theirs who are currently online.

<-- Eric -->


http://insidewaco.com/forum



Would it be possible for "targeted buddy" to be send a PM or even a better an email, so that he is able to accept being a buddy?

- many users might not want to be everybuddies buddy

mph73

Morpheus73
Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 02 May 2001 :  00:09:16  Show Profile  Send e3stone an AOL message
That's a good idea. Something similar to how ICQ does it. The user can pick whether they would like anyone to add them or have the "adder" get approval before that person is added.

Hmm, that would raise other issues like: 1) Let the user decide if everyone can 'see' that they're online, or just the people on their buddy list. 2) a seperate private message box for pm's from buddies.

hmmmm, I wonder if there would be a way to have some sort of notification box pop-up when a buddy comes online. I don't know if that's feasible or not.

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

Raichelle
Junior Member

370 Posts

Posted - 02 May 2001 :  00:18:14  Show Profile
i really need this mod but i think am going to wait till its completed don't know if you adding anything else

Go to Top of Page

hejsan
Starting Member

37 Posts

Posted - 03 May 2001 :  07:47:00  Show Profile
It would also be a nice feature if you could see whom has you in their adressbook.

And then a "Remove me from their addressbook" button.

Go to Top of Page

bjlt
Senior Member

1144 Posts

Posted - 05 May 2001 :  04:56:40  Show Profile
about the who's online feature, is the code contained in the download? I don't have active member mod and I was told the relative fields are not found in the table.
and I wonder if we need to install active member mod first?


Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 05 May 2001 :  13:15:24  Show Profile  Send e3stone an AOL message
Yes, sorry, you do have to have the Active Users mod installed for this mod to work.

<-- Eric -->


http://insidewaco.com/forum
Go to Top of Page

letmein
Starting Member

4 Posts

Posted - 06 May 2001 :  12:16:44  Show Profile
where do i get the Active Members/Users Mod.

MK.

quote:

NOTE: You do have to have the Active Members/Users MOD installed for this to work

Buddy List Mod - (Modified Bookmarks Mod)
http://www.insidewaco.com/forum/downloadmods/buddylistmod.zip
Updated as of: April 27, 2001 12:25 p.m. CST

Unzip all files into main forum directory. (forum/)

Run mod_dbsetup.asp

This creates a new table in the database called Buddys (I know I spelled that wrong, but oh well :-) ) which has three fields. 1) an AutoNumber field called Buddy_ID 2) a Long Integer field called BudMemberID which is the memberID of the person who requested that the buddy be 'bookmarked' or stored, and 3) a Long Integer field called BudBudID which is the memberID of the person being 'bookmarked' or stored.

Add this link where ever you want the user to be able to select to 'bookmark' the buddy:

<a href="buddy.asp?mode=add&ID=<% =rs("MEMBER_ID") %>">Add Member To Buddy List</a>

I put mine towards the top of pop_profile.asp

Then you can just add a link to the front page that points to the buddy.asp page
<a hred="buddy.asp">My Buddy List</a>

That should do it. This is my first 'mod', so I hope all the bugs are out of it. I've tested it on my forum, which is running an Access2k database, but I haven't tested it on a SQL DB yet. Everything should work fine since I just modified the recordset definition from the bookmark mod. Hope you enjoy.

Eric

My Buddy List Demo (you have to register first) http://www.insidewaco.com/forum/

Let me know if you find anything that needs correcting. I did this earlier today after only getting about 3 hours sleep last night.

Edited by - e3stone on 24 April 2001 03:52:29

Edited by - e3stone on 27 April 2001 13:25:10

Edited by - e3stone on 05 May 2001 13:16:45

Edited by - e3stone on 05 May 2001 13:18:56



Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 06 May 2001 :  12:28:53  Show Profile  Send e3stone an AOL message
try this:
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=4342&FORUM_ID=25&CAT_ID=17

<-- Eric -->


http://insidewaco.com
Go to Top of Page

bjlt
Senior Member

1144 Posts

Posted - 06 May 2001 :  18:28:00  Show Profile
any way to reduce the load of active users by using active buddies only?
I mean active users track everyone, while I'd like to track only if buddies are online or not, will this reduce load? and if so, what should i do to change the (active user) mod?

Go to Top of Page

e3stone
Average Member

USA
885 Posts

Posted - 06 May 2001 :  19:26:09  Show Profile  Send e3stone an AOL message
Good question. To get the online buddies, all the buddy mod does is pull all the active users and then filters out only the members who are buddies.

I'm not sure how much it would reduce the load by just only tracking the online buddies.

I suppose I shouldn't have called this a "buddy mod", but just simply "Active Users Addition - Buddy Tracking"

<-- Eric -->


http://insidewaco.com
Go to Top of Page

rick7165
Senior Member

USA
1094 Posts

Posted - 06 May 2001 :  23:01:52  Show Profile  Visit rick7165's Homepage
Got it working but get this error now when I try to bring up
the buddy popup:

Microsoft JET Database Engine error '80040e14'

Syntax error (missing operator) in query expression 'BudMemberID=75 and BudBudID='.

/forums/pop_buddy.asp, line 24


Any clue?

Test Site
www.eastpasco.com
HuwR's SR4 release. Colors and Graphic scheme done by Richard Kinser.
Go to Top of Page
Page: of 4 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.18 seconds. Powered By: Snitz Forums 2000 Version 3.4.07