Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

metalsunny

Active member
May 6, 2022
608
196
43
yes you right , but i say when select a 1 more quantity product from product page price not update, but demo page see work fine .
2022-08-05_123055.jpg
You are right. Am having same issue on fresh installation 6.1.4 but it works fine on 5.5.7
 

NizamUddin

New member
Aug 13, 2022
11
3
3
How to activate slider

and how to download invoice.

invoice is not download. loading and loading.....
nothing happen

then i have to route and cache clear then again work. but not download invoice
 

noobzter003

Member
Nov 17, 2019
90
23
8
How to activate slider

and how to download invoice.

invoice is not download. loading and loading.....
nothing happen

then i have to route and cache clear then again work. but not download invoice
to activate slider Website Setup/Pages/Home pages edit the Home pages
 

sakhmart

Well-known member
Null Master
Trusted Uploader
Banned User
May 26, 2022
314
264
70
Pakistan
finally i have resolved issue in active ecommerce 6.1.5
if anyone facing error slow speed of flutter app i resolved it
if anyone facing percentage badge error i resolved it
 
  • Like
Reactions: noobzter003

rudyere

New member
Apr 26, 2021
8
3
3
finally i have resolved issue in active ecommerce 6.1.5
if anyone facing error slow speed of flutter app i resolved it
if anyone facing percentage badge error i resolved it
how you do ? i facing slow speed on app and the badge,
can tell how resolve this ?
 

noobzter003

Member
Nov 17, 2019
90
23
8
anyone????
i think your cms not nulled properly.
try this step


Or

this
* first install ActiveCMS_6.1.4 this version.

* go to directory /vendor/mehedi-iitdu/core-component-repository/src
* 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() {
$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();
}
}

after that update to cms v6.1.5

* then go to directory /vendor/mehedi-iitdu/core-component-repository/src to nulled it back.
* 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() {
$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();
}
}
 
  • Like
Reactions: olalavui

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