jahid01711
New member
- Jun 8, 2020
- 7
- 1
- 3
yes i am facing it as well and many other bugs as well.Izyco payment option still shows even if it's turned off. Anyone has the same problem?
yes i am facing it as well and many other bugs as well.Izyco payment option still shows even if it's turned off. Anyone has the same problem?
plz anyone have this? shareI need Active eCommerce Club Point Add-on v1.4
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 ??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.
replace and use this: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 ??
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 menureplace 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';
});
}
}
}
}
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 helpIs the account verified via email?
Clean Version Not Nulled
version: 6.1 (28/04/2022)
Improvements & Bug solving
- Important Bug Fixing
Thank yoututon012 updated Active eCommerce CMS with a new update entry:
V6.1
Read the rest of this update entry...
<?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
}
}