| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/wit-crm/modules/ma/controllers/ |
Upload File : |
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
require_once __DIR__ .'/../libraries/gtsslib.php';
/**
* GTSSolution verify
*/
class Gtsverify extends AdminController{
public function __construct(){
parent::__construct();
}
/**
* index
* @return void
*/
public function index(){
show_404();
}
/**
* activate
* @return json
*/
public function activate(){
$license_code = strip_tags(trim($_POST["purchase_key"]));
$client_name = strip_tags(trim($_POST["username"]));
$api = new MarketingAutomationLic();
$activate_response = $api->activate_license($license_code, $client_name);
$msg = '';
if(empty($activate_response)){
$msg = 'Server is unavailable.';
}else{
$msg = $activate_response['message'];
}
$res = array();
$res['status'] = $activate_response['status'];
$res['message'] = $msg;
if ($res['status']) {
$res['original_url']= $this->input->post('original_url');
}
echo json_encode($res);
}
}