Author |
Topic |
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 28 February 2003 : 15:34:38
|
I've done a mod to auto send a PM to new members, this could be a nice function to build into the next release? |
The UK MkIVs Forum |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 03 March 2003 : 15:40:32
|
quote: Originally posted by gareth_moore_2000
you are correct.
Thanks gareth, I was shocked that no one had replied, but I missed your post |
|
|
jimlord
New Member
USA
57 Posts |
Posted - 04 March 2003 : 22:52:05
|
quote: Originally posted by @tomic
Check the numbering of you array:
rM_NAME = 0 rM_RECEIVE_EMAIL = 1 rM_AIM = 2 rM_ICQ = 3 rM_MSN = 4 rM_YAHOO = 5 rM_PM = 6 rM_TITLE = 7 rMEMBER_ID = 8
and so on. The actual numbering will depend on the MODs you have installed. It doesn't stop at rMEMBER_ID = 8 but continues on until you are done. So wherever you inserted rM_PM = 6 alters the order. Make sure the numbering resumes and you don't have two 6's.
@tomic
@tomic, you might want to update your readme file to clarify that the lines below that one need to be renumbered. I tried it to follow your directions to the letter because I know how tricky mod installation can be. ;) I thought that looked suspect when I saw it, but figured I would give it a shot. Did the same thing with the second post as above, so I figured I'd jsut renumber and see what happens and poof! Beautiful mod. :)
So, a little update to the readme might help us poor souls. Thanks! |
"That button did what?" |
|
|
Chris Yew
Junior Member
134 Posts |
Posted - 20 March 2003 : 02:22:50
|
Hi, I've installed this mod and running perfectly well.
I also understand that my Outbox is actually the recipient's Inbox. So if I PM a message to the recipient, and he delete off this message in his Inbox, the same message in my Outbox will also disappear as it's actually showing his Inbox. This is what I think how the PM works if I'm not wrong.
But can it be modified so that it's Outbox is like our Email and thus, the messages will not disappear even if the recipients will to delete off the messages in his Inbox.
Thank you.
Chris Yew
|
|
|
gareth_moore_2000
Junior Member
United Kingdom
262 Posts |
Posted - 20 March 2003 : 17:00:46
|
that is sorrect Chris.
what you are suggesting IS possible- but would need some changes into the database !
You would in effect be doubling the size the PM's take in your database- do you really want to do that ? |
|
|
Chris Yew
Junior Member
134 Posts |
Posted - 20 March 2003 : 20:36:04
|
Hi Gareth,
Personally I think it's ok for my forum and I will choose to go ahead if there's such a mod.
I remember that we can set the number of PM a member can have - say 30PM. So if the space is used up, the member will just have to delete off the old PM. Shouldn't be a problem.
quote: Originally posted by gareth_moore_2000
that is sorrect Chris.
what you are suggesting IS possible- but would need some changes into the database !
You would in effect be doubling the size the PM's take in your database- do you really want to do that ?
|
|
|
gareth_moore_2000
Junior Member
United Kingdom
262 Posts |
Posted - 22 March 2003 : 16:35:14
|
Just a thought.....
Your outbox IS someone elses inbox- but it would be quite easy to change that around !
So, when you send a message it is in YOUR outbox- the recipient would have access to read it (obviously- you sent it to them) BUT: they dont have access to delete it- YOU DO ! This would also be good if you sent a PM and changed your mind- you could delete it before its been read !
But this would also give you no control over your inbox.... which is a downside ! But I suggested this because if you would prefer to have control over your outbox rather than your inbox- this would be easier than what we discussed. |
|
|
Chris Yew
Junior Member
134 Posts |
Posted - 23 March 2003 : 08:25:38
|
Haha, can't we have the best of both world? |
|
|
arthurhanlon
Starting Member
7 Posts |
Posted - 27 March 2003 : 18:50:55
|
Hi there, I've a prob with this MOD.
The actual entire MOD works fine, it's more of a silly little thing really.
When I'm in my "Inbox" and click on the mebers list, a popup windows appears with all usernames. when I click on the user name, I get this:
"Page cannot be displayed"
ADODB.Recordset (0x800A0CC1) Item cannot be found in the collection corresponding to the requested name or ordinal. /web/snitz/forum/pop_profile.asp, line 322
Here is the snippet surrounding line 322 (322 in bold) sorry can't remote link to files on my host:
if mLev > 2 or rs("M_RECEIVE_EMAIL") = "1" then strContacts = strContacts + 1 Response.Write " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ align=""right"" width=""10%"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>E-mail User: </font></b></td>" & vbNewLine if Trim(rs("M_EMAIL")) <> "" then Response.Write " <td bgColor=""" & strPopUpTableColor & """ nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""JavaScript:openWindow('pop_mail.asp?id=" & rs("MEMBER_ID") & "')"">Click to send an E-Mail</a> </font></td>" & vbNewLine else Response.Write " <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>No address specified...</font></td>" & vbNewLine end if Response.Write " </tr>" & vbNewLine end if If strDBNTUserName <> "" and Trim(rs("M_PMRECEIVE")) = "1" and strPMStatus = "1" Then strContacts = strContacts + 1 Response.Write " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ align=""right"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>PM User: </font></b></td>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & getCurrentIcon(strIconPmprivatemessage,"Send " & chkString(rs("M_NAME"),"display") & " a Private Message","align=""absmiddle"" hspace=""0""") & " <a href=""privatesend.asp?method=Topic&mname=" & chkString(rs("M_NAME"),"display") & """>" & chkString(rs("M_NAME"),"display") & "</a> </font></td>" & vbNewLine & _ " </tr>" & vbNewLine end if if strAIM = "1" and Trim(rs("M_AIM")) <> "" then strContacts = strContacts + 1 Response.Write " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ align=""right"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>AIM: </font></b></td>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & getCurrentIcon(strIconAIM,"","align=""absmiddle""") & " <a href=""" & strIMURL1 & "pop_messengers.asp?mode=AIM&ID=" & rs("MEMBER_ID") & strIMURL2 & """>" & ChkString(rs("M_AIM"), "display") & "</a> </font></td>" & vbNewLine & _ " </tr>" & vbNewLine end if
This doesn't stop the MOD from working but is quite annoying!
Another thing is that, following the code modifying instructions, upon changing the code to the following at line 311(roughly) it causes an error when displaying the contents of my forums. Whenever I go into any topic, I can view the first post but the rest show up as "error". When I change this code back to what it's supposed to look like, the top bar that allows you to delete/edit messages etc, only allows the first post to be sent a PM to ie. the PM icon only appears in the top post and not the rest of the posts.
strSql = "SELECT M.M_NAME, M.M_RECEIVE_EMAIL, M.M_AIM, M.M_ICQ, M.M_MSN, M.M_YAHOO, M.M_PMRECEIVE"
Cheers
Arthur
PS. I can't provide a link to my forum as it's hosted locally on my computer just now until it's fixed. I usually apply MODs offline and then upload when i'm satisfied it works. This causes mimimum disruption to my forum members. |
Edited by - arthurhanlon on 28 March 2003 05:27:14 |
|
|
abercrombie
Starting Member
48 Posts |
Posted - 28 March 2003 : 13:41:28
|
Okay I downloaded the mod and everything and I get this error when I go to my page:
Microsoft VBScript compilation error '800a03ea'
Syntax error
/cgi-bin/forum/default.asp, line 257
allModeratorData = rsChk.GetRows(adGment.title='" & chkString(Cat_Name,"pagetitle") & " - " & chkString(strForumTitle,"pagetitle") & "';" & vbNewLine & _ -----------------------------------------------^
|
Edited by - abercrombie on 28 March 2003 13:41:55 |
|
|
weeweeslap
Senior Member
USA
1077 Posts |
Posted - 30 March 2003 : 23:10:20
|
an error: I have it installed on a SQL db and sending mods and all works, but the send pm button only shows in the profile, post, ya know the red pm icon only shows up on members names that were registered when the pm mod was added, any and all members after the mod was installed, well the pm icon is not next to their names, not in their profiles, not in their posts, not anywhere, though their name does show up on the member list. is there a way to fix this? Or is there a fix that I accidently skipped over the past few pages? Thanks! Site is http://www.weeweeslap.com / http://www.coastercrazy.com same asp pages, same databse, 2 diff domains running two diff color schemes. WWS admin@weeweeslap.com |
coaster crazy |
|
|
usmorrows
Starting Member
Bolivia
5 Posts |
Posted - 30 April 2003 : 07:25:51
|
I have the same problem as weeweeslap but on a Access 2000 DB. The PM shows up on the member list and profile of all the members that were registered when I installed it but not new members. The strange thing is it works on my test forum on my localhost.
The M_PMEMAIL and M_PMRECEIVE fields on the Members table is not updating for new members. I can add a 0, and 1 to the fields and then it will show up. |
quote: why did you not post this at Snitz?
The main reasons why this was not posted at Snitz and why I might not post the bugs I find directly at Snitz anymore are the ways "ruirib and HuwR" take pleasure to criticize just about anything I post and seem to resent the fact that I want to improve and correct Snitz which, I agree, serve as the original base for my own Forum.
These are some of the actions I find unacceptable: ruirib and HuwR take fun to Delete some of my topics, of my replies, locked or move my topic.
A topic posted last week from me to Davio in "Help: MOD Implementation" Forum as been deleted.
Two replies in my topic as been deleted about a bug on snitz topic page: http://forum.snitz.com/forum/topic.asp?whichpage=5.96&TOPIC_ID=44136#372029
A Fix to texanman as been deleted (first reply to texanman subject): http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66162
One of my Multi-Language Topic on Snitz has disappeared last night Multi-Language and Multi-Language Skin3D http://forum.snitz.com/forum/topic.asp?TOPIC_ID=40765
etc...
3 times I changed my password and the day after the same game start.
Since I send to HuwR a donation of $200 on December 22, 2006 this guy HuwR has never stop to pick on every thing I post on the Snitz Forum. |
|
|
usmorrows
Starting Member
Bolivia
5 Posts |
Posted - 03 May 2003 : 07:33:26
|
Hey, weeweeslap try running the mod setup again. For some reason mine did not add the fields to the forum_config_new table the first time. Works now |
quote: why did you not post this at Snitz?
The main reasons why this was not posted at Snitz and why I might not post the bugs I find directly at Snitz anymore are the ways "ruirib and HuwR" take pleasure to criticize just about anything I post and seem to resent the fact that I want to improve and correct Snitz which, I agree, serve as the original base for my own Forum.
These are some of the actions I find unacceptable: ruirib and HuwR take fun to Delete some of my topics, of my replies, locked or move my topic.
A topic posted last week from me to Davio in "Help: MOD Implementation" Forum as been deleted.
Two replies in my topic as been deleted about a bug on snitz topic page: http://forum.snitz.com/forum/topic.asp?whichpage=5.96&TOPIC_ID=44136#372029
A Fix to texanman as been deleted (first reply to texanman subject): http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66162
One of my Multi-Language Topic on Snitz has disappeared last night Multi-Language and Multi-Language Skin3D http://forum.snitz.com/forum/topic.asp?TOPIC_ID=40765
etc...
3 times I changed my password and the day after the same game start.
Since I send to HuwR a donation of $200 on December 22, 2006 this guy HuwR has never stop to pick on every thing I post on the Snitz Forum. |
|
|
gareth_moore_2000
Junior Member
United Kingdom
262 Posts |
Posted - 03 May 2003 : 13:41:32
|
it sounds like for some reason when a new members signs up to your forums, it is automatically selecting the 'disable' PM option for new members ! New members wont think or have the knowledge to turn it on !
Run your DB files again, it sounds like a DB error ! |
|
|
usmorrows
Starting Member
Bolivia
5 Posts |
Posted - 05 May 2003 : 19:51:24
|
Yep, after going through the code I don't know how many times it was in the DB. For some reason it didn't set PMEMAIL and PMRECEIVE default values. Manualy set them to 0 and 1 and it works fine. |
quote: why did you not post this at Snitz?
The main reasons why this was not posted at Snitz and why I might not post the bugs I find directly at Snitz anymore are the ways "ruirib and HuwR" take pleasure to criticize just about anything I post and seem to resent the fact that I want to improve and correct Snitz which, I agree, serve as the original base for my own Forum.
These are some of the actions I find unacceptable: ruirib and HuwR take fun to Delete some of my topics, of my replies, locked or move my topic.
A topic posted last week from me to Davio in "Help: MOD Implementation" Forum as been deleted.
Two replies in my topic as been deleted about a bug on snitz topic page: http://forum.snitz.com/forum/topic.asp?whichpage=5.96&TOPIC_ID=44136#372029
A Fix to texanman as been deleted (first reply to texanman subject): http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66162
One of my Multi-Language Topic on Snitz has disappeared last night Multi-Language and Multi-Language Skin3D http://forum.snitz.com/forum/topic.asp?TOPIC_ID=40765
etc...
3 times I changed my password and the day after the same game start.
Since I send to HuwR a donation of $200 on December 22, 2006 this guy HuwR has never stop to pick on every thing I post on the Snitz Forum. |
|
|
Topic |
|