mage2pro / fast-unlink-categories-from-products
This module for Magento 2 makes unlinking categories from products 1000 times faster
Installs: 343
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:magento2-module
This package is auto-updated.
Last update: 2024-11-09 21:01:43 UTC
README
This module for Magento 2 makes unlinking categories from products 1000 times faster. The problem is described here:
- #18144: «Detaching category from product causes massive product url regeneration»
- #7874: «OOM/Timeouts when saving a category with large catalog as all product URLs are regenerated»
How to install
bin/magento maintenance:enable
composer clear-cache
composer require mage2pro/fast-unlink-categories-from-products:*
bin/magento setup:upgrade
rm -rf var/di var/generation generated/code && bin/magento setup:di:compile
rm -rf pub/static/* && bin/magento setup:static-content:deploy en_US <additional locales, e.g.: de_DE>
bin/magento maintenance:disable
How to upgrade
bin/magento maintenance:enable
composer clear-cache
composer update mage2pro/fast-unlink-categories-from-products
bin/magento setup:upgrade
rm -rf var/di var/generation generated/code && bin/magento setup:di:compile
rm -rf pub/static/* && bin/magento setup:static-content:deploy en_US <additional locales, e.g.: de_DE>
bin/magento maintenance:disable
If you have problems with these commands, please check the detailed instruction.