Still giving me the same error. Here is the code at the top of the file to prevent hot-linking.
PHP Code:
/////////////////////////////////// Start of Avatar/Attachment Protector ///////////////////////////////////
$referers = array ('www.bearfacts2.com','bearfacts2.com','66.250.216.66');
function check_referer($referers){
if (count($referers)){
$found = false;
$temp = explode('/',getenv("HTTP_REFERER"));
$referer = $temp[2];
for ($x=0; $x < count($referers); $x++){
if (ereg ($referers[$x], $referer)) {
$found = true;
}
}
if (!$found){
echo "No hot linking allowed!";
exit;
}
return $found;
} else {
return true;
}
}
check_referer($referers);