I installed this MOD this morning. I didn't like the fact that you didn't have a link back to the profiles of members listed, so I added that (Just an addition to the SQL query and using the ProfileLink function). Not a hard fix, and it might be something you want to add in a later release.
There was also a problem when I ran the DBS. I have a SQL Server environment, and some of the data types were converted to ntext, which is bad because you can't run an Order By statement in SQL Server with text, ntext and image variables. I just needed to convert the data type for it to work.
Other than that, the MOD worked fine.<
hans_
20 July 2005, 11:29
I installed this MOD now. It looks it works. I see In Readme file I did not made this change for default.asp file: Lower in the WriteStatistics() subroutine find: intStatRowSpan = 3 Replace it with: intStatRowSpan = 4
Because I didn´t found the intStatRowSpan = 3 in default.asp file.
Is it necessary to somehow make this change?
Thanks<
Thank you Shaggy, I dont understand so good English, sorry.
I read the topic what you posted above.
It means I must not change anythig if my forum with this MOD works? I use Snitz 3.4.05.
Thank you<
Shaggy
20 July 2005, 12:17
If you're using v3.4.05, you should have that line in your default.asp file unless you've edited it out. Its value may be different if you were required to change it in any other mod(s) you may have installed. If so, simply increment (increase) its value by 1.
<
hans_
20 July 2005, 12:42
Thanks but I cant find the string "intStatRowSpan" in default.asp I tried to find only the piece of the word like e.g. "intStat", but i did not found nothing.<
hans_
20 July 2005, 12:47
Is possible to change var "highestActiveUserDate" using for date to format: DD/MM/YYYY and time to HH/MM/SS.
Currently is displayed : 7/20/2005 5:27:22 PM I need: 20/7/2005 17:27:22 --- Thanks<
Shaggy
20 July 2005, 12:48
Post a link to a *.txt copy of your default.asp file.
<
Originally posted by Shaggy Post a link to a *.txt copy of your default.asp file.
<
hans_
21 July 2005, 02:09
What not works is the highest ever number of users logged in, and the date this event occurred.
The number is still 1, even if was higher of users logged <
Shaggy
21 July 2005, 04:40
The tooltip on your forum's powered by link (assuming this is the forums you're installing the mod on) says it is version 3.4.05 but the comments at the top of your default.asp say it is v3.4.04. Either you ran the database updates for .04->.05 without uploading the new files or you have since overwritten you .05 default.asp with a .04 copy.
<
hans_
21 July 2005, 12:05
Thank you for info Shaggy, I think I ran the database updates for .04->.05 without uploading the new files. How can I correct it, if i have now lot of MODs installed on my forum? Must I somehow compare the changed files to the new files of 3.4.05 version?<
Shaggy
21 July 2005, 12:35
Yes, the only way to do it is to start with fresh copies of the v3.4.05 files and edit them as necessary according to the readmes of the various mods you have installed. To save you the hassle of remodding every file, the files that were changed in v3.4.05 are available here.
<
hans_
21 July 2005, 13:49
Thanks Shaggy you are grandiose. I understand.<
Shaggy
22 July 2005, 04:43
You're welcome <
hans_
22 July 2005, 04:55
Thanks Shaggy You are super workaholic from Dublin
Thanks a lot.
hans_ alias Jan<
hans_
24 July 2005, 11:23
I tried install the MOD changes in clean default.asp vers 3.4.05.
I have still the problem, that the var highestActiveUserCount not changes.
I have the the highest number of users still with Number 1<
Foetus
10 August 2005, 22:02
Originally posted by hans_ I tried install the MOD changes in clean default.asp vers 3.4.05.
I have still the problem, that the var highestActiveUserCount not changes.
I have the the highest number of users still with Number 1
Try to change this
if not activeUserCount < highestActiveUserCount then
to
if cint(activeUserCount) > cint(highestActiveUserCount) then<
bloodyesk
26 August 2005, 16:51
thanks for the MOD ..
is it possible to show these statistics on every page's footer not just in default.asp ?
if possibble, what should I edit/add etc.<
spyderuk
06 January 2006, 13:51
This is the mod I'm looking for. Has someone finished this mod? I've looked through snitzbitz but couldn't find it. If it's out I may have just missed it but no search has really found it as yet<
kpc01
06 January 2006, 16:32
It is on snitzbitz, just named something different....I will go see if I can find it and let you know<
kpc01
06 January 2006, 16:34
found it, on page 6 who all logged on....or something like that link below:
Do NOT attempt to install this mod if you have or ever plan to have other mods. See my recent posts with all the trouble I had with it. Just use the Active Users mod. A bit harder to install, but it works with other mods.<
spyderuk
10 January 2006, 16:35
Well I was thinking of some other mods.. <
mark1million
30 June 2007, 10:12
Thankyou my same problem also fixed with this line change Mark
Originally posted by hans_ I tried install the MOD changes in clean default.asp vers 3.4.05.
I have still the problem, that the var highestActiveUserCount not changes.
I have the the highest number of users still with Number 1
Try to change this
if not activeUserCount < highestActiveUserCount then
to
if cint(activeUserCount) > cint(highestActiveUserCount) then <