Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

Dee28

Member
Apr 15, 2020
30
3
8
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.
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
 

Attachments

  • Screenshot_20220510-012556.png
    Screenshot_20220510-012556.png
    36.9 KB · Views: 5

Dee28

Member
Apr 15, 2020
30
3
8
Why is the version 6.1 script not loading up for installation like the other earlier versions?
 

Dee28

Member
Apr 15, 2020
30
3
8
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

Dee28

Member
Apr 15, 2020
30
3
8
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?
 

Oppung code

Active member
May 2, 2022
222
99
43
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:

metalsunny

Active member
May 6, 2022
608
196
43
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

Dee28

Member
Apr 15, 2020
30
3
8
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:

Oppung code

Active member
May 2, 2022
222
99
43
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
 

Dee28

Member
Apr 15, 2020
30
3
8
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!😍😍🔥🔥💯💃💃💃💃💃
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu