[USERS= ]
How to null the version 1.7
Step 01
Open the file InstallerService.php, located in ..\app\Services\
Go to the line #82, locate the function licenseCodeChecker (Try-Catch lines) between #82 to #101
From:
// try {<br>
// $payload = [<br>
// 'license_code' => $array['license_key'],<br>
// 'product_id' => config('product.itemId'),<br>
// 'domain' => AppLibrary::domain(url('')),<br>
// 'purpose' => 'install',<br>
// 'version' => config('product.version')<br>
// ];<br>
// if (isset($array['purpose'])) {<br>
// $payload['purpose'] = $array['purpose'];<br>
// }<br>
// $apiUrl = config('product.licenseCodeCheckerUrl');<br>
// $response = Http:

ost($apiUrl . '/api/check-installer-license', $payload);<br>
// return AppLibrary::licenseApiResponse($response);<br>
// } catch (\Exception $exception) {<br>
// return (object)[<br>
// 'status' => false,<br>
// 'message' => $exception->getMessage()<br>
// ];<br>
// }
And change it to...
Code:
return (object)
[<br>
'status' => true,<br>
'message' => 'verified'<br>
];
[/USERS] Content of this hidden block can only be seen by members of: Administrative