File: /www/wwwroot/oa.sanjiangapp.com/config/license/zdoocallback.php
<?php
function ioncube_event_handler($err_code, $params)
{
$expiredate = "All Life";
$domain = "";
$ip = "120.53.232.42,172.21.0.7";
$mac = "52:54:00:4a:77:4b";
$users = "20";
$account = "";
$version = "basic";
$email = "";
$mobile = "";
$qq = "";
if(empty($email) or strpos($email, '%email') === 0) $email = 'jinjuan@easycorp.ltd';
if(empty($mobile) or strpos($mobile, '%mobile') === 0) $mobile = '185 6285 6230';
if(empty($qq) or strpos($qq, '%qq') === 0) $qq = 'jinjuan@easycorp.ltd(1826606239)';
$licenseNotFound = "
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<title>error</title>
</head>
<body>
<h2 style='color:red;text-align:center'>未找到授权文件</h2>
<p>未找到授权文件,请使用我们提供的授权文件。</p>
<p>电话:$mobile</p>
<p>QQ:$qq</p>
<p>Email:$email</p>
<p>网站:<a href='https://www.zdoo.com' target='_blank'>https://www.zdoo.com</a></p>
<br /> <br /> <br />
<h2 style='color:red;text-align:center'>License not found</h2>
<p>License not found. Please use the license we supported.</p>
<p>Email : philip@easycorp.ltd</p>
<p>Site : <a href='http://www.zdoo.co/' target='_blank'>http://www.zdoo.co/</a></p>
</body>
</html>
";
$licenseCorrupt = "
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<title>error</title>
</head>
<body>
<h2 style='color:red;text-align:center'>错误的授权文件或源码</h2>
<p>该授权文件适用于{$version}版本。您使用的授权文件和源码不匹配,请使用最初的授权文件和源码。</p>
<p>电话:$mobile</p>
<p>QQ:$qq</p>
<p>Email:$email</p>
<p>网站:<a href='https://www.zdoo.com' target='_blank'>https://www.zdoo.com</a></p>
<br /> <br /> <br />
<h2 style='color:red;text-align:center'>Wrong license or code</h2>
<p>Your license does not match the Zdoo version you installed. Contact us to get support.</p>
<p>Email : philip@easycorp.ltd</p>
<p>Site : <a href='http://www.zdoo.co/' target='_blank'>http://www.zdoo.co/</a></p>
</body>
</html>
";
$expired = "
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<title>error</title>
</head>
<body>
<h2 style='color:red;text-align:center'>您使用的版本已经过期</h2>
<p>您当前使用的版本截止日期是{$expiredate},已经过期,请联系我们购买授权。</p>
<p>电话:$mobile</p>
<p>QQ:$qq</p>
<p>Email:$email</p>
<p>网站:<a href='https://www.zdoo.com' target='_blank'>https://www.zdoo.com</a></p>
<br /> <br /> <br />
<h2 style='color:red;text-align:center'>The edition has been out of date.</h2>
<p>The edition's end date is $expiredate, has been out of date now, please contact us to renew your license.</p>
<p>Email : philip@easycorp.ltd</p>
<p>Site : <a href='http://www.zdoo.co/' target='_blank'>http://www.zdoo.co/</a></p>
</body>
</html>
";
$server = "
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<title>error</title>
</head>
<body>
<h2 style='color:red;text-align:center'>错误的IP地址或MAC地址,或错误的域名访问</h2>
<p>软件授权的IP地址或MAC地址和当前系统的IP地址或MAC地址不一致,请使用最初授权的服务器。或你访问的域名与绑定的域名不一致。</p>
<p>电话:$mobile</p>
<p>QQ:$qq</p>
<p>Email:$email</p>
<p>网站:<a href='https://www.zdoo.com' target='_blank'>https://www.zdoo.com</a></p>
<br /> <br /> <br />
<h2 style='color:red;text-align:center'>Wrong ip address or mac address,,or error domain</h2>
<p>The ip or mac address or domain of current server is wrong. Please run zdoo on the server we licensed.</p>
<p>Email : philip@easycorp.ltd</p>
<p>Site : <a href='http://www.zdoo.co/' target='_blank'>http://www.zdoo.co/</a></p>
</body>
</html>
";
if($err_code == ION_LICENSE_EXPIRED)
{
echo $expired;
}
elseif($err_code == ION_LICENSE_SERVER_INVALID)
{
echo $server;
}
elseif($err_code == ION_LICENSE_NOT_FOUND)
{
echo $licenseNotFound;
}
elseif($err_code == ION_LICENSE_CORRUPT)
{
echo $licenseCorrupt;
}
echo $err_code;
exit;
}