Forum Moderators: DixonJones
Is there a way to get a cookie on all pages of a site without adding any code in it?
The plug-in solution is good because it means that you don't have to add any code on any of the existing pages but can track the visitors anyhow.
Or if I did not understand you correctly how do I implement asp or php code to be used on all pages without changing the code of those pages?
<VirtualHost x.x.x.x>
CustomLog logplus "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Cookie}n\""
CookieTracking On
CookieExpires "35 days"
</VirtualHost> This will enable the default cookie, and the CustomLog directive adds that info the the log file after the browser signature.
I'm not aware of any built-in support like this for IIS unless you resort to a plug-in.
thx