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.5
 New Topic  Reply to Topic
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 11

masterao
Senior Member

Sweden
1678 Posts

Posted - 02 February 2006 :  16:37:57  Show Profile  Visit masterao's Homepage  Reply with Quote
I have posted a partially tested bugfix in another topic. See my post here.<

Jan
===========
FR Portal Forums | Active Users 4.0.20 Mod
Go to Top of Page

furk
Starting Member

11 Posts

Posted - 10 October 2006 :  07:31:34  Show Profile  Visit furk's Homepage  Reply with Quote

Tha't all forks!

<center></center>
Go to Top of Page

furk
Starting Member

11 Posts

Posted - 10 October 2006 :  09:09:14  Show Profile  Visit furk's Homepage  Reply with Quote
I've done those tests sending a PM to myself, with further testing using different users i've noticed that in case of normal user i get the same error in both cases, while in case of admin i can delete inbox (that's ok) and this time the correspondind outbox from where the pm was coming by isn't touched and there's no way of deleting that outbox.

Weird.<

Tha't all forks!

<center></center>

Edited by - furk on 10 October 2006 09:09:31
Go to Top of Page

furk
Starting Member

11 Posts

Posted - 11 October 2006 :  08:45:39  Show Profile  Visit furk's Homepage  Reply with Quote
never mind...issue solve...there was a problem with my italian translation. The only bug that i still experience is: if i delete a pm from my inbox sent to me from myself outbox is deleted too.<

Tha't all forks!

<center></center>
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 11 October 2006 :  08:58:08  Show Profile  Reply with Quote
That's the way it is intended to work; deleting a message from your inbox deletes the record from the database.

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

furk
Starting Member

11 Posts

Posted - 11 October 2006 :  09:00:48  Show Profile  Visit furk's Homepage  Reply with Quote
Even if the inbox&Outbox aren't from the same user?<

Tha't all forks!

<center></center>
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 11 October 2006 :  09:03:07  Show Profile  Reply with Quote
Yes, there's only one record created in the database.

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

furk
Starting Member

11 Posts

Posted - 11 October 2006 :  09:06:19  Show Profile  Visit furk's Homepage  Reply with Quote
ooooooook. So that's no a bug Thanks a lot <

Tha't all forks!

<center></center>
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 11 October 2006 :  09:08:14  Show Profile  Reply with Quote
You're welcome.

<

Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

mattdamick
Starting Member

7 Posts

Posted - 07 March 2007 :  21:41:35  Show Profile  Reply with Quote
Not sure if it was mentioned here, but if it was i did not see it and it can't hurt to mention it again. The PM Mod instructions have a few typos of the code that includes things like PMRECEIVE. I was driving me nuts because it caused a lot of errors for me mostly ones that started " No value given for one or more required parameters"

Hope that helps someone<
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 08 March 2007 :  03:59:32  Show Profile  Visit HuwR's Homepage  Reply with Quote
quote:
Originally posted by mattdamick

Not sure if it was mentioned here, but if it was i did not see it and it can't hurt to mention it again. The PM Mod instructions have a few typos of the code that includes things like PMRECEIVE. I was driving me nuts because it caused a lot of errors for me mostly ones that started " No value given for one or more required parameters"

Hope that helps someone


would you care to elaborate ?<
Go to Top of Page

mattdamick
Starting Member

7 Posts

Posted - 08 March 2007 :  08:11:29  Show Profile  Reply with Quote
I may need to appologize. Now that i look at the code it must have been me that made the typos. I had been staring at code for 5 hours and it all kind of jumbles together as i am sure most of you can understand.

So until i can be sure that there is actually and error in the mod. I withdraw my comments about the typo

Sorry for any problems this caused.
<
Go to Top of Page

juliana
Starting Member

United States
13 Posts

Posted - 14 January 2008 :  03:50:10  Show Profile  Visit juliana's Homepage  Reply with Quote
i installed this mod a few days ago. it works great, but... it does not display the "message" field on reply or forward.

apparently it's a known issue with memo type fields in SQL Server 2005 (not sure about other versions) and the fix is easy. i read it somewhere but can't find the article at the moment.

what i did is i modified the privatesend.asp file as follows. you guys might want to consider implementing these simple changes into the next versions.

1. memo field(s) must be listed the LAST one(s) in the SELECT statement.

switch lines 269 and 270

strSql = strSql & ", " & strTablePrefix & "PM.M_MESSAGE "
strSql = strSql & ", " & strTablePrefix & "PM.M_SUBJECT "

result:

strSql = strSql & ", " & strTablePrefix & "PM.M_SUBJECT "
strSql = strSql & ", " & strTablePrefix & "PM.M_MESSAGE "

2. as soon as the recordset is retrieved, memo fields should be assigned to simple variables exactly as shown below (i know it looks weird, but it works) and the use of these variables is encouraged.

right below line 275 insert:

strMessage = "" & rs("M_MESSAGE")

in line 289 replace formatStr(rs("M_MESSAGE")) with formatStr(strMessage)

result:

Response.Write "><font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Subject: " & chkString(rs("M_SUBJECT"),"display") & "</b><hr size=""" & strFooterFontSize & """>" & formatStr(strMessage) & "</font></td>" & vbNewLine & _


hth :)<

"It's not the size of the lift, it's the articulation!" - Lil ED
Off Road North America - JeepingSingles.net

Edited by - juliana on 14 January 2008 03:51:47
Go to Top of Page
Page: of 11 Previous Topic Topic Next Topic  
Previous Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.12 seconds. Powered By: Snitz Forums 2000 Version 3.4.07