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: Private Messages (re-released w/fixes)
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 14

mot
New Member

United Kingdom
70 Posts

Posted - 14 January 2001 :  17:36:23  Show Profile  Visit mot's Homepage
quote:

ok im going to quit working on my PM cause i hate tellin people they have bugs. i know i hate hearing it but this is the last one for today, but this is nothing major at all...

in pm_pop_members.asp where it displays each letter for them to choose what members to show, one of them has two commas. i think it is letter C or D but im not for sure. i cant tell you a line number cause im edited my code so much that it wouldnt be close

Brad



Can you or some one pls post a fixed version of the files.


Go to Top of Page

redbrad0
Advanced Member

USA
3725 Posts

Posted - 14 January 2001 :  17:55:37  Show Profile  Visit redbrad0's Homepage  Send redbrad0 an AOL message
well slemieux and richard are the ones with the original files and im sure one of them with update and post a new zipe file since they are both nice and always willing to help

slemieux,
no problem i know how it is, and this is why we are all here is to help our other fellow programers out to make sure this program, along with others is the best that it can be.

Brad
Go to Top of Page

redbrad0
Advanced Member

USA
3725 Posts

Posted - 14 January 2001 :  18:04:10  Show Profile  Visit redbrad0's Homepage  Send redbrad0 an AOL message
slemieux and richard,

as you can probley tell i am installing this mod onto my site. i am trying to install it where it will play a new sound when a new email or i mean private message arrives. i will be able to do this, but this might be another function to add to this. allow the user to choose if they would like a sound played or not. one way, which i am planning on doing is add another column onto the PM table for SoundPlayed. if they sound has been played then it will be set to 1, and if it has not been played it will be 0. this way you dont have to use cookies to know if a message has been played or not. tommorow when i get time to do this, i will show you the code because it should be very easy to do.

Brad
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 14 January 2001 :  20:00:48  Show Profile
Brad,

You've got the original files, at least everything I've worked on. Feel free to modify them and post them if you want. Since this is an open-source project, and any mod that is made for the forum is also open-source, you can modify anything you want.
Go to Top of Page

seven
Senior Member

USA
1037 Posts

Posted - 14 January 2001 :  23:59:21  Show Profile  Visit seven's Homepage
When choosing the member to mail the PM to, if you choose multiple recipients it doesn't add a space or anything and it errors out. You should be able to pick multiple usernames... now how would I fix it? hmmm...
Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 15 January 2001 :  17:34:35  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
What about the black look in Netscape!? It looks awful!
Go to Top of Page

Bassman
Junior Member

Netherlands
256 Posts

Posted - 15 January 2001 :  17:47:51  Show Profile  Visit Bassman's Homepage
oeps !!

Edited by - Bassman on 16 January 2001 02:56:03
Go to Top of Page

DewyattStanfield
Starting Member

49 Posts

Posted - 16 January 2001 :  00:54:03  Show Profile
quote:

What about the black look in Netscape!? It looks awful!



Here is a link to a topic where this was discussed, I posted coding changes to make the CColor work the way it does in IE

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=3766&FORUM_ID=34&CAT_ID=10&Topic_Title=Major+Netscape+Bug+in+PM%2DMessages&Forum_Title=Help%3A++General

Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 16 January 2001 :  08:23:09  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
Hi!

OK, maybe Im just dumb or somethin'... but could you do some sort of message in this topic about WHAT I HAVE TO DO TO MAKE THE OUTBOX WORKIN'! I've done the "strCookieURL &"-change. But It still doesn't work. In this topic, you reffer to lots of different files etc. etc. I can't understand what of this is to make the outbox worikin' etc. etc. Im swedish, so please use easy language!

So, the question is: HOW TO MAKE THE OUTBOX WORKING!?

And, the answer is:

anyone?

cheers
/CHEETAH
Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 16 January 2001 :  10:32:08  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
Please someone!? :)

I really need some help!
Go to Top of Page

DewyattStanfield
Starting Member

49 Posts

Posted - 18 January 2001 :  11:29:06  Show Profile
quote:

Hi!

OK, maybe Im just dumb or somethin'... but could you do some sort of message in this topic about WHAT I HAVE TO DO TO MAKE THE OUTBOX WORKIN'! I've done the "strCookieURL &"-change. But It still doesn't work. In this topic, you reffer to lots of different files etc. etc. I can't understand what of this is to make the outbox worikin' etc. etc. Im swedish, so please use easy language!

So, the question is: HOW TO MAKE THE OUTBOX WORKING!?

And, the answer is:

anyone?

cheers
/CHEETAH



Chack your database, I read in another topic some information regarding how the inbox and outbox works. Chack your forum_pm table for a field called m_outbox Mine was saving all the messages that were supposed to be in the outbox as -1 instead of 1. If this is what you see the way I fixed it was on line 228 of pm_view.asp there is a sql statement like this:
strSql = strSql & " AND " & strTablePrefix & "PM.M_OUTBOX = 1"
I changed it to
strSql = strSql & " AND " & strTablePrefix & "PM.M_OUTBOX = -1"
and it all works now.
Hope this helps you out some.

Dewyatt Stanfield

Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 18 January 2001 :  12:00:03  Show Profile
StockholmStudent,

the answer to your problem is in this thread, you just need to read the whole thread to find it.

here it is:

quote:
frankie, try this:

download this file: http://www1.domaindlx.com/dssdbs/files/pmfix.zip

extract the 3 files and upload them to your forum directory.

run the droppmtable.asp file first. This will delete the FORUM_PM table so you will lose any Private Messages that you have right now.

Next run mod_dbsetup.asp to readd the FORUM_PM table.

That should fix your problem.
Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 18 January 2001 :  12:52:43  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
Thanks! I did what both of you said, but it still DOESN'T WORK!!!!!!!!!!

Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 18 January 2001 :  13:16:23  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
quote:

Thanks! I did what both of you said, but it still DOESN'T WORK!!!!!!!!!!





now it works! I simply had to logout! :)

Go to Top of Page

StockholmStudent
Junior Member

Sweden
329 Posts

Posted - 18 January 2001 :  15:28:22  Show Profile  Visit StockholmStudent's Homepage  Send StockholmStudent an ICQ Message
Im getting this error when Im trying to reach my forum, in which the pm is installed:

privatemess.asp, line 50

I never got it before.... I recently tried to install the add-smilie mod... why have this happened!?

Go to Top of Page
Page: of 14 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.19 seconds. Powered By: Snitz Forums 2000 Version 3.4.07