I want to implement a solution to limit the number of Website Joins can be made by one user. I thought of tracking IP address but these are to generic now.
I'm now looking to set a cookie and increment for each join and then block joins at say 5 from one machine per day. Does anyone have any thoughts around this being a good/poor idea?
use something like:
setcookie("w3resource", $cookie_value, time()+3600, "/home/your_usename/", "example.com", 1, 1);
Is this a fair way to try to prevent automated account creations.
Then apart from a captcha (can anyone recommend one that is hard to break) what other measures could I use to prevent automated account creation?
thx