реферальная ссылка не привязана к одному ip

Я снял реферальную систему с сайта и начал ее немного исправлять. Я преобразовал mysql в mysqli Я закончил это, но я столкнулся с проблемой и не уверен, как это исправить.

На ip должна быть только одна реферальная ссылка. Вот что не происходит, когда я обновляю страницу, создается новая реферальная ссылка.

Регистрация реферальной ссылки

<?
include "config.php";
if(isset($_COOKIE['ref_link'])){
$ref = $_COOKIE['ref_link'];
}else{
$ref = rand(1,9).date('Y').date('m').date('d').date('h').date('i').date('s');
$ref = rand_uniqid($ref);
setcookie("ref_link",$ref, 9999999999);

$insert = "insert into cookie_ref(REF_val) values('".$ref."');";
@mysqli_query($GLOBALS["___mysqli_ston"], $insert);

}
$error = ''; //used for checking if ip has been re used
if(isset($_GET['ref'])){
$getip = "select * from cookie_ref_ips where IP_address = '".getRealIpAddr()."' and REF_val = '".$_GET['ref']."'";
$getip_query = @mysqli_query($GLOBALS["___mysqli_ston"], $getip);
if(@mysqli_num_rows($getip_query) < 1){
$update = "update cookie_ref set REF_hits = REF_hits + 1 where REF_val = '".$_GET['ref']."'";
@mysqli_query($GLOBALS["___mysqli_ston"], $update);

$insertip = "insert into cookie_ref_ips(IP_address,REF_val) values('".getRealIpAddr()."','".$_GET['ref']."')";
@mysqli_query($GLOBALS["___mysqli_ston"], $insertip);
}else{
$error = "<h1>You already used this refferal link!</h1>";
}
}
?>


<? // Logging the referral count
echo $error;
$select = "select * from cookie_ref where REF_val = '".$ref."';";
$selectQuery = @mysqli_query($GLOBALS["___mysqli_ston"], $select);
$selectArray = @mysqli_fetch_array($selectQuery);
$hits = $selectArray['REF_hits'];
echo "<div class='container'>
<h1>".$hits."</h1>";
echo "</div>";
?>

<?

<? // Getting the real ip
function rand_uniqid($in, $to_num = false, $pad_up = false, $passKey = null)
{
$index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
if ($passKey !== null) {
// Although this function's purpose is to just make the
// ID short - and not so much secure,
// you can optionally supply a password to make it harder
// to calculate the corresponding numeric ID

for ($n = 0; $n<strlen($index); $n++) {
$i[] = substr( $index,$n ,1);
}

$passhash = hash('sha256',$passKey);
$passhash = (strlen($passhash) < strlen($index))
? hash('sha512',$passKey)
: $passhash;

for ($n=0; $n < strlen($index); $n++) {
$p[] =  substr($passhash, $n ,1);
}

array_multisort($p,  SORT_DESC, $i);
$index = implode($i);
}

$base  = strlen($index);

if ($to_num) {
// Digital number  <<--  alphabet letter code
$in  = strrev($in);
$out = 0;
$len = strlen($in) - 1;
for ($t = 0; $t <= $len; $t++) {
$bcpow = bcpow($base, $len - $t);
$out   = $out + strpos($index, substr($in, $t, 1)) * $bcpow;
}

if (is_numeric($pad_up)) {
$pad_up--;
if ($pad_up > 0) {
$out -= pow($base, $pad_up);
}
}
$out = sprintf('%F', $out);
$out = substr($out, 0, strpos($out, '.'));
} else {
// Digital number  -->>  alphabet letter code
if (is_numeric($pad_up)) {
$pad_up--;
if ($pad_up > 0) {
$in += pow($base, $pad_up);
}
}

$out = "";
for ($t = floor(log($in, $base)); $t >= 0; $t--) {
$bcp = bcpow($base, $t);
$a   = floor($in / $bcp) % $base;
$out = $out . substr($index, $a, 1);
$in  = $in - ($a * $bcp);
}
$out = strrev($out); // reverse
}

return $out;
}
function getRealIpAddr()
{
if (!empty($_SERVER['HTTP_CLIENT_IP']))   //check ip from share internet
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))   //to check ip is pass from proxy
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}
return $ip;
}
?>

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]