On Mar 10, 2011, at 3:09 PM, Tito Garrido wrote: > I'm wondering what is the best implementation for a "unique click" counting > in web2py... somehow I need to capture the ip address of the client and store > it on a table, I guess... So I'd like a piece of your knowledge on this :-)
The requesting IP address can be found in request.env. But keep in mind that the IP address will yield false positives, since all browsers behind a NAT router will appear to have the same IP address.

