Babuthecodes
Active member
Haha found a solution:
Go to /wp-content/plugins/affiliate-egg/application/admin/LicConfig.php
Edit this code:
PHP:
public function licFormat($value)
{
if (preg_match('/[^0-9a-zA-Z_~\-]/', $value))
return false;
if (strlen($value) !== 32 && !preg_match('/^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$/', $value))
return false;
return true;
}
public function activatingLicense($value)
{
return true;
$response = AffiliateEgg::apiRequest(array('method' => 'POST', 'timeout' => 15, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => array('cmd' => 'activate', 'key' => $value, 'd' => parse_url(site_url(), PHP_URL_HOST), 'p' => AffiliateEgg::product_id, 'v' => AffiliateEgg::version()), 'cookies' => array()));
if (!$response)
return false;
$result = json_decode(\wp_remote_retrieve_body($response), true);
if ($result && !empty($result['status']) && $result['status'] === 'valid')
return true;
else
return false;
}
Replace with this code:
Code:
public function licFormat($value)
{
return true;
}
public function activatingLicense($value)
{
return true;
}
Then Key in any activation key:
Final Results:


