I understand.
If you take the example of disabling a category, ZC warns you about the fact he will also disable all products in this category. So it's queuing too kind of queries.
1-UPDATE `db`.`categories` SET `categories_status` = '0' WHERE `categories`.`categories_id` =X;
and
2-UPDATE `db`.`products` SET `products_status` = '0' WHERE `products`.`master_categories_id` =X;
In this case ZC tells you it's doing so but I'm quite sure many times it's doing the same kind of queuing without telling you anything.
I would like to see what's happening behind the scene to be sure to not forget anything.


Reply With Quote
