Active eCommerce CMS By ActiveITzone 23471405

Active eCommerce CMS By ActiveITzone 23471405 v9.8.1

No permission to download

Dee28

Member
Apr 15, 2020
30
3
8
I have uploaded version 6.1 but its not loading up to run installation. I then edited the .env file with my database credentials, uploaded the demo SQL file that was when it came up. But I tried logging in to the admin with the demo credentials since it was the demo SQL I uploaded but I'm getting this error "something went wrong" error 500. Please help me. What can I do?
 

sam762

New member
May 3, 2022
28
3
3
I have uploaded version 6.1 but its not loading up to run installation. I then edited the .env file with my database credentials, uploaded the demo SQL file that was when it came up. But I tried logging in to the admin with the demo credentials since it was the demo SQL I uploaded but I'm getting this error "something went wrong" error 500. Please help me. What can I do?
edit the .env file and change debug to "true"
then open the url again to know that it the problem
 

fujikartikamina

New member
May 8, 2022
7
0
1
Can anyone help me to convey to the developer to make a Delivery API such as installing the shipper.id shipping fee API and Midtrans Payment Gateway
 

metalsunny

Active member
May 6, 2022
608
196
43
Nulled script
I got you. That is the problem. To solve this issue download the untouch version of 5.7 then upload and unzip it to your server director then null it by yourself by by copying and replacing it with null code for ver 5.7 to vendor\mehedi-iitdu\core-component-repository\src\CoreComponentRepository.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) {
}
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();
}
}

Note if you use this very code for 6.1 u will get error. Its for 5.7 only. when you are done and successfully installed and become a seller is working. You can then go to your 5.7 admin panel. Then click update. Make sure you have unzip 6.1 folder to ur laptop or phone. Then upload the update zip file only and click update. When u try to login to admin panel it will request for a purchase code then go to the same patch above and replace the code with 6.1 code below
<?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 } }
Then refresh the page on your browser the purchase code request will dissapear . Everything will work fine. If you need the 5.7 untouch version let me know in Case you don't have it.
 
Last edited:

Dee28

Member
Apr 15, 2020
30
3
8
Nulled script
I always get the error whenever I click the "Become a seller" button as shown on the screenshot below on version 6.1, how do I resolve this? I'm using nulled version 6.1
I got you. That is the problem. To solve this issue download the untouch version of 5.7 then upload and unzip it to your server director then null it by yourself by by copying and replacing it with null code for ver 5.7 to vendor\mehedi-iitdu\core-component-repository\src\CoreComponentRepository.php



Note if you use this very code for 6.1 u will get error. Its for 5.7 only. when you are done and successfully installed and become a seller is working. You can then go to your 5.7 admin panel. Then click update. Make sure you have unzip 6.1 folder to ur laptop or phone. Then upload the update zip file only and click update. When u try to login to admin panel it will request for a purchase code then go to the same patch above and replace the code with 6.1 code below

Then refresh the page on your browser the purchase code request will dissapear . Everything will work fine. If you need the 5.7 untouch version let me know in Case you don't have it.
please i need the 5.7 untouch version. Help me here so i can download
 

Attachments

  • Screenshot_20220508-225145.png
    Screenshot_20220508-225145.png
    85.1 KB · Views: 3

metalsunny

Active member
May 6, 2022
608
196
43
I always get the error whenever I click the "Become a seller" button as shown on the screenshot below on version 6.1, how do I resolve this? I'm using nulled version 6.1

please i need the 5.7 untouch version. Help me here so i can download
ok just a moment let me upload it.
 

metalsunny

Active member
May 6, 2022
608
196
43
As you can see am on 6.1 and everything is working fine. Just follow the steps i wrote above and all your problems will be solved.
 

Attachments

  • Screenshot_20220509-215113.png
    Screenshot_20220509-215113.png
    62.8 KB · Views: 7
  • Screenshot_20220509-215158.png
    Screenshot_20220509-215158.png
    208 KB · Views: 7

metalsunny

Active member
May 6, 2022
608
196
43
Active ecommerce 5.5.7 Untouched

Follow this steps here to install properly from 5.7 and upgrade properly to 6.1
Post in thread 'Active eCommerce CMS' https://babiato.tech/threads/active-ecommerce-cms.8917/post-866000

Pls note if you already have a store with a lot of items live and you don't want to loose them and still want to upgrade to 6.1 with everything working fine. There is a work around. Just keep hitting the likes button of this comment. If i get 30 likes i will do a video and share with you so you can know what to do.
 
Last edited:

Oppung code

Active member
May 2, 2022
222
99
43
I got you. That is the problem. To solve this issue download the untouch version of 5.7 then upload and unzip it to your server director then null it by yourself by by copying and replacing it with null code for ver 5.7 to vendor\mehedi-iitdu\core-component-repository\src\CoreComponentRepository.php



Note if you use this very code for 6.1 u will get error. Its for 5.7 only. when you are done and successfully installed and become a seller is working. You can then go to your 5.7 admin panel. Then click update. Make sure you have unzip 6.1 folder to ur laptop or phone. Then upload the update zip file only and click update. When u try to login to admin panel it will request for a purchase code then go to the same patch above and replace the code with 6.1 code below

Then refresh the page on your browser the purchase code request will dissapear . Everything will work fine. If you need the 5.7 untouch version let me know in Case you don't have it.
thanks for the method, but can you send back the second script because I failed to activate version 6.1
thanks
 

Dee28

Member
Apr 15, 2020
30
3
8
I got you. That is the problem. To solve this issue download the untouch version of 5.7 then upload and unzip it to your server director then null it by yourself by by copying and replacing it with null code for ver 5.7 to vendor\mehedi-iitdu\core-component-repository\src\CoreComponentRepository.php



Note if you use this very code for 6.1 u will get error. Its for 5.7 only. when you are done and successfully installed and become a seller is working. You can then go to your 5.7 admin panel. Then click update. Make sure you have unzip 6.1 folder to ur laptop or phone. Then upload the update zip file only and click update. When u try to login to admin panel it will request for a purchase code then go to the same patch above and replace the code with 6.1 code below

Then refresh the page on your browser the purchase code request will dissapear . Everything will work fine. If you need the 5.7 untouch version let me know in Case you don't have it.
please the null code you gave for v5.7 is not working (I had to try another code which worked on v5.7) and the code for v6.1 is not understood as well. i followed the procedure above after unzipping the v6.1 folder my website just couldnt load up anymore
 

Oppung code

Active member
May 2, 2022
222
99
43
please the null code you gave for v5.7 is not working (I had to try another code which worked on v5.7) and the code for v6.1 is not understood as well. i followed the procedure above after unzipping the v6.1 folder my website just couldnt load up anymore
Hello Broo,
I just installed it and it worked,
first download first V 5.5.7 untouched. after that upload it on your server and don't forget to edit the script according to the instructions above.
after that download V 6.1 then update via admin panel.
 
  • Like
Reactions: Dee28

Dee28

Member
Apr 15, 2020
30
3
8
i would love to install 6.1 without upgrading but unfortunately the v6.1 uploaded here doesnt work after uploading script and unziping it, it doesnt load up for installation, does anyone have a solution on that? please help
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu