MyBB Community Forums

Full Version: How to delete Subscriptions?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a simple way to delete Subscribed Threads or Forum Subscriptions for one user?
Have the user visit the usercp.php and they can delete all the Subscribed Threads and Forum Subscriptions that they have created. The link is towards the bottom on the left hand side of the UserCP navigation.
I wrongly expressed.
How can i as admin delete the subscriptions of a a user?
Run these two sql queries:
DELETE from mybb_forumsubscriptions WHERE uid = 'UIDHERE';
DELETE from mybb_threadsubscriptions WHERE uid = 'UIDHERE';

Smile
(2010-09-11, 09:53 AM)Polarbear541 Wrote: [ -> ]Run these two sql queries:
DELETE from mybb_forumsubscriptions WHERE uid = 'UIDHERE';
DELETE from mybb_threadsubscriptions WHERE uid = 'UIDHERE';

Smile

thank you. Smile