MyBB Community Forums

Full Version: how do I reset a poll?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do I reset a poll? I added an option to the poll and want to reset it so people can revote again.
You have to remove the poll and add a new one... Wink
(2010-06-08, 12:10 PM)StefanT Wrote: [ -> ]You have to remove the poll and add a new one... Wink

that's not true..you can run an sql query to remove all the votes, which I ended up doing, but why wouldn't mybb have an option to do this?

I removed the votes by running this query:
delete FROM mybb_pollvotes WHERE pid = '';

you'd change the mybb_pollvotes to whatever db prefix you chose and then you'd have to find the pid in the mybb_poll questions table.