Author |
Topic  |
Pull My Finger
Starting Member
43 Posts |
Posted - 23 November 2004 : 20:43:05
|
quote: Originally posted by Pull My Finger
Maybe I did something wrong but.... After installing I noticed that topics that didn't have replies posted didn't show the members names who viewed topic in the popup window.
Sorry Da_Stimulator, I missed this in you first post of this topic....
quote: Note: The view count per viewer will be inaccurate for back-filled data (posts before you installed the mod) - there is nothign I can do about that.
|
 |
|
jensen
New Member

United Kingdom
97 Posts |
Posted - 30 November 2004 : 12:02:00
|
Da_Stimulator
I would like the "popup link" to only be active if loged on as an "admin", normal users should just see the "Replies" and "Read" info without the popup link.
Possible?
|
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 30 November 2004 : 22:20:07
|
Just released 1.5 with updated mySQL support and admin functions |
-Stim |
Edited by - Da_Stimulator on 01 December 2004 00:33:24 |
 |
|
tribaliztic
Senior Member
   
Sweden
1532 Posts |
Posted - 01 December 2004 : 02:52:26
|
Would it be possible to make this available per forum? I don't want this for all my forums but only a few. I have the who-read-mod installed and it really bulk up the db pretty quick, I think this would do the same and therefore i would like to be able to turn this on/off. =)
|
/Tribaliztic - www.gotlandrace.se -
|
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 01 December 2004 : 03:17:11
|
quote: Originally posted by tribaliztic
Would it be possible to make this available per forum? I don't want this for all my forums but only a few. I have the who-read-mod installed and it really bulk up the db pretty quick, I think this would do the same and therefore i would like to be able to turn this on/off. =)
I may include this in future versions... I want to try and get all of any existing (if any) bugs worked out before I go changing the code around like that |
-Stim |
 |
|
jensen
New Member

United Kingdom
97 Posts |
Posted - 04 December 2004 : 06:17:45
|
quote: Originally posted by jensen
Da_Stimulator
I would like the "popup link" to only be active if loged on as an "admin", normal users should just see the "Replies" and "Read" info without the popup link.
Possible?
I have installed this mod and like the stats it produces, but to keep it installed i would like to be able to limit its audience as above, sorry to ask again - but can i limit the onfo to admin logons only?
|
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 04 December 2004 : 06:31:10
|
yes; if you installed it correctly, go to Admin Options->Feature Configuration
Scroll down to "Misc Features"
There you can set the audience type.
If you are using an older version, you will need to upgrade to the current in order to be able to do this.
 |
-Stim |
Edited by - Da_Stimulator on 04 December 2004 07:31:54 |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 07 December 2004 : 08:27:03
|
heh, I'm such a perfectionist...
Now doing a complete re-write for Version 2.0 will be upgradable
Now Taking suggestions |
-Stim |
 |
|
Pull My Finger
Starting Member
43 Posts |
Posted - 09 December 2004 : 11:19:26
|
Maybe bug on verson 1.5
I upgraded from 1.2
When selecting "Members Only" theres no links on topic view and topic replys when IM loged on as a normal member and also Admin. Other selections work |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 09 December 2004 : 11:31:10
|
quote: Originally posted by Pull My Finger
Maybe bug on verson 1.5
I upgraded from 1.2
When selecting "Members Only" theres no links on topic view and topic replys when IM loged on as a normal member and also Admin. Other selections work
Can you post a link to your forum? I cant duplicate it on my forum |
-Stim |
 |
|
Pull My Finger
Starting Member
43 Posts |
Posted - 09 December 2004 : 18:16:15
|
quote: Originally posted by Da_Stimulator
Can you post a link to your forum? I cant duplicate it on my forum
I got the mod set to members only. Again other selections work the way they surposed too.
http://www.yankeewaterfowler.com/forum/ login- test password- demo |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 10 December 2004 : 06:28:22
|
Double-check to make sure that your "PopStatLink" Function in inc_func_common is updated, and try "Check Forum Installation" to update the variables.
It's working fine on my forum, I cant duplicate it to fix it...
Ok I found it, change this in inc_func_common.asp in the PopStatLink funciton
"if mLev < 0 then"
to
"if mLev > 0 then"
typo on my part, fixed in readme |
-Stim |
Edited by - Da_Stimulator on 10 December 2004 06:30:20 |
 |
|
Pull My Finger
Starting Member
43 Posts |
Posted - 10 December 2004 : 11:35:51
|
Da_Stimulator:
That did the trick.....Set to "Members Only"... worked under member name "test" and admin.... Didn't work when logged off as lurker (they way its surposed too for lurkers)
Thanks a Bunch! |
 |
|
Classicmotorcycling
Development Team Leader
    
Australia
2085 Posts |
Posted - 02 January 2005 : 21:08:10
|
When viewing Archived topics, I get the following:ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
/Forum/inc_func_common.asp, line 47 The line 47 is in red:Function GetMemViewed(fTopicID, fUserID)
strsql = "SELECT T_MEMVIEWED FROM " & strTablePrefix & "TOPICS"
strsql = strsql & " WHERE TOPIC_ID=" & fTopicID
set fRS = Server.CreateObject("ADODB.RecordSet")
fRS.CursorLocation = adUseClient
fRS.Open strsql, my_conn, adOpenKeyset
crappyVB = fRS("T_MEMVIEWED")
if IsNull(crappyVB) or IsEmpty(crappyVB) then
GetMemViewed = Cint(fUserID)
else
GetMemViewed = crappyVB & "," & Cint(fUserID)
end if
fRS.Close
set fRS = nothing Any ideas on the Archived stuff?
|
Cheers, David Greening |
 |
|
Da_Stimulator
DEV Team Forum Moderator
    
USA
3373 Posts |
Posted - 02 January 2005 : 23:37:19
|
Let me look into it, I didnt take archived topics into account when I wrote the script... Will have a fix for you by tomorrow :)
-update-
I dont have archived topics on my forum, so I cant test this.
But, in your inc_func_common.asp file, change the strTablePrefix in the GetMemViewed Function to strActivePrefix
strsql = "SELECT T_MEMVIEWED FROM " & strActivePrefix & "TOPICS"
|
-Stim |
Edited by - Da_Stimulator on 03 January 2005 22:09:23 |
 |
|
Topic  |
|