div.tilt2
Member
- May 4, 2021
- 65
- 48
- 18
I can null it for you if you want
Can you share the way to cancel, I can understand it, you would do us all a favor, thanks in advance.I can null it for you if you want![]()
I haven't checked the file yet but let me see what I can do.Can you share the way to cancel, I can understand it, you would do us all a favor, thanks in advance.
I haven't checked the file yet but let me see what I can do.
EDIT: Here's what I am doing to bypass the activation of any source file I tried from babiato so far.
First, I'll look for the installation pages file (refer to the img below).
![]()
Then I will look for the specific page (step) that is designated for the activation page.
Activation Page:
![]()
Activation Page Source File:
![]()
Lastly, you can do whatever you want to do to bypass the activation page. You can either remove line 7 to 14 altogether, set up a pre-defined value for the purchase code and email field, or whatever you want to as long as you can proceed to the next step without inputting the purchase code and email. And thats it.
Have you managed to bypass it? Haven't checked the whole source fileIt's just views. Something must be done in the controllers
Well, this might be the answer to why you can't make it work @TheJohnClone214. I've never encountered any system that implements a process like this one yetthis scripts downloads additional files during installation & not possible without original license code. so whatever you do script will not work!
possible if someone have installed the script using original license & find those additional files & put into nulled version!
ok, hope you have time to check the codeWell, this might be the answer to why you can't make it work @TheJohnClone214. I've never encountered any system that implements a process like this one yet
public function download($code, $email, $hash, $version)
{
try {
$client = new Client(['base_uri' => config('app.api.products.base_url')]);
$response = $client->request('POST', 'products/download', [
'form_params' => [
'code' => $code,
'email' => $email,
'domain' => request()->getHost(),
'hash' => $hash,
'version' => $version
],
]);
return $response->getHeaderLine('Content-Type') == 'application/zip'
? (object) ['success' => TRUE, 'message' => $response->getHeaderLine('Security-Hash'), 'content' => $response->getBody()->getContents()]
: json_decode($response->getBody()->getContents());
} catch (\Throwable $e) {
return (object) ['success' => FALSE, 'message' => $e->getMessage()];
}
}
}