Now see bro regarding ur admin login there is a prob in another part i didn't face it need to checkI tried deleting the "identify matrix error" and it worked, but it didn't make me successful in logging in, failed to login as admin.. is there any suggestion sir to change another script where I can login later
I'll share it here, sir..Anyone has delivery boy 2.0 plz send
there sir, the message is the user is not found.. but to login on the web there is no problem.. in this app which is not in sync with the webNow see bro regarding ur admin login there is a prob in another part i didn't face it need to check
Anyone has delivery boy 2.0 plz send
plz chk inbox msg i will help u solve the prob
This is Delivery Boy 2.0
plz if anyone have latest version addons plz do shareAnyone with refund addon latest version, club point v1.4 , other addons latest versions plzzzxz send here
version 1.7 should work fineaffiliate addon is not working in cms5.5.5
Can you please share the cms5.5.5 version please .affiliate addon is not working in cms5.5.5
not working, shows default error page, error code 500Here tution
Try this one.anyone has pos addon 1.6 please
Does anyone have 5.5.5 Nulled? I updated and lost everything, from version 5.5.4
<?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();
}
}