joesc
New member
- Jun 10, 2022
- 3
- 0
- 1
hi bro, do you have the demo data of the site?
hi bro, do you have the demo data of the site?
link not working plz reupload![]()
Easyupload.io - Upload Files and Share Them Easily
Uplaod files easily and share them with your friends and colleagues. File upload solution for everyone. Upload big files and get a link to share effortlesly.easyupload.io
seems like the only way to get it is buy the script and contact the developer to get it manually.link not working plz reupload
Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this 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) {
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);
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 = 0;
$addon->save();
flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();
return redirect()->route('addons.index')->send();
}
}
i wasn't able to login admin panel. it will redirect me to activeitzone product activation page. anyone can help me?
Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this 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) {
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);
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 = 0;
$addon->save();
flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();
return redirect()->route('addons.index')->send();
}
}
Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this codethanks mate for sharing the updated version..
is it nulled?????
<?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) {
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);
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 = 0;
$addon->save();
flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();
return redirect()->route('addons.index')->send();
}
}
thanks mate for this help....Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this code
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) { 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); 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 = 0; $addon->save(); flash('Please reinstall '.$addon->name.' using valid purchase code')->warning(); return redirect()->route('addons.index')->send(); } }
Version : 1.6 (15/06/2022)
- Introducing POS system
HOW TO NULL THE SCRIPT
Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this code
PHP:<?php namespace MehediIitdu\CoreComponentRepository; use App\Models\Addon; use Cache; class CoreComponentRepository { public static function instantiateShopRepository() { // $url = $_SERVER['SERVER_NAME']; // $gate =...
Nope...just need to replace the bad with good that's all.Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this code
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) { 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); 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 = 0; $addon->save(); flash('Please reinstall '.$addon->name.' using valid purchase code')->warning(); return redirect()->route('addons.index')->send(); } }
Hi bro, can re-up please? the file came badly compressedisaacongoma submitted a new resource:
The Shop - PWA eCommerce cms - Download The Shop - PWA eCommerce cms Nulled Free CodeCanyon 34858541
Read more about this resource...
Yup same HereHi bro, can re-up please? the file came badly compressed