• The default language of any content posted is English.
PixelDesk - Support Ticket System With OpenAI

PixelDesk - Support Ticket System With OpenAI 1.4 NULLED

raz0r

owner
Staff member
Administrator
Moderator
Messages
16,450
Reactions
62,925
raz0r submitted a new resource:

PixelDesk - Support Ticket System With OpenAI - Download PixelDesk Support Ticket System With OpenAI Codecanyon 49645289

View attachment 23959

PixelDesk NULLED, the next-generation AI-powered Support Ticket System designed for seamless and intuitive customer support management. With PixelDesk, customers can effortlessly create their accounts, submit support requests, and experience a sleek messaging interface.

This innovative solution is the pinnacle of customer support and management for Laravel applications. It efficiently tracks and resolves customer...

Read more about this resource...
 
  1. Open file in kode/app/Traits/InstallerManager.php
  2. In line 28 change return false; to return true;
  3. In line 33 change return false; to return true;
  4. In line 219 change return $this->_validatePurchaseKey($request->input(base64_decode('cHVyY2hhc2VfY29kZQ=='))); to return true;
  5. And in line 221 change return false; to return true;
  6. Done, I'm sure it will work as it should
 
  1. Open file in kode/app/Traits/InstallerManager.php
  2. In line 28 change return false; to return true;
  3. In line 33 change return false; to return true;
  4. In line 219 change return $this->_validatePurchaseKey($request->input(base64_decode('cHVyY2hhc2VfY29kZQ=='))); to return true;
  5. And in line 221 change return false; to return true;
  6. Done, I'm sure it will work as it should
Hi, doesn't work :(

1709219134174.png
 
en_EN: From line 216 to 275, delete and place this code below, so your code will be 123456789 and the user name can be anything
pt_BR: Da linha 216 a 275 exclua e coloque esse código abaixo, logo seu código será 123456789 e o nome do usuário pode ser qualquer um:


private function _envatoVerification(Request $request) : mixed {

if($this->_registerDomain()){
return $this->_validatePurchaseKey('sua_chave_de_compra_decodificada');
}
return true;

}

private function _registerDomain() : mixed {

try {
$ch = curl_init();
$postParams = [
base64_decode('buyer_domain') => url('/'),
base64_decode('software_id') => config('installer.software_id') ?? 'PXL0001=='
];

$data = http_build_query($postParams);
$postingData = base64_decode("aHR0cHM6Ly92ZXJpZnkua29kZXBpeGVsLmNvbQ==").'?'.$data;
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_URL, $postingData);
curl_setopt($ch, CURLOPT_TIMEOUT, 80);
$response = json_decode(curl_exec($ch));
curl_close($ch);
return $response->status;
} catch (\Exception $ex) {
return true;
}
}

private function _validatePurchaseKey(string $key) : mixed {

$params[base64_decode('purchased_code')] = $key;
$params[base64_decode('buyer_domain')] = url('/');

try {
$ch = curl_init();
$data = http_build_query($params);
$postingData = base64_decode("aHR0cHM6Ly92ZXJpZnkua29kZXBpeGVsLmNvbQ==")."?".$data;

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_URL, $postingData);
curl_setopt($ch, CURLOPT_TIMEOUT, 80);
$response = curl_exec($ch);
curl_close($ch);
$response = json_decode($response);
return $response->status;
} catch (\Exception $e) {
return true;
}

}
 
Top