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 (another re-release w/fixes)
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 18

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 26 April 2001 :  05:25:03  Show Profile
quote:
On one computer I have IE 5.0 which allows my outbox to save messages, my other computer has IE 5.5 which doesn't save messages in the outbox. I have deleted my cookies with no change, any ideas?


Not really, it's some sort of cookie problem on one of your computers.
Go to Top of Page

tomasalsbro
Average Member

Sweden
818 Posts

Posted - 26 April 2001 :  12:25:48  Show Profile  Visit tomasalsbro's Homepage
quote:

Capt Dunzell,

On line #156 of both pop_members.asp and pm_pop_members.asp add this:

strSql = strSql & " ORDER BY " & strMemberTablePrefix & "MEMBERS.M_NAME ASC"




Hi There!!! What's this??? Pop_members.asp???
Thats a file i don't possess! I have the mod - and found the pm_pop_members.asp.
Richard - what have gone wrong???
Cheeers / Tomas

!-Keep distance in trafik-!
www.whiplash.pp.se
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 26 April 2001 :  15:22:06  Show Profile
That should have been pm_members.asp and pm_pop_members.asp
Go to Top of Page

werner
Starting Member

1 Posts

Posted - 26 April 2001 :  16:04:35  Show Profile
quote:

Matthew,
dfdf
the privatemess.asp file starts with a starting <tr> and ends with a closing </tr> so you will need to insert it right after a closing </tr> in default.asp. You didn't mention whether you wanted it above or below the table header on default.asp where it says Forum, Topics, Post, etc...

Try inserting it on line #139 of default.asp


133: if (mlev = 4 or mlev = 3) or (lcase(strNoCookies) = "1") then %>
134: <td align=center bgcolor="<% =strHeadCellColor %>"><% PostingOptions() %></td>
135: <%
136: end if
137: %>
138: </tr>
139: <!--#include file="privatemess.asp"-->
140: <%
141: if rs.EOF or rs.BOF then


fffff

Go to Top of Page

aston
New Member

Andorra
51 Posts

Posted - 28 April 2001 :  23:50:28  Show Profile
when i have a new Private Message,can i popup a window,and tell me^^^^

______________________

Fly me to the Moon
Go to Top of Page

swatijain
Starting Member

48 Posts

Posted - 29 April 2001 :  20:29:25  Show Profile
I have a question-- if I delete a user are all the private messages from/to that user deleted too? I would imagine it would cause some errors if the private messages are not deleted.

Oh and anyone working on a feature that might delete all private messages "X" days old?

Go to Top of Page

stuF
Average Member

United Kingdom
561 Posts

Posted - 01 May 2001 :  17:43:09  Show Profile  Visit stuF's Homepage
<%
else
blnHiddenForums = true
end if ' ChkDisplayForum()
rsForum.MoveNext
loop
end if
rs.MoveNext
loop
end if
if strShowStatistics = "1" then
WriteStatistics
end if
%>

cold someone tell me why that code is generating this error when i insert it into default.asp?


Microsoft VBScript compilation error '800a040e'

'loop' without 'do'

/cgi-bin/forum/default.asp, line 602

loop
^

any help owlud be greatly appreciated....cheers
stu

Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 01 May 2001 :  22:43:11  Show Profile
It's probably being affected someone else in the code.
Go to Top of Page

ki5ck
New Member

69 Posts

Posted - 04 May 2001 :  18:55:38  Show Profile  Visit ki5ck's Homepage
I've found that if you're not logged in, and send a private message (where you type in your name and password with the message), it will not work. It always says there is a problem with the username or password, and I know I put them in right. Minor problem, I can always log in to send a message, but I wonder if anyone else has noticed this?

Paul Wood
SLT Webmaster
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 04 May 2001 :  19:30:47  Show Profile
I doubt it, because with the default installation, there isn't an easy way to get to the screen to send a private message when you aren't logged in. If you try to goto pm_view.asp you get redirected back to default.asp if you aren't logged in. You must have a link to send a user a private message somewhere else in your forum (like on topic.asp, etc...).
Go to Top of Page

swatijain
Starting Member

48 Posts

Posted - 04 May 2001 :  19:44:27  Show Profile
quote:

I've found that if you're not logged in, and send a private message (where you type in your name and password with the message), it will not work. It always says there is a problem with the username or password, and I know I put them in right. Minor problem, I can always log in to send a message, but I wonder if anyone else has noticed this?

Paul Wood
SLT Webmaster




Yes, I have found the same problem...I am on the verge of looking for a solution...

Go to Top of Page

ki5ck
New Member

69 Posts

Posted - 04 May 2001 :  19:46:18  Show Profile  Visit ki5ck's Homepage
quote:

I doubt it, because with the default installation, there isn't an easy way to get to the screen to send a private message when you aren't logged in. If you try to goto pm_view.asp you get redirected back to default.asp if you aren't logged in. You must have a link to send a user a private message somewhere else in your forum (like on topic.asp, etc...).



Yep, that's it. I put a link with the other icons on topic.asp.

Paul Wood
SLT Webmaster
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 04 May 2001 :  20:43:32  Show Profile
I haven't look at the code in awhile but it's probably just pulling the username/password from the user's cookie instead of the form. I'll take a look at it and see.
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 04 May 2001 :  20:50:52  Show Profile
On line #56 of privatesend_info.asp try changing

strDBNTUserName to Request.Form("UserName")

also on line #193 of privatesend.asp

change: Request.Form("UserName ") to Request.Form("UserName")
Go to Top of Page

ki5ck
New Member

69 Posts

Posted - 05 May 2001 :  11:44:26  Show Profile  Visit ki5ck's Homepage
That did the trick! Thanks!

Paul Wood
SLT Webmaster
Go to Top of Page
Page: of 18 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.23 seconds. Powered By: Snitz Forums 2000 Version 3.4.07