catalyst2 community forums  

Go Back   catalyst2 community forums > catalyst2 Community > Sites Hosted by catalyst2

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 23-05-2003, 08:44 PM   #1 (permalink)
Registered User
 
Join Date: Apr 2003
Posts: 12
Talking www.bniwatch-city.com

Hi All,
Love some feedback

www.bniwatch-city.com

ALSO - what are people using for web stats besides the default? Anything cheap and robust?

Mikey

www.bniwatch-city.com
webstage5 is offline   Reply With Quote
Old 30-05-2003, 02:40 PM   #2 (permalink)
Number 1 Nice Guy
 
muse's Avatar
 
Join Date: Apr 2003
Location: newcastle , uk
Posts: 75
neat

wow

that's a really neat website.I like the mellow colour scheme. I am toying with the full xml portal at my catalyst2 site http://www.Trade5.com - the full xml portal includes comprehensive site statistics - browser type , referrer , ip etc and it is free.

http://www.fullxml.com
muse is offline   Reply With Quote
Old 30-05-2003, 04:07 PM   #3 (permalink)
Registered User
 
Join Date: Apr 2003
Posts: 12
Tell me More

HI,
Could you explain more about full XML and what it does for your site?

Thanks,
Mike
webstage5 is offline   Reply With Quote
Old 01-06-2003, 03:58 PM   #4 (permalink)
Number 1 Nice Guy
 
muse's Avatar
 
Join Date: Apr 2003
Location: newcastle , uk
Posts: 75
full xml

full xml is a web portal , all the pages are provided , there is no database backend and it installs simply by mirroring the directory structure on your website and configuring it back stage. everything you currently see at my page is a part of full xml -nb it is a complete content management system. I have added xml rss feeds on the frontpage , some javascript etc. you add pages and choose where you want them to appear in the structure and choose who you want to see them - members etc so guestbook , forums , quotations manager , downloads etc are standard parts of the site. it is really easy to edit and add content and you can add html/javascript as new pages directly (within the system) , which after you tell it where you want them , it will index. site stats are a part of the whole portal (accessible from the wysiwyg admin interface) , so im not sure if you can pull them out to work independently on your site. BTW your site does look really great as it is and is easily navigable - i suggest you 'play' with full xml elsewhere to see if you like or can use it. a comparable 'portal' is aspnuke , which i have not tried yet.

if it is not possible to integrate the site stats from fullxml , you could always try browsing the resource directory at http://www.4guysfromrolla.com , there is bound to be something free or cheap there for monitoring visitors.
muse is offline   Reply With Quote
Old 19-06-2003, 09:23 AM   #5 (permalink)
Webdesign
 
webscript's Avatar
 
Join Date: Jun 2003
Location: New Zealand
Posts: 102
To Trade5,

The xml portal sounds cool.

Is your website using that (trade5.com) ?

I have been to your .net playground site (freemoney?) and I like the examples you have on the site.

The send mail one, it doesn't need an smtp server ?

Good One,

Oh yeah and how do you do that one active visitor thing. Thats neat ! Haha.

Thanks..
Adam.

Last edited by webscript; 19-06-2003 at 09:27 AM.
webscript is offline   Reply With Quote
Old 19-06-2003, 07:53 PM   #6 (permalink)
Number 1 Nice Guy
 
muse's Avatar
 
Join Date: Apr 2003
Location: newcastle , uk
Posts: 75
cheers

--To Trade5,

--The xml portal sounds cool.

thats what you see at http://www.trade5.com

--Is your website using that (trade5.com) ? YES

--I have been to your .net playground site (freemoney?) and I like the examples you have on the site.

--cheers - if anyone alse wants to look thats http://freemoney.www2.dotnetplayground.com

--The send mail one, it doesn't need an smtp server ?

I am using smtp.blueyonder.co.uk with it as you can see in the source , this doesn't require authentication currently BUT it will only relay mail to another blueyonder email address hence i can use the script to set up a form to send mail to myself. if you try anything else you'll get a 530.

--Good One,

Thanks for your comments , i'm pleased that the few months i spent as a complete geek in the winter of last year , learning asp.net a bit have been rewarding to other people.

--Oh yeah and how do you do that one active visitor thing. Thats neat ! Haha.

cheers - sometimes it does say 3 or 4 , honest!! - its a drop in the ocean of using the file global.asa or global.asax in asp.net to record people in active sessions. its done thusly:

<script language="vBScript" runat="Server">

Sub Application_OnStart(Sender as Object, E AS EventArgs)
application("user_sessions") = 0
End Sub

Sub Application_OnEnd(Sender as Object, E AS EventArgs)
End Sub

Sub Session_OnStart(Sender as Object, E AS EventArgs)
application.lock()
application("user_sessions") = application("user_sessions") + 1
application.unlock()
End Sub

Sub Session_OnEnd(Sender as Object, E AS EventArgs)
application.lock()
application("user_sessions") = application("user_sessions") - 1
application.unlock()
End Sub

</script>

then call application ("user_sessions") from your html/asp/asp net or application("activevisitors") or whatever you've done with it. or in aspx

<asp:label id="visitors" runat="server" />

thats a bit messy , but you get the drift.
muse is offline   Reply With Quote
Old 25-06-2003, 09:49 AM   #7 (permalink)
Senior Member
 
DigiGuru's Avatar
 
Join Date: Mar 2003
Location: Herts, UK
Posts: 83
Send a message via Yahoo to DigiGuru
The only problem you will have with this is that the session_onEnd sometimes doesn't run...

This can leave you with more active visitors than you actually have.

I use a system with a "lastaccess" field in a database.

The user's sessionid is then pulled and stored in the db.

I then select a count of users who have been active within the last 20 minutes.

Anything over 20 minutes gets deleted from the table.

Stuart
DigiGuru is offline   Reply With Quote
Old 07-04-2004, 07:36 PM   #8 (permalink)
Windows SysAdmin
 
Chris's Avatar
 
Join Date: Jan 2003
Posts: 156
Send a message via MSN to Chris
Nice site, and interesting to see how BNI looks in the USA (I'm a member of a chapter over here in the UK).
__________________
Chris P
Windows SysAdmin
Catalyst 2
chris@catalyst2.com
Chris is offline   Reply With Quote
Reply

Thread Tools
Display Modes 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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 12:57 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.