Active
Project:
Click Thru Tracking
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
5 Feb 2008 at 10:01 UTC
Updated:
5 Feb 2008 at 17:52 UTC
Well I'm starting working on storing the IP of the visitor, adding a timestamp, and allow new click only every X hours.
If anybody want to help (I'm going to add more field for the views I created in my last post)
Comments
Comment #1
kbahey commentedActually, if you want to change the module, then better take a step further and normalize the database.
Ideally, each click will cause a new row to be inserted, rather than the incrementing that happens for day/week/month today.
This way,
Another useful thing is to make the campaigns descriptive rather than just numbers. So the settings page will have a tab where you can add a new campaign which are stored in a separate db table.
We could not do a GROUP BY gid to see all clicks from a certain campaign and do BETWEEN on timestamp for clicks within a certain time frame, and many other neat things.