evergreean
Technical User
I need to have a web page that shows Web page statistics only with the following information:
Total Hits
Who is hitting
Where they are coming from
Please advise if this is possible on my Windows 2000 Web Server?
Here is my start for the first part on getting hits:
Need more assistance with getting more details such as who is hitting the site and where they are coming from.
Total Hits
Who is hitting
Where they are coming from
Please advise if this is possible on my Windows 2000 Web Server?
Here is my start for the first part on getting hits:
Code:
<cfapplication name="surveyApp2" sessionmanagement="yes">
<cflock name="surveyAppVars2" timeout="3">
<cfparam name="application.uniqueVisitors2" default=0>
<cfparam name="application.count2" default=0>
</cflock>
<cflock name="surveyAppVars2" timeout="3">
<cfif not isdefined("session.visited")>
<cfset application.uniqueVisitors2 = application.uniqueVisitors2 + 1>
<cfset session.visited = "yes">
</cfif>
<cfset application.count2 = application.count2 + 1>
</cflock>
Need more assistance with getting more details such as who is hitting the site and where they are coming from.