Project

General

Profile

Docs ModUserTrack » History » Revision 8

Revision 7 (zkv, 2008-11-21 17:13) → Revision 8/15 (zkv, 2008-11-21 18:00)

{{>toc}} [[TracNav(DocsToc)]] 

 h1{color:#555555;}. h1. Module mod_usertrack mod_usertrack. 

 h2. Description Description: 

 Clickstream is The usertrack module sets a cookie on the user's side in order to enable clickstream (the series of page visits and associated clicks executed by a website visitor when navigating through the site. 

 Usertrack module sets a cookie on the user's side in order to enable clickstream site) logging to track user activity. 

 h2. Installation 

 In order to use mod_usertrack, you need to load it first. Make sure you have following line inside your configuration file: 
 <pre style='background-color:#efefef; border:1px solid #dddddd; margin:0; margin-top:10px; margin-bottom:10px; padding:10px; padding-left:30px;'> 
 server.modules = { 
     ..., 
     "mod_usertrack", 
     ... 
 } 
 </pre> 

 h2. Options Options: 

 table{border:1px solid #dddddd; background-color:#efefef;}. 
 |_.Name|_.Description|_.Example| 
 |usertrack.cookie-domain|Sets the domain name to which this cookie applies.|usertrack.cookie-domain = ".example.com"| 
 |usertrack.cookie-max-age|Sets the maximum duration in seconds of the cookie. If not specified it will not add a 'max-age' to the cookie, meaning it will not expire.|usertrack.cookie-max-age = 60| 
 |usertrack.cookie-name|This option allows the setting of the name of the cookie. The default is 'TRACKID'. Currently it only allows a-z.|usertrack.cookie-name = "mycookie"|