John Mina
|
Monday 16 May 2005 2:43:31 am
i need web-site statistics, Like how many users are online now , and how many have been to the website since it started . I heard there is a free ad on to ezpublish tht makes it , any help ? i currently use ez 3.3-3 will upgrade to 3.4 soon this week awaiting nay help please
|
J-A Eberhard
|
Monday 16 May 2005 2:51:20 am
Hi,
To see how many people are online just go to the admin interface, then settings, then sessions. You will see the sessions and the registered user currently logged.
If you want more general stats, you can use awstats if you are on a Linux box (awstats.sourceforge.net) or use this eZ extension http://ez.no/community/contribs/template_plugins/ezstats Good luck.
Open Source Solution Provider
Open-Net Ltd Switzerland
http://www.open-net.ch
|
Lex 007
|
Tuesday 17 May 2005 11:42:20 pm
Hi, This is the code to show the people who are online :
{let logged_in_count=fetch( user, logged_in_count )
anonymous_count=fetch( user, anonymous_count )}
{'There are %logged_in_count registered and %anonymous_count anonymous users online.'|i18n( 'design/standard/toolbar', 'Short user information',
hash( '%logged_in_count', $logged_in_count, '%anonymous_count', $anonymous_count ) )}
{/let}
|