function check_lisense()
{
$plugin = "anti-clicker";
$domain = str_replace("www.","",$_SERVER['HTTP_HOST']);
$ch = curl_init();
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_URL,"http://live-studios.ru/check_license.php?domain=".$domain."&hash=".md5($domain."3Nz2cKjcOddrs79")."&pl=".$plugin);
$result = curl_exec($ch);
curl_close($ch);
if( strlen($result)>10 )
{
echo "Отсудствует лицензия на данный плагин, обратитесь по Email: luga-pasha@yandex.ru";
exit();
}
}
$file = file("anti-clicker.txt");
$i=0;
foreach( $file as $v )
{
$v = explode(";",$v);
$question[$i] = $v[0];
$answer[$i] = $v[1];
$i++;
}
switch( $_GET['mod'] )
{
default:
include ("setup.php");
user_login();
if( $_SESSION['anti-clicker']==md5($_SERVER['HTTP_HOST'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_USER_AGENT']) )
{
header("Location: http://$_SERVER[HTTP_HOST]/account.php");
exit;
}
if( isset($_POST['user_check']) )
{
if( strcasecmp(md5(strtolower($_POST['form']['user_check'])),$_SESSION['anti-clicker'])==0 )
{
$_SESSION['anti-clicker'] = md5($_SERVER['HTTP_HOST'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_USER_AGENT']);
header("Location: http://$_SERVER[HTTP_HOST]/account.php");
exit;
}
else {$error = '<font color="red">Ошибка. Неверный ответ на вопрос.</font>';}
}
$rand = rand(0,sizeof($question)-1);
$question = $question[$rand];
$answer = $answer[$rand];
$question = urldecode($question);
$_SESSION['anti-clicker'] = md5(strtolower($answer));
include ("header.php");
echo '
<center>
<h3>Защита от роботов</h3>
<p>Введите ответ на секретный вопрос в форму указанную ниже.</p>
<br />
<div class="error">'.$error.'</div>
<div class="question">'.$question.'</div>
<br />
<form action="" method="post">
<table>
<tr><td><b>Ответ:</b></td><td><input name="form[user_check]" type="text" value="" /></td></tr>
<tr><td colspan="2" align="center"><input name="user_check" type="submit" value="Продолжить" /></td></tr>
</table>
</form>
</center>
';
include ("footer.php");
break;
}