Allhailfloki
Member
- Jan 6, 2021
- 55
- 12
- 8
Hello My friend, No I am using the version 5.4.4 nulled.Do you have the v5.5 nulled ?
Is the v5.5 nulled able to fix this?
Hello My friend, No I am using the version 5.4.4 nulled.Do you have the v5.5 nulled ?
/public_html/vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.phpcan anyone fix installation redirect? it always redirct to https://activeitzone.com/activation/
can nulled this cript?
Admin Panel is not working ?/public_html/vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
go in this patch and disable this
<?php
namespace MehediIitdu\CoreComponentRepository;
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();
}
}*/
}
i downloaded original script from Codecanyon and nulled it myselfAdmin Panel is not working ?
the script what i nulled is not facing this errorerror on Login admin : Error code: 500
Can you share the version you use?the script what i nulled is not facing this error
Thank you so much !!!!/public_html/vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
go in this patch and disable this
<?php
namespace MehediIitdu\CoreComponentRepository;
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();
}
}*/
}
I used last version 5.5. download from button aboveCan you share the version you use?
Please share your nulled scripti downloaded original script from Codecanyon and nulled it myself
and its working absolutely fine with all the addons
Is all addons are working perfectly ?It is solved just go to
/public_html/vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
and remove ttp://206.189.81.181/check_activation/
chmod -R 777 ./app will remove 500 error/public_html/vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
go in this patch and disable this
<?php
namespace MehediIitdu\CoreComponentRepository;
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();
}
}*/
}
<?php
namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;
class CoreComponentRepository
{
public static function instantiateShopRepository() {
$url = $_SERVER['SERVER_NAME'];
// $gate = "[URL]http://206.189.81.181/check_activation/[/URL]".$url;
$gate = $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('[URL='https://activeitzone.com/activation/%27)-']https://activeitzone.com/activation/')-[/URL]>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 = "[URL]https://activeitzone.com/activation/check/[/URL]".$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();
return redirect()->route('addons.index')->send();
}
}