• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone V8.7

No permission to download
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
 
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
 
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
 
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
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 ?
 
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
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock