![]() |
Show how many visitors are online!
I want to show how many visitors do I have at my website, If the user is
logged I must show it on the list. If there 5 users not logged I must show 5 Guests. |
Re: Show how many visitors are online!
it will NEVER be fully accurate...
just add (+1) to a counter in a field, file, etc with the session starts and remove it with the session on_end -- Curt Christianson Owner/Lead Developer, DF-Software Site: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com "Luis E Valencia" <luisvalen@haceb.com> wrote in message news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl... > I want to show how many visitors do I have at my website, If the user is > logged I must show it on the list. If there 5 users not logged I must show 5 > Guests. > > > |
Re: Show how many visitors are online!
php nuke does it, there must be away to do it with asp.net
"Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl... > it will NEVER be fully accurate... > just add (+1) to a counter in a field, file, etc with the session starts and > remove it with the session on_end > > -- > Curt Christianson > Owner/Lead Developer, DF-Software > Site: http://www.Darkfalz.com > Blog: http://blog.Darkfalz.com > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl... > > I want to show how many visitors do I have at my website, If the user is > > logged I must show it on the list. If there 5 users not logged I must show > 5 > > Guests. > > > > > > > > |
Re: Show how many visitors are online!
it does it but it's not accurate... it never will be.
WWW isn't a statefull system. User connects, page renders, user disconnects, repeat as needed. fire up a php nuke site once, connect and make sure user goes +1, then hit the X in the browser. Reconnect, most likely it did not go (-1) yet, not until the session times out. -- Curt Christianson Owner/Lead Developer, DF-Software Site: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com "Luis E Valencia" <luisvalen@haceb.com> wrote in message news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl... > php nuke does it, there must be away to do it with asp.net > > > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje > news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl... > > it will NEVER be fully accurate... > > just add (+1) to a counter in a field, file, etc with the session starts > and > > remove it with the session on_end > > > > -- > > Curt Christianson > > Owner/Lead Developer, DF-Software > > Site: http://www.Darkfalz.com > > Blog: http://blog.Darkfalz.com > > > > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl... > > > I want to show how many visitors do I have at my website, If the user is > > > logged I must show it on the list. If there 5 users not logged I must > show > > 5 > > > Guests. > > > > > > > > > > > > > > > |
Re: Show how many visitors are online!
Anyway tell me how to do it in code please
"Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje news:Oi5yhcePEHA.1340@TK2MSFTNGP12.phx.gbl... > it does it but it's not accurate... it never will be. > WWW isn't a statefull system. User connects, page renders, user disconnects, > repeat as needed. > fire up a php nuke site once, connect and make sure user goes +1, then hit > the X in the browser. > Reconnect, most likely it did not go (-1) yet, not until the session times > out. > > > > -- > Curt Christianson > Owner/Lead Developer, DF-Software > Site: http://www.Darkfalz.com > Blog: http://blog.Darkfalz.com > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl... > > php nuke does it, there must be away to do it with asp.net > > > > > > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje > > news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl... > > > it will NEVER be fully accurate... > > > just add (+1) to a counter in a field, file, etc with the session starts > > and > > > remove it with the session on_end > > > > > > -- > > > Curt Christianson > > > Owner/Lead Developer, DF-Software > > > Site: http://www.Darkfalz.com > > > Blog: http://blog.Darkfalz.com > > > > > > > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > > > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl... > > > > I want to show how many visitors do I have at my website, If the user > is > > > > logged I must show it on the list. If there 5 users not logged I must > > show > > > 5 > > > > Guests. > > > > > > > > > > > > > > > > > > > > > > > > |
Re: Show how many visitors are online!
http://www.google.com/search?sourcei...%22+user+count
-- Curt Christianson Owner/Lead Developer, DF-Software Site: http://www.Darkfalz.com Blog: http://blog.Darkfalz.com "Luis E Valencia" <luisvalen@haceb.com> wrote in message news:OJOdaNnPEHA.808@tk2msftngp13.phx.gbl... > Anyway tell me how to do it in code please > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje > news:Oi5yhcePEHA.1340@TK2MSFTNGP12.phx.gbl... > > it does it but it's not accurate... it never will be. > > WWW isn't a statefull system. User connects, page renders, user > disconnects, > > repeat as needed. > > fire up a php nuke site once, connect and make sure user goes +1, then hit > > the X in the browser. > > Reconnect, most likely it did not go (-1) yet, not until the session times > > out. > > > > > > > > -- > > Curt Christianson > > Owner/Lead Developer, DF-Software > > Site: http://www.Darkfalz.com > > Blog: http://blog.Darkfalz.com > > > > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > > news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl... > > > php nuke does it, there must be away to do it with asp.net > > > > > > > > > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje > > > news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl... > > > > it will NEVER be fully accurate... > > > > just add (+1) to a counter in a field, file, etc with the session > starts > > > and > > > > remove it with the session on_end > > > > > > > > -- > > > > Curt Christianson > > > > Owner/Lead Developer, DF-Software > > > > Site: http://www.Darkfalz.com > > > > Blog: http://blog.Darkfalz.com > > > > > > > > > > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message > > > > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl... > > > > > I want to show how many visitors do I have at my website, If the > user > > is > > > > > logged I must show it on the list. If there 5 users not logged I > must > > > show > > > > 5 > > > > > Guests. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > |
Re: Show how many visitors are online!
this one is better one , its simple and accurate not like others http://www.eaglestats.com/
|
| All times are GMT. The time now is 04:30 AM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.