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)
 Private Messages 3.4.03
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 21

@tomic
Senior Member

USA
1790 Posts

Posted - 02 October 2002 :  17:53:15  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Thanks. So is every last think working on this now?

@tomic

SportsBettingAcumen.com
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 02 October 2002 :  18:13:08  Show Profile
I think so . That was the list I found using my forum (some thanks to my users as well)
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  08:16:16  Show Profile
No !!!!!!! -its not quite there yet !

The limit for the PM's is having no effect.

If I set the limit to 0 PM's- when I look in my inbox I get the red error telling me to empty my in and outboxes, and it wont let me send anymore.
BUT: If I set the limit to any other number (even as low as just 1 PM)- I am still able to send and recieve unlimited amount of PM's and the limit has no effect.
I have tried this through Admin, Moderators, and members accounts and get the same error everywhere.
This is the latest version of the PM MOD installed on a fresh copy of snitz 3.4.03 ?

Has anyone else got this error ?
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 03 October 2002 :  08:55:17  Show Profile
Yep, I found that this morning but it doesn't worry me as much as the other bits ... would be nice though - just a matter of when @tomic has time
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  09:11:09  Show Profile
OK, the following glitches on privateread.asp:

1- AIM and ICQ functions dont work ! Click on the logos and an error message appears (as it did with Active Usres).
2-MSN, when you hover your cursor over it should say "View member's MSN Address"
But instead was not displaying the member name and so was simply displaying "View 's MSN Address.
3- ICQ logos wrong size, cant be changed through inc_icon_files.asp because it displays the ICQ logos in the old 3.3 format.



The following code needs to replace the old code (where the YIM, AIM, ICQ and MSN) functions are, this corrects all of the above !
It also puts the message icons in the same order as the appear in topic.asp




if (strAIM = "1") then
if strMAIM <> " " then
Response.Write "  <a href=""JavaScript:openWindow('pop_messengers.asp?mode=AIM&ID=" & strMID & "')"">" & getCurrentIcon(strIconAIM,"Send " & strMName & " an AOL message","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
if strICQ = "1" then
if strMICQ <> " " then
Response.Write "  <a href=""JavaScript:openWindow('pop_messengers.asp?mode=ICQ&ID=" & strMID & "')"">" & getCurrentIcon(strIconICQ,"Send " & strMName & " an ICQ Message","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
if (strMSN = "1") then
if strMSN <> "" then
Response.Write "  <a href=""JavaScript:openWindow('pop_messengers.asp?mode=MSN&ID=" & strMID & "')"">" & getCurrentIcon(strIconMSNM,"Click to see " & strMName & "'s MSN Messenger address","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if
if strYAHOO = "1" then
if strMYahoo <> " " then
Response.Write "  <a href=""JavaScript:openWindow('http://edit.yahoo.com/config/send_webmesg?.target=" & strMYahoo & "&.src=pg')"">" & getCurrentIcon(strIconYahoo,"Send a Yahoo! Message","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
end if
end if


@tomic- if you want me to send you the actual file with the changes- send me your e-mail address !

Edited by - gareth_moore_2000 on 03 October 2002 09:13:04
Go to Top of Page

laser
Advanced Member

Australia
3859 Posts

Posted - 03 October 2002 :  09:32:46  Show Profile
gareth, 1 & 2 are fixed in @tomic's latest file - I just downloaded the zip and replaced the privateread.asp
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  09:53:13  Show Profile
quote:
Originally posted by laser

gareth, 1 & 2 are fixed in @tomic's latest file - I just downloaded the zip and replaced the privateread.asp



Thats strange because that exactly what I just did and the errors were still there !

oh well as long as its all sorted for everyone, whichever way !
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  10:03:27  Show Profile
Just founf another bug with the MSN icon in privateread.asp

WILL THIS EVER END ?!?!?!?

OK, the MSN icon ALWAYS appears in privateread.asp even if the member has not specified an MSN address.
If an MSN address is specified it works fine.
But if a MSN address has not been specified, the icon still shows and you get this error when clicked on:

Microsoft VBScript runtime error '800a0009'

Subscript out of range: '[number: 1]'

/forum/pop_messengers.asp, line 142

Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 03 October 2002 :  11:54:33  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Easy Tex, the fix is pretty simple.

PRIVATEREAD.ASP

Find:
	if (strMSN = "1") then
		if strMSN <> "" then
			Response.Write	"    <a href=""JavaScript:openWindow('pop_messengers.asp?mode=MSN&ID=" & strMID & "')"">" & getCurrentIcon(strIconMSNM,"Click to see " & ChkString(Member_Name,"display") & "'s MSN Messenger address","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
		end if
	end if


Replace with:
if (strMSN = "1") then
		if (strMMSN <> " ") then
			Response.Write	"    <a href=""JavaScript:openWindow('pop_messengers.asp?mode=MSN&ID=" & strMID & "')"">" & getCurrentIcon(strIconMSNM,"Click to see " & ChkString(Member_Name,"display") & "'s MSN Messenger address","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine
		end if
	end if


@tomic

SportsBettingAcumen.com

Edited by - @tomic on 03 October 2002 11:55:27
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  12:13:18  Show Profile
nope thats not the answer !
The MSN icon is still there !
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 03 October 2002 :  12:20:21  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Hmmm, it's gone from mine. Try replacing your file with the one in the zip. I just updated it.

@tomic

SportsBettingAcumen.com
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  12:25:32  Show Profile
I replaced my file with yours but its still there :-(
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 03 October 2002 :  12:29:57  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
Perhaps it's chached on the server because that should definately fix it.

@tomic

SportsBettingAcumen.com
Go to Top of Page

gareth_moore_2000
Junior Member

United Kingdom
262 Posts

Posted - 03 October 2002 :  12:31:36  Show Profile
no because- I made a few design changes to my page- and when I uploaded your new one- it brought back the original design- but still with the MSN fault !
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 03 October 2002 :  12:36:11  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
do you have a link where I can look at this because I can't replicate it on my forum with the fixed code. people with MSN filled in show up, if it's blank it does not. We are taling about privateread.asp right?

@tomic

SportsBettingAcumen.com

Edited by - @tomic on 03 October 2002 12:36:38
Go to Top of Page
Page: of 21 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.21 seconds. Powered By: Snitz Forums 2000 Version 3.4.07