Stopped processing due to imminent timeout
-
I have tried the max_timeout value change (from 60 to 6000) but only still get 1 deletion out of +11,485 and the error “Stopped processing due to imminent timeout.”
I see some folks have luck getting at least the capitated 250 records. I can only ever get one.
Might you know the query I could enter into MySQL that would simply remove all the products?
I have searched and found one query that does not work for me. I hoped your plug in would be essentially a non-SQL execution point and accomplish the same.
Query I had found:
DELETE relations.*, taxes.*, terms.*
FROM wp_term_relationships AS relations
INNER JOIN wp_term_taxonomy AS taxes
ON relations.term_taxonomy_id=taxes.term_taxonomy_id
INNER JOIN wp_terms AS terms
ON taxes.term_id=terms.term_id
WHERE object_id IN (SELECT ID FROM wp_posts WHERE post_type=’product’)Result is:
Output from SQL command DELETE relations.*, taxes.*, terms.* FROM wp_term_relationships AS relations INNER JOIN wp_term_taxonomy AS taxes ON relations.term_taxonomy_id=taxes.term_taxonomy_id INNER JOIN wp_terms AS terms ON taxes.term_id=terms.term_id WHERE object_id IN (SELECT ID FROM wp_posts WHERE post_type=’product’) ..
No data returnedhttps://ww.wp.xz.cn/plugins/woocommerce-remove-all-products/
The topic ‘Stopped processing due to imminent timeout’ is closed to new replies.