Reacted by:
The script is complete, wait for the nulled time to workthe download only contains the update file not the complete script
sir avery thing working like all file template , ai chat , ai code nulled script?Awaiting for approval Brothers
View attachment 13660
Good effort, but It's not a " nulled" version. To make nulled version you need grab with license data secret file (in all bylancer products)Awaiting for approval Brothers
View attachment 13660
if (isset($_POST['valid_purchase_setting'])) {
// Set API Key
$code = $_POST['purchase_key'];
$buyer_email = (isset($_POST['buyer_email']))? validate_input($_POST['buyer_email']) : "";
$installing_version = 'pro';
$url = "https://bylancer.com/api/api.php?verify-purchase=" . $code . "&version=" . $installing_version . "&site_url=". $config['site_url']."&email=" . $buyer_email;
// Open cURL channel
$ch = curl_init();
// Set cURL options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//Set the user agent
$agent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)';
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
// Decode returned JSON
$output = json_decode(curl_exec($ch), true);
// Close Channel
curl_close($ch);
if ($output['success']) {
if(isset($config['quickad_secret_file']) && $config['quickad_secret_file'] != ""){
$fileName = $config['quickad_secret_file'];
}else{
$fileName = get_random_string();
}
if(isset($config['quickad_user_secret_file']) && $config['quickad_user_secret_file'] != ""){
$userFileName = $config['quickad_user_secret_file'];
}else{
$userFileName = get_random_string();
}
file_put_contents( $fileName . '.php', $output['data']);
file_put_contents( '../php/'.$userFileName . '.php', $output['user_data']);
$success = true;
update_option("quickad_secret_file",$fileName);
update_option("quickad_user_secret_file",$userFileName);
update_option("purchase_key", $_POST['purchase_key']);
update_option("purchase_type", $output['purchase_type']);
$status = "success";
$message = __("Purchase code verified successfully");
} else {
$status = "error";
$message = $output['error'];
}
}
you need an installed backup so that there is a file that is downloaded curlGood effort, but It's not a " nulled" version. To make nulled version you need grab with license data secret file (in all bylancer products)
PHP:if (isset($_POST['valid_purchase_setting'])) { // Set API Key $code = $_POST['purchase_key']; $buyer_email = (isset($_POST['buyer_email']))? validate_input($_POST['buyer_email']) : ""; $installing_version = 'pro'; $url = "https://bylancer.com/api/api.php?verify-purchase=" . $code . "&version=" . $installing_version . "&site_url=". $config['site_url']."&email=" . $buyer_email; // Open cURL channel $ch = curl_init(); // Set cURL options curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set the user agent $agent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)'; curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false); // Decode returned JSON $output = json_decode(curl_exec($ch), true); // Close Channel curl_close($ch); if ($output['success']) { if(isset($config['quickad_secret_file']) && $config['quickad_secret_file'] != ""){ $fileName = $config['quickad_secret_file']; }else{ $fileName = get_random_string(); } if(isset($config['quickad_user_secret_file']) && $config['quickad_user_secret_file'] != ""){ $userFileName = $config['quickad_user_secret_file']; }else{ $userFileName = get_random_string(); } file_put_contents( $fileName . '.php', $output['data']); file_put_contents( '../php/'.$userFileName . '.php', $output['user_data']); $success = true; update_option("quickad_secret_file",$fileName); update_option("quickad_user_secret_file",$userFileName); update_option("purchase_key", $_POST['purchase_key']); update_option("purchase_type", $output['purchase_type']); $status = "success"; $message = __("Purchase code verified successfully"); } else { $status = "error"; $message = $output['error']; } }