T O P I C R E V I E W |
GarethMoore1979 |
Posted - 01 August 2004 : 15:45:11 I have taken @tomics version 3.4.xx, Korayem block list MOD and another Admin Mod for Private messages (author unknown), put them together and made a couple of design changes. I hope the above people (and anyone else who has worked on the Private Message MOD), doesnt mind me what I have done here. Since I have done a few design changes, added the block list mod as standard and the extra admin ability to read all members PM's, I thought it was worthy of its own version number VERSION 3.5
OK, now thats out the way onto the main part.
In this mod, I have added the following:
- Member adility to block other memers sending them PM's (taken from the block list MOD). - Added a PM total into the header of every PM Page. - Added extra admin options for admin to be able to read members PM's.
This has been tested on Version 3.4.04 (the sample files in here are from snitz version 3.4.04).
I have added it to www.SnitzBitz.com
< |
15 L A T E S T R E P L I E S (Newest First) |
juliana |
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 :)< |
mattdamick |
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. < |
HuwR |
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 |
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< |
Shaggy |
Posted - 11 October 2006 : 09:08:14 You're welcome.
< |
furk |
Posted - 11 October 2006 : 09:06:19 ooooooook. So that's no a bug Thanks a lot < |
Shaggy |
Posted - 11 October 2006 : 09:03:07 Yes, there's only one record created in the database.
< |
furk |
Posted - 11 October 2006 : 09:00:48 Even if the inbox&Outbox aren't from the same user?< |
Shaggy |
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.
< |
furk |
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.< |
furk |
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.< |
furk |
Posted - 10 October 2006 : 07:31:34 |
masterao |
Posted - 02 February 2006 : 16:37:57 I have posted a partially tested bugfix in another topic. See my post here.< |
Imperial Data |
Posted - 01 February 2006 : 18:50:10 Interested too, it's too difficult for me but may be easy for a code guru!< |
Doughnut |
Posted - 17 November 2005 : 13:32:37 quote: Originally posted by GarethMoore1979 The reason why members are getting sent PM's even when they have their function switched off is because THE PERSON SENDING the PM has theirs turned on! Its a glitch. It shouldnt happen I know.
Hello, Just wondered if anyone has managed to make any headway with this problem?
Thanks..< |