Author |
Topic  |
@tomic
Senior Member
   
USA
1790 Posts |
Posted - 02 October 2002 : 17:53:15
|
Thanks. So is every last think working on this now?
@tomic |
SportsBettingAcumen.com |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 02 October 2002 : 18:13:08
|
I think so . That was the list I found using my forum (some thanks to my users as well) |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 08:16:16
|
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 ? |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 03 October 2002 : 08:55:17
|
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 |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 09:11:09
|
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 |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 03 October 2002 : 09:32:46
|
gareth, 1 & 2 are fixed in @tomic's latest file - I just downloaded the zip and replaced the privateread.asp |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 09:53:13
|
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 ! |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 10:03:27
|
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
|
 |
|
@tomic
Senior Member
   
USA
1790 Posts |
Posted - 03 October 2002 : 11:54:33
|
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 |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 12:13:18
|
nope thats not the answer ! The MSN icon is still there ! |
 |
|
@tomic
Senior Member
   
USA
1790 Posts |
Posted - 03 October 2002 : 12:20:21
|
Hmmm, it's gone from mine. Try replacing your file with the one in the zip. I just updated it.
@tomic |
SportsBettingAcumen.com |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 12:25:32
|
I replaced my file with yours but its still there :-( |
 |
|
@tomic
Senior Member
   
USA
1790 Posts |
Posted - 03 October 2002 : 12:29:57
|
Perhaps it's chached on the server because that should definately fix it.
@tomic |
SportsBettingAcumen.com |
 |
|
gareth_moore_2000
Junior Member
 
United Kingdom
262 Posts |
Posted - 03 October 2002 : 12:31:36
|
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 ! |
 |
|
@tomic
Senior Member
   
USA
1790 Posts |
Posted - 03 October 2002 : 12:36:11
|
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 |
 |
|
Topic  |
|