Docs ModUserTrack » History » Revision 5
Revision 4 (moo, 2007-07-07 15:29) → Revision 5/15 (moo, 2007-07-07 15:30)
[[TracNav(DocsToc)]] [[TracNav(DocsToc))]] {{{ #!rst ========= UserTrack ========= --------------------- Module: mod_usertrack --------------------- .. meta:: :keywords: lighttpd, user tracking, cookie .. contents:: Table of Contents Description =========== 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) logging to track user activity. Options ======= usertrack.cookie-domain Sets the domain name to which this cookie applies. e.g. :: 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. e.g. to have a cookie that lasts for 60 seconds :: 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. e.g. :: usertrack.cookie-name = "mycookie" }}}