• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone V8.7

No permission to download
Why is the version 6.1 script not loading up for installation like the other earlier versions?
 
I think you follow the above method by updating from version 5 to 6.
so what kind of error is there get, can you share a screenshot of your error
I do not want update from version 5 to 6. I'm doing a fresh installation of version 6 and I expect the installation page should just load up without giving an error according to the screenshot below. but it's not loading to install the script. Here is the error page below
 

Attachments

  • Screenshot_20220510-012556.png
    Screenshot_20220510-012556.png
    36.9 KB · Views: 4
Hello Broo,
I just installed it and it worked,
first download first V 5.5.7 untouched. after that upload it on your server and don't forget to edit the script according to the instructions above.
after that download V 6.1 then update via admin panel.
Thank you bro, I have finally updated from version 5 to 6.1 but when i try logging to the admin it request for activation code. what should i do now?
 
Thank you bro, I have finally updated from version 5 to 6.1 but when i try logging to the admin it request for activation code. what should i do now?
now it's version 6.1 but asking for activation code?

Edit file dir:

vendor ---> mehedi-iitdu --> core-component-repository ---> src ---> CoreComponentRepository.php
PHP:
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
    public static function instantiateShopRepository() {
        $url = $_SERVER['SERVER_NAME'];
        $gate = "http://206.189.81.181/check_activation/".$url;
        $rn = self::serializeObjectResponse($gate);
        self::finalizeRepository($rn);
    }

    protected static function serializeObjectResponse($zn) {
        $stream = curl_init();
        curl_setopt($stream, CURLOPT_URL, $zn);
        curl_setopt($stream, CURLOPT_HEADER, 0);
        curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($stream, CURLOPT_POST, 1);
        $rn = curl_exec($stream);
        curl_close($stream);
        return $rn;
    }

    protected static function finalizeRepository($rn) {
        if($rn == "good" && env('DEMO_MODE') != 'On') { #Null Active eCommerce CMS, change bad to "good"
            return redirect('https://activeitzone.com/activation/')->send();
        }
    }

    public static function initializeCache() {
        foreach(Addon::all() as $addon){
            if ($addon->purchase_code == null) {
                self::finalizeCache($addon);
            }
    
            if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
                try {
                    $gate = "https://activeitzone.com/activation/check/".$addon->unique_identifier."/".$addon->purchase_code;
        
                    $stream = curl_init();
                    curl_setopt($stream, CURLOPT_URL, $gate);
                    curl_setopt($stream, CURLOPT_HEADER, 0);
                    curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
                    $rn = curl_exec($stream);
                    curl_close($stream);
        
                    if($rn == 'no') {
                        self::finalizeCache($addon);
                    }
                    else{
                        Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
                            return 'yes';
                        });
                    }
                } catch (\Exception $e) {
        
                }
            }
        }
    }

    public static function finalizeCache($addon){
        $addon->activated = 0;
        $addon->save();

        #flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();   #Edit this addons null
        #return redirect()->route('addons.index')->send();                                                     #Edit this addons null
    }
}
 
Last edited:
  • Like
Reactions: akramalsabri
after unzipping the update folder of 6.1, it fails to run update. See the screenshot of what I get after unzipping the update folder of 6.1 below. I expect it will display the update page but no
Update it via admin panel. Simple instruction. Unzip 6.1 folder. Go to ur admin panel and click update then upload update zip and update it. After that go and copy code 6.1 and replace and overwrite it according to tutorial above. Refresh your browser and activation key request for 6.1 will disappear
 
  • Like
Reactions: techmainfest
Update it via admin panel. Simple instruction. Unzip 6.1 folder. Go to ur admin panel and click update then upload update zip and update it. After that go and copy code 6.1 and replace and overwrite it according to tutorial above. Refresh your browser and activation key request for 6.1 will disappear
I understand, that's what I did. This code here👇👇👇 right


<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {
$url = $_SERVER['SERVER_NAME'];
$gate = "http://206.189.81.181/check_activation/".$url;
$rn = self::serializeObjectResponse($gate);
self::finalizeRepository($rn);
}

protected static function serializeObjectResponse($zn) {
$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $zn);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($stream, CURLOPT_POST, 1);
$rn = curl_exec($stream);
curl_close($stream);
return $rn;
}

protected static function finalizeRepository($rn) {
if($rn == "good" && env('DEMO_MODE') != 'On') { #Null Active eCommerce CMS, change bad to "good"
return redirect('https://activeitzone.com/activation/')->send();
}
}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if ($addon->purchase_code == null) {
self::finalizeCache($addon);
}

if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
try {
$gate = "https://activeitzone.com/activation/check/".$addon->unique_identifier."/".$addon->purchase_code;

$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $gate);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
$rn = curl_exec($stream);
curl_close($stream);

if($rn == 'no') {
self::finalizeCache($addon);
}
else{
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
} catch (\Exception $e) {

}
}
}
}

public static function finalizeCache($addon){
$addon->activated = 0;
$addon->save();

#flash('Please reinstall '.$addon->name.' using valid purchase code')->warning(); #Edit this addons null
#return redirect()->route('addons.index')->send(); #Edit this addons null
}
}
 
Last edited:
Update it via admin panel. Simple instruction. Unzip 6.1 folder. Go to ur admin panel and click update then upload update zip and update it. After that go and copy code 6.1 and replace and overwrite it according to tutorial above. Refresh your browser and activation key request for 6.1 will disappear
hello bro, btw how to become a seller.
I didn't find a way.
thanks
 
I understand, that's what I did. This code here👇👇👇 right


<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {
$url = $_SERVER['SERVER_NAME'];
$gate = "http://206.189.81.181/check_activation/".$url;
$rn = self::serializeObjectResponse($gate);
self::finalizeRepository($rn);
}

protected static function serializeObjectResponse($zn) {
$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $zn);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($stream, CURLOPT_POST, 1);
$rn = curl_exec($stream);
curl_close($stream);
return $rn;
}

protected static function finalizeRepository($rn) {
if($rn == "good" && env('DEMO_MODE') != 'On') { #Null Active eCommerce CMS, change bad to "good"
return redirect('https://activeitzone.com/activation/')->send();
}
}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if ($addon->purchase_code == null) {
self::finalizeCache($addon);
}

if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
try {
$gate = "https://activeitzone.com/activation/check/".$addon->unique_identifier."/".$addon->purchase_code;

$stream = curl_init();
curl_setopt($stream, CURLOPT_URL, $gate);
curl_setopt($stream, CURLOPT_HEADER, 0);
curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
$rn = curl_exec($stream);
curl_close($stream);

if($rn == 'no') {
self::finalizeCache($addon);
}
else{
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
} catch (\Exception $e) {

}
}
}
}

public static function finalizeCache($addon){
$addon->activated = 0;
$addon->save();

#flash('Please reinstall '.$addon->name.' using valid purchase code')->warning(); #Edit this addons null
#return redirect()->route('addons.index')->send(); #Edit this addons null

Thanks alot, problem solved!😍😍🔥🔥💯💃💃💃💃💃
 
now it's version 6.1 but asking for activation code?

Edit file dir:

vendor ---> mehedi-iitdu --> core-component-repository ---> src ---> CoreComponentRepository.php
PHP:
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
    public static function instantiateShopRepository() {
        $url = $_SERVER['SERVER_NAME'];
        $gate = "http://206.189.81.181/check_activation/".$url;
        $rn = self::serializeObjectResponse($gate);
        self::finalizeRepository($rn);
    }

    protected static function serializeObjectResponse($zn) {
        $stream = curl_init();
        curl_setopt($stream, CURLOPT_URL, $zn);
        curl_setopt($stream, CURLOPT_HEADER, 0);
        curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($stream, CURLOPT_POST, 1);
        $rn = curl_exec($stream);
        curl_close($stream);
        return $rn;
    }

    protected static function finalizeRepository($rn) {
        if($rn == "good" && env('DEMO_MODE') != 'On') { #Null Active eCommerce CMS, change bad to "good"
            return redirect('https://activeitzone.com/activation/')->send();
        }
    }

    public static function initializeCache() {
        foreach(Addon::all() as $addon){
            if ($addon->purchase_code == null) {
                self::finalizeCache($addon);
            }
   
            if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
                try {
                    $gate = "https://activeitzone.com/activation/check/".$addon->unique_identifier."/".$addon->purchase_code;
       
                    $stream = curl_init();
                    curl_setopt($stream, CURLOPT_URL, $gate);
                    curl_setopt($stream, CURLOPT_HEADER, 0);
                    curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
                    $rn = curl_exec($stream);
                    curl_close($stream);
       
                    if($rn == 'no') {
                        self::finalizeCache($addon);
                    }
                    else{
                        Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
                            return 'yes';
                        });
                    }
                } catch (\Exception $e) {
       
                }
            }
        }
    }

    public static function finalizeCache($addon){
        $addon->activated = 0;
        $addon->save();

        #flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();   #Edit this addons null
        #return redirect()->route('addons.index')->send();                                                     #Edit this addons null
    }
}
can you share how i can i bypass addon activation ?
its asking me for reinstalling addon
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock