You would do something like this
Create a client cookie session.

<cfparam name="Cookie.URL" default="empty">

<!---initialize the trail variable--->
<cfset myTrail = "">


<!---reset cookie if needed--->
<cfset URLCookieTrail = Cookie.URLTrail>          
<cfif Cookie.URLTrail eq "empty">
        <cfset myCookieTrail = "">              
</cfif>

<!---Set the current trail for this page--->
<cfset myTrail = myTrail & "<a href=">
<cfset myTrail = myTrail & Attributes.URL>
<cfset myTrail = myTrail & ">">
<cfset myTrail = myTrail & Attributes.PageName>
<cfset myTrail = myTrail & "</a> / ">

<!---add the current location tag to the trail--->   
<cfset myCookieTrail = myCookieTrail & myTrail>
<!---save the cookie--->
<cfCookie name="URL" value="#URLCookieTrail#" expires="NEVER">

Then create a hit count for these individual sites along with client.cfid
client.cftoken.
Insert these into your database.
        Insert into     bogus table (cookieTrail)
        VALUES =          '#COOKIE.URL#'
        

-----Original Message-----
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: 14 February 2001 15:42
To: Fusebox
Subject: Server stats


A client is mad about server stats and with our fusebox app they can't see
specifically what pages are being hit... is there any software out there to
track this?... all that I have see so far just adds hits to the index.cfm
page time and time again... never any included or 'sub-pages'...

Thanks for the input.

je
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to