This is more like a security question. What is best practice to implement something like "counting specific page visits per x time by IP" and blocking that IP address if limit is exceeded?
Some steps:
- user enters website
- user selects product to buy
- fills out forms and submits form
- redirected to payment gateway
How can i restrict 5 form submitions per 30 seconds? If user makes 6 per 30 IP gets blocked for 30 minutes?
Thanks.