Quote:
Originally posted by bikeboy
okay, so I check yes to referal in the control panal, but where do I place this code. and what happens if they try to post from a proxy, do they get sent to another page telling them what they are doing wrong?
|
depends what you do with it....
put the entire bit of the code in a place where itll always be called...
then after the code put this:
PHP Code:
if(isset($proxy))
{
die("SORRY, ACCESS FROM A PROXY IS FORBIDDEN!");
}
or something like that...