PC Review


Reply
Thread Tools Rate Thread

Show how many visitors are online!

 
 
Luis E Valencia
Guest
Posts: n/a
 
      19th May 2004
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.



 
Reply With Quote
 
 
 
 
Curt_C [MVP]
Guest
Posts: n/a
 
      19th May 2004
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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.
>
>
>



 
Reply With Quote
 
 
 
 
Luis E Valencia
Guest
Posts: n/a
 
      19th May 2004
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:#(E-Mail Removed)...
> 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" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > 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.
> >
> >
> >

>
>



 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      19th May 2004
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> 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:#(E-Mail Removed)...
> > 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" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > 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.
> > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Luis E Valencia
Guest
Posts: n/a
 
      20th May 2004
Anyway tell me how to do it in code please
"Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
news:(E-Mail Removed)...
> 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" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > 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:#(E-Mail Removed)...
> > > 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" <(E-Mail Removed)> wrote in message
> > > news:(E-Mail Removed)...
> > > > 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.
> > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
Curt_C [MVP]
Guest
Posts: n/a
 
      20th May 2004
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" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Anyway tell me how to do it in code please
> "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
> news:(E-Mail Removed)...
> > 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" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > 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:#(E-Mail Removed)...
> > > > 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" <(E-Mail Removed)> wrote in message
> > > > news:(E-Mail Removed)...
> > > > > 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.
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
mhr.live@gmail.com
Guest
Posts: n/a
 
      23rd Sep 2011
this one is better one , its simple and accurate not like others http://www.eaglestats.com/
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
I have MANY MANY MANY PROBLEMS - XP PRO =?Utf-8?B?VGhlIEF1c3NpZSBHaXJs?= Windows XP Help 5 16th Mar 2005 01:23 AM
Many to Many (toooooo flippin many!!!) =?Utf-8?B?R2luYSBTdGFycg==?= Microsoft Access Queries 1 8th Jun 2004 02:38 PM
Re: 1 to many - many to many - many to 1 Miha Markic Microsoft ADO .NET 3 23rd Jan 2004 06:00 PM
How many visitors on my website? Steve Nicholas Microsoft Frontpage 1 18th Jan 2004 11:25 PM
Can FP2K log how many visitors per day? Sonars UK Microsoft Frontpage 2 8th Sep 2003 12:57 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:26 AM.