Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

jahid01711

New member
Jun 8, 2020
7
1
3
Same. I'm at 5.5.6. It's so frustrating. The store location is very important for the delivery system to work.

Milords! Please look into it. It's too complicated for my little brain.
bro can you share the 5.5.5 or 5.5.6 nullled working fine without having any admin login http 500 error problem along with all working addons ??
 

DAVIDGREEN222

New member
Oct 18, 2022
0
0
0
bro can you share the 5.5.5 or 5.5.6 nullled working fine without having any admin login http 500 error problem along with all working addons ??
replace and use this:

Location: "vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository"


<?php
namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
}
}
}
 
Last edited:
  • Like
Reactions: Gaeius

jahid01711

New member
Jun 8, 2020
7
1
3
replace and use this:

Location: "vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository"


<?php
namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
}
}
}
thanks, it's working fine, I have found another error here in the database where i have to manually edit the status to 1 to add or show in the address entering the menu Screenshot (57).png .
 

Attachments

  • Screenshot (58).png
    Screenshot (58).png
    150 KB · Views: 6
  • Like
Reactions: dukemr9

jahid01711

New member
Jun 8, 2020
7
1
3
Is the account verified via email?
no, I haven't set the SMTP info for email verification just created an account and tested things and asked my doubts here. thanks for your help

and I have manually updated the status of cities, country states to 1 and made them active using query using php_my_admin to get all the options in the address input dialogue box . should I leave it as it was before ??
 

Monalee

Active member
May 2, 2022
155
175
43
This totally feels like travelling back in time😅... Welcome back Babiato 😍


We are here for active eCommerce 6.1, I came from the future😂
 
  • Like
Reactions: arenious

alfonsobp

Member
Nov 29, 2019
39
15
8
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
    }
}
 

metalsunny

Active member
May 6, 2022
608
196
43
I have a fresh problem with ver 6.1. After successful update. I am getting this error which deactive my addons by itself saying Reinstall using valid purchase code. Any solution to this trigger ?
 
  • Like
Reactions: alfonsobp

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