I installed Private Messages mod 3.5.0.5 after security ( http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66176 )fixes to master forum that is located in my localhost. Now I am checking it if private messages mod works properly at here I will install to my forum ( http://www.timuroglu.com/forum )
I found some mistakes and I corected them but I dont know these are my install mistakes or mistakes of mod. I have win xp and ie7.
1: When I want to send private message to me from my account (from me to me ), error page of internet explorer opened about error Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
/forum/inc_mail.asp, line 97
I think that a new page of forum had to open warning message about it and this message may be "you can not send message to you"
2: In outbox , I checked some message for delete and clicked delete button.Opened a new page and writing at this page "Return to your Inbox." I didn't understand why I will go to inbox because I come here from outbox and I had to go outbox.
I found line 73:
"<P><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b><a href=""pm_view.asp"">Return to your Inbox.</a></b></font></p>" & vbNewLine & _
I changed like this:
"<P><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b><a href=""pm_view.asp?view=outbox"">Return to your Outbox..</a></b></font></p>" & vbNewLine & _
Now it is going back to outbox.
3: In inbox and outbox I didn't check a delete box but I clicked delete button.error page of internet explorer opened about error of "M_ID"
I changed line 50 and 82 :
if strDeleteList = "" then
Like this:
if strDeleteList = " " then
( I put a space between " ") Now, forum error page is opening
And I changed line 56 for going back to outbox
"<P><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b><a href=""pm_view.asp?view=outbox"">Return to your Outbox..</a></b></font></p>" & vbNewLine & _