Author |
Topic |
@tomic
Senior Member
USA
1790 Posts |
Posted - 04 September 2002 : 12:12:59
|
quote: 1) Is there / or will there be, a way of automatically sending a message from the Admin ID when someone joins the forum (similar to a welcome email if you will...) 2) How can I add the option to send a PM to a user from the Active_Users page on my forum. Once again, great mod, and keep up the good work...
1. Yes, when I can get to it.
2. I will add this ability too.
@tomic |
SportsBettingAcumen.com |
|
|
bjlt
Senior Member
1144 Posts |
Posted - 04 September 2002 : 12:59:21
|
I have the pm saved mod, if you send me your email address, I can send it to you, check mail please.
|
|
|
mikeach
New Member
USA
58 Posts |
Posted - 04 September 2002 : 19:25:06
|
Can you tell me if the pop_delete.asp in the zip file is needed? The text file doesn't mention it but it's in there.
Mike |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 04 September 2002 : 19:38:29
|
It is needed yes. It is not specifically mentioned but I will update the readme later to be more specific.
@tomic |
SportsBettingAcumen.com |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 04 September 2002 : 22:30:40
|
Thanks. I have taken care of that and added a few other code options and added a detailed list of files and where they go to the readme.
@tomic |
SportsBettingAcumen.com |
|
|
Cliff
Average Member
United States
501 Posts |
Posted - 04 September 2002 : 23:24:15
|
Hmm, Thanks for this MOD, if I could get it to work it would be terrific!!
I had no other MODS installed, and I am using 3.4.02, so I just overwrote all of the files that were included. I just downloaded the zip file so I presume I have the recent copy.
Two things, where is the link to the PM's I mights have? I don't see it anywhere on any of the pages.
Second, when I try to view my profile I get this error: Microsoft JET Database Engine error '80040e10'
No value given for one or more required parameters
/bloodbank/forum/pop_profile.asp, line 859
As of 11:24 PM, I replaced the pop_profile that was on the site with the one I seem to have modified. This one error seems resolved. If that file wasn't changes, then why did it sat they were a different size? Before I uploaded this MOD I copied the entire forum to my C drive. When I got this error I simply replaced the existing pop_profile with the one on my C drive and the problem is gone.
Any thoughts?
|
https://squarewheelscycling.com/
https://www.pathlabtalk.com/ |
Edited by - Cliff on 04 September 2002 23:38:24 |
|
|
alex042
Average Member
USA
631 Posts |
Posted - 04 September 2002 : 23:58:04
|
quote: Yes, but I don't have either of those features yet. I searched and couldn't find anything on PM Save.
I've zipped up PM Saved for you. Btw, Does this private message MOD contain the pager MOD functions?
|
Edited by - alex042 on 05 September 2002 00:00:53 |
|
|
vasanthm
Starting Member
35 Posts |
Posted - 05 September 2002 : 00:28:57
|
Hi there every one. I have got a new add in mod for PM.. this mod shows all the message sent and received in the forum..only admin can see it.. And the admin has the option of deleting the PM's he wants.. Below is the code well if you like it you can add a link in the admin_home.asp
Please post your reviews........ i would like to call this PMView add in mod beta
Name this file as admin_viewpm.asp to make it work correctly
<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_sha256.asp"-->
<!--#INCLUDE FILE="inc_header.asp" -->
<!--#INCLUDE FILE="inc_func_admin.asp" -->
<!--#INCLUDE FILE="inc_func_secure.asp" -->
<!--#INCLUDE FILE="inc_func_common.asp" -->
<%
if Session(strCookieURL & "Approval") <> "15916941253" then
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
Response.Redirect "admin_login.asp?target=" & scriptname(ubound(scriptname))
end if
Response.Write " <table border=""0"" width=""100%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td width=""33%"" align=""left"" nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
" " & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
" " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""admin_home.asp"">Admin Section</a><br />" & vbNewLine & _
" " & getCurrentIcon(strIconBlank,"","") & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " Private Messenging<br /></font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine
dim mmid
dim id
dim flag
flag=0
mmid=request("mid")
if(mmid ="")then
mmid=0
end if
strSql = "delete * from forum_pm where M_ID="&mmid&" "
my_Conn.Execute(strSql)
strSql = "select * from forum_pm "
Set rsMessage = my_Conn.Execute(strSql)
response.write("<BR><BR><B>")
if rsMessage.EOF or rsMessage.BOF then
response.write("There are no private messages in the forum")
flag=1
end if
response.write("<BR>")
do Until rsMessage.EOF
strFromMemberName = getMemberName(rsMessage("M_FROM"))
tomember = getMemberName(rsMessage("M_TO"))
strDateTime = rsMessage("M_SENT")
subject=rsMessage("M_SUBJECT")
message=rsMessage("M_MESSAGE")
read=rsMessage("m_read")
id=rsMessage("M_ID")
if(read=0) then
response.write("<B>")
end if
response.write ("From "&strFromMemberName)
response.write ("<BR>To "&tomember)
response.write "<BR>Date "&chkdate(strDateTime, " : " ,true)
response.write ("<BR>")
response.write("Subject : "&subject)
response.write("<BR>")
response.write("message: "&message)
response.write("<BR><B><a href=""admin_viewpm.asp?mid="&id&""">Delete</a><br>")
response.write("<BR><BR><BR><BR>")
rsmessage.movenext
loop
if(flag=0) then
response.write("<BR>Total number of PM sent using the forum so far = "&id)
end if
writefooter
%>
|
Edited by - vasanthm on 05 September 2002 00:34:26 |
|
|
pknaz
Junior Member
USA
117 Posts |
Posted - 05 September 2002 : 02:42:12
|
First of all, i love this MOD. There is only one thing that bothers me cosmetically though. the "Private Messages" heading under "statistics" should be one cell to the left. I think it could also have the option to make it a separate table rather then part of the statistics. Otherwise very useful mod! :)
Cheers |
|
|
goldfish
New Member
82 Posts |
Posted - 05 September 2002 : 05:48:59
|
@tomic,
The mod works really well. Thanks very much.
I have a quick question. Is it possible to set the 'Receive email notification of PMs' option to be 'on' as default, or even remove the option, and just leave it on fullstop?
My users are generally too dumb to be able to turn it off, but I'm loathe to take any chances. The likelihood of all of them being able to turn it on, even with clear instructions, is very limited... ;)
Cheers again, Simon |
|
|
Cliff
Average Member
United States
501 Posts |
Posted - 05 September 2002 : 06:14:03
|
Maybe I'm doing this wrong. If I made no other changes to my forum, can I simply unzip the PM MOD to the forum folder and do the MOD set up in the Admin options?
Mostly it seems to work, except there is no way to access the PM pages unless I send a PM and I see the link for Return to PM pages.
Thanks. |
https://squarewheelscycling.com/
https://www.pathlabtalk.com/ |
|
|
goldfish
New Member
82 Posts |
Posted - 05 September 2002 : 07:00:59
|
CTR,
There are changes required to default.asp and inc_iconfiles.asp, annotated in the ReadMe file.
I'm guessing that without them, you can't do diddly...
Simon |
Edited by - goldfish on 05 September 2002 07:04:16 |
|
|
alex042
Average Member
USA
631 Posts |
Posted - 05 September 2002 : 08:03:36
|
Does this MOD have an admin on/off? How about a member message limit? This limit may be more important if people start saving their messages, but I'd still like to limit the number of messages a mailbox can have. It looks like this already has a read flag and addressbook which were a couple of other features I was looking for.
|
Edited by - alex042 on 05 September 2002 08:18:06 |
|
|
tangoc9999
Junior Member
USA
158 Posts |
Posted - 05 September 2002 : 08:12:40
|
quote: Originally posted by pknaz
First of all, i love this MOD. There is only one thing that bothers me cosmetically though. the "Private Messages" heading under "statistics" should be one cell to the left. I think it could also have the option to make it a separate table rather then part of the statistics. Otherwise very useful mod! :)
Cheers
just move the include above the do statistics |
TANGO
Computers run on smoke, when the smoke comes out, they quit running!
|
|
|
Topic |
|