XF 1.5 Stop a run-deferred process

Robru

Well-known member
Where and how can I stop a deferred process inside AdminCP ?

Code:
community/admin.php?tools/run-deferred

Thank you.
 
You can likely delete the entry from the xf_deferred table but that may result in problems.

Which process are you trying to stop and why?
 
I have tried to stop this process in the database from the addon GoodForNothing Image Optimizer.
Because it's now running for 8 hours, and it slows down my forum.

Code:
DELETE FROM xf_deferred WHERE unique_key = 'gfnioq';
 
Top Bottom