Null guide. Follow this to null and activate the script with any random key.
Step 1: Navigate to /your_directory/app/Http/Controllers
Step 2: Open the file PageController.php
Step 3: Change the function public function activate_product( Request $r ) with coder given below
PHP:
public function activate_product( Request $r ) {
$this->validate( $r, [ 'license' => 'required', 'domain' => 'required|url' ]);
$result = $this->check_license( $r->license, $r->domain );
//if LICENSE_VALID_AUTOUPDATE_ENABLED
if( $result != 'LICENSE_VALID_AUTOUPDATE_ENABLED' ) {
Options::update_option( 'license_key', $r->license );
return redirect( 'validate-license' )->with( 'message', 'Successfully validated. You can now continue using the product!' );
}
else {
return redirect('validate-license')->with('message', $result);
}
}
Alternatively download the file attached and replace it in the directory stated above