x - Posted (3764 Views)
New Member
havvoc
Posts: 92
92
x<
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Junior Member
jkmcgrath
Posts: 145
145
I would love to have it havvoc. Where can I get it at?
You can e-mail it to me if you like. or upload it at my forum. Whatever you prefer is great by me.
Thanks for all the mods and work you do for us coding challenged individuals tongue<
Posted
Starting Member
Komarowsky
Posts: 9
9
Link for download is not working.<
Posted
Starting Member
shaft
Posts: 42
42
Do I have to have Private messages mod by @tomic installed to use this or is it something different and if so which version should I have installed.<
Posted
New Member
Jeepers Ron
Posts: 95
95
Thanks for the Mod Havvoc smile
I added it to my Serverhacker molded forum so I made a change.
Files reworked were;
inc_header.asp & privatemess.asp
I downloaded your PM Pager files from here
Zipped_files
I added this to your instructions, I hope you don't mind.
PM_Pager_instructions.txt<
Jeeper from Michigan
Posted
Junior Member
Chuck McB
Posts: 196
196
Wee tweak: Alphabetically order the member's names in the pager window
pm_pop_pager2.asp
line 73-75
Code:

strSql = "SELECT ME.MEMBER_ID, ME.M_NAME, ME.M_AUHIDE, ME.M_LEVEL " & _
"FROM " & strTablePrefix & "ACTIVE_USERS AU, " & strMemberTablePrefix & "MEMBERS ME " & _
"WHERE AU.MEMBER_ID = ME.MEMBER_ID ORDER BY ME.M_NAME"

How about a toggle/cookie for the sound notification/auto-open of new message and the window refresh time?<
Posted
Junior Member
Chuck McB
Posts: 196
196
hmm...seems to be a bit of a problem:

Step to replicate:
open the pager, set it to 30 seconds refresh, head to your active.asp (set to something like 5 minute refresh). Click 'mark all messages read' on active.asp then the page refresh time re-sets to 'never refresh'.
Close down the pager window then active.asp remembers the page refresh time no problem.
(same cookie being re-used?)

Edit: I'm using Serverhacker's site v7<
Posted
Junior Member
Chuck McB
Posts: 196
196
Renaming the cookie seems to fix it:

Code:

<%
'## Do Cookie stuffs with reload
nRefreshTime = Request.Cookies(strCookieURL & "PMReload")

if Request.form("cookie") = "1" then
if strSetCookieToForum = 1 then
Response.Cookies(strCookieURL & "PMReload").Path = strCookieURL
end if
Response.Cookies(strCookieURL & "PMReload") = Request.Form("RefreshTime")
Response.Cookies(strCookieURL & "PMReload").expires = strForumTimeAdjust + 365
nRefreshTime = Request.Form("RefreshTime")
end if

if nRefreshTime = "" then
nRefreshTime = 6
end if
%>

Edit: that's in pm_pop_pager2.asp line 22 - 38<
Posted
Junior Member
Chuck McB
Posts: 196
196
2.1 Seems to have been made by mvaughn<