Bypass all resource restrictions, passwords, and keys? Read here!
public static function initializeCache() {
foreach(Addon::all() as $addon){
if ($addon->purchase_code == null) {
self::finalizeCache($addon);
}
Cache::rememberForever($addon->unique_identifier.'-purchased',
function () {
return 'yes';
});
} }
No sir, I mean in script/cpanel.admin/website/appearance -> and is not a file. Is db based
i used ur patch @JAVI if any of u can help me out pleaseProblems faced in active ecommerce cms v5.5.3 -
ban customer is not working i dont know why but in v5.5.4 it is working i checked in index_blade and customercontroller but couldnt fix it
during google sign in if user already exist with other name then it throws a error
can you please help to fix these i would be grateful @alghorabaa
sorry brother i am little busy in my work thats why i am unable to patch updatei used ur patch @JAVI if any of u can help me out please
no problem sir everything is working fine in ur patch v5.5.3 except this ban customer option is not working if u can see to this plzsorry brother i am little busy in my work thats why i am unable to patch update
Screenshot? Which version r u using for cms and affiliate addon?I am getting error 500 in domain.com/admin/affiliate
In active ecommerce v 5.5.3
Ok, i just updated to 5.5.4 and its working. I'll watch to see if it happens again.I'm having an issue with my 5.4.4 as it keeps on going offline and showing error 500 but when I upload the .htaccess that I backed up it starts working again. Any idea why it happens and how to stop this?.
i'm getting a 'Active It Zone Product Activation' issue. How do I activate or null?.Ok, i just updated to 5.5.4 and its working. I'll watch to see if it happens again.
Thanks, this workedSimplest way to null Active eCommerce CMS:
1. Navigate to (and open) this file: vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php. Replace its content with:
That's nicknamed "First line of Defense"PHP:<?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'; }); } } } }
2. Open vendor/laracon21/colorcodeconverter/src/Colorcodeconverter.php, delete the entire if construct from Line 18 to Line 28. We call this one the "Lucky Number 5 Naughty List Lottery"
3. Open vendor/laracon21/combinations/src/routes/web.php, delete the contents of the "token" GET route. It should then look like this:
That one is called "Pirates of thePHP:Route::get('/migrate/products/{token}', function($token){});CariJavabbean"
4. Open app/Http/Controllers/IyzicoController.php, find the function named initPayment and delete its contents. When you're done, it should look like this:
That one is aptly named "Backdoor into your Mom's basement"PHP:public function initPayment(Request $request){}
5. Enjoy!!
Optional: If you're familiar with the command line, you may run:
Your IDE Helper indices will be regenerated to reflect the changes in CoreComponentRepository class signature. This is an optional step for those doing custom development with Active eCommerce via an IDE (PhpStorm, VS Code, etc.)Bash:php artisan ide-helper:generate
BONUS - FOR THOSE USING THE FLUTTER APP
1. Find the function named create_balance_reference in app/Utility/NagadUtility.php and replace it with the following:
PHP:public static function create_balance_reference($key) { if (Cache::get('app-activation', 'no') == 'no') { Cache::rememberForever('app-activation', function () { return 'yes'; }); } return true; }
2. Find the function named create_wallet_reference in app/Utility/PayhereUtility.php and replace it with the following:
PHP:public static function create_wallet_reference($key) { if (Cache::get('app-activation', 'no') == 'no') { Cache::rememberForever('app-activation', function () { return 'yes'; }); } return true; }
Now, if there's absolutely anything else you need help with. Anything, and I do mean ANYTHING. Do NOT contact me. Thank you![]()