Robru Well-known member Feb 27, 2017 #1 Where and how can I stop a deferred process inside AdminCP ? Code: community/admin.php?tools/run-deferred Thank you.
Where and how can I stop a deferred process inside AdminCP ? Code: community/admin.php?tools/run-deferred Thank you.
P Paul B XenForo moderator Staff member Feb 27, 2017 #2 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? Upvote 0 Downvote
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?
Robru Well-known member Feb 27, 2017 #3 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'; Upvote 0 Downvote
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';
Robru Well-known member Feb 27, 2017 #4 Success! First I have made a backup of the table deferred, then the cron manually removed from the table. Upvote 0 Downvote
Success! First I have made a backup of the table deferred, then the cron manually removed from the table.