Actually this part of code is not responsible for ADDON instalation. It is probably for fresh new install.To pass the license you have to replace this line of code:
Address: application/controllers/install.php
line 54
$validation_response = $this->crud_model->curl_request($purchase_code);
you replace it with this
$validation_response = TRUE;
To install addons in:
application/models/Addon_model.php
change the line:
29
if(!$status_response){
in to the:
if($status_response){
(just remove exclamation mark).
Cheers!
Last edited: