Author |
Topic |
|
Exile
Starting Member
USA
36 Posts |
Posted - 04 December 2002 : 18:56:22
|
Anyone have a MOD to show a list of Today's Visitors?
You know... Guest if Guest and User Name if Registered User...& times they were on...
It would, of course, re-set at midnight and hopefully allow the veiwer to click on the User Name to see their Profile...
|
Exile, Host of TFEBBS FORUMS http://tfebbs.7times.org/forum2/ Read my latest news in my Profile. |
|
GauravBhabu
Advanced Member
4288 Posts |
Posted - 04 December 2002 : 19:16:11
|
Check out here. This is not available as a Mod yet. |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 05 December 2002 : 03:17:21
|
I only get an error :
Microsoft VBScript runtime error '800a0006'
Overflow: 'cLng'
/mods/whoisin/log_whoisin.asp, line 13
|
|
|
GauravBhabu
Advanced Member
4288 Posts |
Posted - 05 December 2002 : 07:57:05
|
Thanks laser. Fixed* |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 05 December 2002 : 08:24:41
|
This looks like an expanded AU MOD ?? .. any way to track all today's sessions ? |
|
|
GauravBhabu
Advanced Member
4288 Posts |
Posted - 05 December 2002 : 08:31:23
|
This is completely different from any existing AU Mods.
quote: any way to track all today's sessions ?
It does keep track of number of sessions for each visitor during a day. |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 05 December 2002 : 08:40:24
|
ok, I see now, looking forward to the release of this MOD. |
|
|
Exile
Starting Member
USA
36 Posts |
Posted - 05 December 2002 : 18:52:55
|
quote: Originally posted by GauravBhabu
Check out here. This is not available as a Mod yet.
Super job! Nice! Also looking forward to this one!
|
Exile, Host of TFEBBS FORUMS http://tfebbs.7times.org/forum2/ Read my latest news in my Profile. |
|
|
Ez4arab
Junior Member
479 Posts |
Posted - 09 December 2002 : 22:01:33
|
you can uses golbal code to view vistor per day
save this code in file name it golbal.asa
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">
Sub Application_OnStart
Application("ActiveUsers") = 0
Application("TodaysDate") = Date
End Sub
Sub Session_OnStart
If Application("VisitorsToday") = "" then
Application("VisitorsToday") = 100
end if
Session.Timeout = 3 ' minutes
Session("Start") = Now
Application.Lock
Application("ActiveUsers") = Application("ActiveUsers") + 1
if Application("TodaysDate") = Date then
Application("VisitorsToday") = Application("VisitorsToday") + 1
else
Application("TodaysDate") = Date
Application("VisitorsToday") = 1
end if
Application.UnLock
End Sub
Sub Session_OnEnd
' Decrease the active visitors count when the session ends.
Application.Lock
Application("ActiveUsers") = Application("ActiveUsers") - 1
Application.UnLock
End Sub
</SCRIPT>
to display the couter of vistor use this code past where ever you what
<p align="center"><%Response.Write "Active Users: " & Application("ActiveUsers") &" Visits Today: " & Application("VisitorsToday") %></p>
|
Ez4arab web site Ez4arab | |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 15 December 2002 : 17:35:54
|
Any progress on this one Gaurav ? ... any indication of when you need beta testers, or release ?
Sorry, but I'm just bored LOL - me ? bored ? with the list of things I have to do ? |
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 30 December 2002 : 09:41:21
|
BUMP ! - do you need any beta testers ? |
|
|
Classicmotorcycling
Development Team Leader
Australia
2084 Posts |
Posted - 30 December 2002 : 14:31:56
|
Rakesh,
I would not mind a copy of this as well.. Any indication of the release would be great..
|
Cheers, David Greening |
|
|
GauravBhabu
Advanced Member
4288 Posts |
Posted - 01 January 2003 : 07:21:45
|
There are few parts which are not complete, so I have not thought about release yet. |
|
|
|
Topic |
|