Block IP Addresses
This is a potential solution to prying competitors who keep getting quotes in order to gain privileged information, as discussed here: http://support.admnetwork.com/entries/95406078-Ability-to-block-IP-addresses?page=1#post_33861867
The Bad Client solution (see: http://help.schemeserve.com/index.php?title=Editing_Client_account_details) can work better on the whole if the competitor always uses the same client account. It's a good place to start in any case.
// Block IP address script
//Enter list of banned ips, each separated with a comma:
var bannedips=["23.23.23.23", "11.11.11.11"]
var ip = '<!--#echo var="REMOTE_ADDR"-->'
var handleips=bannedips.join("|")
handleips=new RegExp(handleips, "i")
if (ip.search(handleips)!=-1){
alert("Your IP has been banned from this site. Redirecting...")
window.location.replace("http://www.insurancesoftware.com")
}
Please sign in to leave a comment.
Comments
0 comments