Templates™
Постоялец
- Регистрация
- 28 Мар 2014
- Сообщения
- 88
- Реакции
- 19
- Автор темы
- #1
Доброе утро всем . Ребят тут такая проблемка есть скрипт MyLicense-v3.1.4
Но что то не могу привязать лицензию к скрипту .
Вот файл prepare в какой нужно вводить код привязки лицензии по api.
Вот сам код привязки скрипта к лицензии .
Как только его тыкаю не чего не получается .
Но что то не могу привязать лицензию к скрипту .
Вот файл prepare в какой нужно вводить код привязки лицензии по api.
Вот сам код привязки скрипта к лицензии .
Как только его тыкаю не чего не получается .
Код:
<?php /**
* Unreal Security - PHPMyLicense Check Class v2.5.0
*
* PHP version > 5
*
* LICENSE: This source file is subject to version 3.01 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license/3_01.txt. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to license@php.net so we can mail you a copy immediately.
*
* @package PHPMyLicense
* @author Giovanne Oliveira <jhollsantos@gmail.com>
* @copyright 2009 - 2015 PHPMyLicense
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version v3.0.0
* @link https://phpmylicense.com */
$domain=$_SERVER['SERVER_NAME'];
$product="3";
$licenseServer = "http://lecense.csmonitoring.ru/api/";
$postvalue="domain=$domain&product=".urlencode($product);
$ch = curl_init();
curl_setopt($ch,CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $licenseServer);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postvalue);
$result= json_decode(curl_exec($ch), true);
curl_close($ch);
if($result['status'] != 200) {
$html = "<div align='center'>
<table width='100%' border='0' style='padding:15px; border-color:#F00; border-style:solid; background-color:#FF6C70; font-family:Tahoma, Geneva, sans-serif; font-size:22px; color:white;'>
<tr>
<td><b>U vas net prav na ispolzovanie etoy paneli!: <%returnmessage%> <br > Go tu support HPL.</b></td >
</tr>
</table>
</div>";
$search = '<%returnmessage%>';
$replace = $result['message'];
$html = str_replace($search, $replace, $html);
die( $html );
}
?>