Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

Server

Well-known member
Oct 8, 2018
894
1,836
100
for nulled just follow this small tutorial.

In order to make this install using install route you have to do this:

Go to \project\app\Providers\RouteServiceProvider.php

Edit file RouteServiceProvider.php

Go to line: 288

And change this:
Code:
->group(base_path('routes/web.php'));

To:

Code:
->group(base_path('routes/install.php'));

thank you:)
Give positive or negative feedback.
Bro not working.

1656376460393.png
 

sahir

Active member
May 18, 2022
115
75
28
to all who want to nulled active cms latest version, it is not possible directly nulled latest one.
but i will show another method.

* first install ActiveCMS_5.5.3 this version is nulled.
* after install open admin panel > System > Update, now directly apply update.zip file from latest version of activeCMS

* now go to installation directory /vendor/mehedi-iitdu/core-component-repository/src
* you will se there is a file named CoreComponentRepository.php, edit that file delete all codes and insert code bellow

Code:
<?php

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

class CoreComponentRepository
{
    public static function instantiateShopRepository() {
    }

    protected static function serializeObjectResponse($zn) {
    }

    protected static function finalizeRepository($rn) {
    }

    public static function initializeCache() {
    }

    public static function finalizeCache($addon){
    }
}

all done :) enjoy latest nulled version of ActiveCMS
thank you so much
 
  • Love
Reactions: m1s3rys1gn4l

shopajkal

New member
Aug 1, 2018
1
1
3
for nulled just follow this small tutorial.

In order to make this install using install route you have to do this:

Go to \project\app\Providers\RouteServiceProvider.php

Edit file RouteServiceProvider.php

Go to line: 288

And change this:
Code:
->group(base_path('routes/web.php'));

To:

Code:
->group(base_path('routes/install.php'));

thank you:)
Give positive or negative feedback.
While using install wizard it redirect to activeecom website to active . What to do?
 
  • Like
Reactions: Emprecity

CVODIN

Member
Aug 7, 2020
31
12
8
Babiato Lovers
t.co
to all who want to nulled active cms latest version, it is not possible directly nulled latest one.
but i will show another method.

* first install ActiveCMS_5.5.3 this version is nulled.
* after install open admin panel > System > Update, now directly apply update.zip file from latest version of activeCMS

* now go to installation directory /vendor/mehedi-iitdu/core-component-repository/src
* you will se there is a file named CoreComponentRepository.php, edit that file delete all codes and insert code bellow

Code:
<?php

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

class CoreComponentRepository
{
    public static function instantiateShopRepository() {
    }

    protected static function serializeObjectResponse($zn) {
    }

    protected static function finalizeRepository($rn) {
    }

    public static function initializeCache() {
    }

    public static function finalizeCache($addon){
    }
}

all done :) enjoy latest nulled version of ActiveCMS
this is method work for cms 6.1, thank brother..
 

pratikwwe

New member
Apr 19, 2021
11
0
1
ok then look for the option
MultiPHPini EDITOR
then select your domain and change those value
Brother it is showing 100% but not upload at last saying failed to upload I changed all the values according to your given value then also error persist plzz help my server status has all tick but then also eror coming
 

Attachments

  • Screenshot_20220701_084103.jpg
    Screenshot_20220701_084103.jpg
    162.3 KB · Views: 31
  • Screenshot_20220701_084245.jpg
    Screenshot_20220701_084245.jpg
    225.6 KB · Views: 31
  • Screenshot_20220701_084241.jpg
    Screenshot_20220701_084241.jpg
    210.1 KB · Views: 32
  • Screenshot_20220701_084238.jpg
    Screenshot_20220701_084238.jpg
    265.8 KB · Views: 32
  • Screenshot_20220701_084234.jpg
    Screenshot_20220701_084234.jpg
    257.2 KB · Views: 32

pratikwwe

New member
Apr 19, 2021
11
0
1
Brother it is showing 100% but not upload at last saying failed to upload I changed all the values according to your given value then also error persist plzz help my server status has all tick but then also eror coming
Brother showing "UPLOAD STALLED FOR 30 SECONDS ,ABORTING"
 

julian009

New member
Jun 25, 2022
3
0
1
Plas how do i fix internal service error 500 on my active ecommerce cms with out deleting the entire thing
 

fottox

New member
May 30, 2022
9
5
3
Need Active eCommerce CMS V6.1.2 Nulled
any one help me for this?
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();
}
}
 

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