Author |
Topic |
masterao
Senior Member
Sweden
1678 Posts |
|
furk
Starting Member
11 Posts |
Posted - 10 October 2006 : 07:31:34
|
|
Tha't all forks!
<center></center> |
|
|
furk
Starting Member
11 Posts |
Posted - 10 October 2006 : 09:09:14
|
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 |
|
|
furk
Starting Member
11 Posts |
Posted - 11 October 2006 : 08:45:39
|
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> |
|
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 11 October 2006 : 08:58:08
|
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.” |
|
|
furk
Starting Member
11 Posts |
Posted - 11 October 2006 : 09:00:48
|
Even if the inbox&Outbox aren't from the same user?< |
Tha't all forks!
<center></center> |
|
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 11 October 2006 : 09:03:07
|
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.” |
|
|
furk
Starting Member
11 Posts |
Posted - 11 October 2006 : 09:06:19
|
ooooooook. So that's no a bug Thanks a lot < |
Tha't all forks!
<center></center> |
|
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 11 October 2006 : 09:08:14
|
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.” |
|
|
mattdamick
Starting Member
7 Posts |
Posted - 07 March 2007 : 21:41:35
|
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< |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 08 March 2007 : 03:59:32
|
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 ?< |
|
|
mattdamick
Starting Member
7 Posts |
Posted - 08 March 2007 : 08:11:29
|
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. < |
|
|
juliana
Starting Member
United States
13 Posts |
Posted - 14 January 2008 : 03:50:10
|
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 |
|
|
Topic |
|