sdlangers Posted June 14, 2005 Posted June 14, 2005 hi, i was wondering if anyone could recommend a good web stats program that gives all the usual information about your site but also can show for each user that visited the site which pages they clicked on and in which order any ideas would be appreciated thanks Quote
mskeel Posted June 16, 2005 Posted June 16, 2005 AWStats is a great program -- though only if you are using APACHE as your web server (and who isn't?). If you are looking for .Net solutions, I don't really know of any. Also, I don't think AWStats will give you the information you are looking for (entered at page A, then went to B->C->D->E->F, then exited the site). The problem is that that kind of informaiton is not logged directly. The statistics you derive all come back to what is recorded in the logs. It may be possible to derive this informaiton, but you will have to parse the server logs directly and figure all of that out. If you go the home grown route I would suggest looking through the AWStats code to determine how to parse APACHE logs (if your web server is APACHE). You can probably find some stuff on the web pretty easily. I'd keep searching for web statstics tools and I'm sure you'll find something if it can be done. Quote
sdlangers Posted June 16, 2005 Author Posted June 16, 2005 mskeel, thanks for the reply - but this is a .NET forum, so i dont think you'll find many apache users here!! i know it is possible to get the path a user takes - the larger commercial web stats programs do it, but i dont have $1k to spend on this any other (IIS) ideas anyone? Quote
mskeel Posted June 16, 2005 Posted June 16, 2005 thanks for the reply - but this is a .NET forum' date=' so i dont think you'll find many apache users here!![/quote']By the way, you can run apache on windows... As a matter of fact we have a win2k3 server setup that uses apache instead of IIS. We wanted to avoid the huge security hole that is windows server. By using the 2k3 OS we get the unlimited connection limit and with apache we get the kind of web security you would actually want to have. Apache, PHP, MySQL... you can't go wrong there. Back to the problem at hand -- to do this yourself (not too many open source/free stat analyzers for closed source/big bucks servers), the best place to start would be with the HTTP logs. Parse and analyze the HTTP logs for whatever HTTP server you are using and determine if the sort of informaiton you want can be derived from the information recorded by those logs. If it is not, you would next have to investigate modifying your web scripts to write out additional information to the logs or to make adjunct logs. Regardless, you will eventually have to go through and parse some kind of a recorded record of who visited your site. This basically boils down to a data analysis exercise. Quote
sdlangers Posted June 16, 2005 Author Posted June 16, 2005 yeah - but i dont want to install apache on win2k3 - while it may be secure on other servers, i heard there are holes with it when you install it parallel with IIS on windows anyway - im not a LAMP developer - i use .NET and a fully MS platform - and this is a .NET forum - so i'm looking for some advice in these areas also - i dont want to have to write an analyser myself - thats my original question - i just want to know if anyone knows of a cheap or free one that works on IIS Quote
Administrators PlausiblyDamp Posted June 16, 2005 Administrators Posted June 16, 2005 http://www.thefreecountry.com/webmaster/loganalyzers.shtml Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
mskeel Posted June 16, 2005 Posted June 16, 2005 Hey, man...right tools for the job -- no matter what they are. That's all I'm saying. Searching the web I turned up several freebies, though none with the functionality you desire. Sourceforge might be another good place to look. The ideal, I think, would be to find something that is open source (free) that does most of what you want it to do, and you can easily modify to do the rest. AWStats is good becuase all you have to do is write a new filter for IIS logs (or search the web a little) and then you can do all kinds of great stuff. Even extend the functionality to perhaps do what you need it to do. Good luck to you on your quest. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.