Hi,
I'm looking for a way to prevent a single IP address from having a page open in multiple windows. Any suggestions?
Preventing one IP from having the page open more than once
Moderator: General Moderators
-
peter986532
- Forum Newbie
- Posts: 6
- Joined: Wed Dec 30, 2009 9:38 pm
- MindOverBody
- Forum Commoner
- Posts: 96
- Joined: Fri Aug 06, 2010 9:01 pm
- Location: Osijek, Croatia
Re: Preventing one IP from having the page open more than on
General idea is to make database table where upon page load IP of visitor will be inserted.
First check database table for visitors IP, and if not found show him page, else do safety percotions. Hope this will help somehow.
First check database table for visitors IP, and if not found show him page, else do safety percotions. Hope this will help somehow.
Re: Preventing one IP from having the page open more than on
In general, you simply can't limit it, because HTTP is a stateless protocol.
There are 10 types of people in this world, those who understand binary and those who don't
-
peter986532
- Forum Newbie
- Posts: 6
- Joined: Wed Dec 30, 2009 9:38 pm
Re: Preventing one IP from having the page open more than on
Thanks for the responses. I'll think I'll go the path MindOverBody suggested