MyBB Community Forums

Full Version: Poll glitch. Need help ASAP!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I just merged cybertechforums to forumkorner. Now every single post made on FK prior to the merge it shows "poll" before the thread titles. Literally every post. However on the ctf threads it does not say this, nor on new threads made. Please let me know how I can fix this. If anything I will just compeltely disable the poll feature if that is even possible. I just don't want it to say poll there.

Help is appreciated. If its a hard fix, I am willing to pay no questions asked.
They don't have a thread prefix enabled do they? Just a thought.
I remember this happening to me for some odd reason. I believe I fixed it by deleting the poll.
On every thread? Cause that would require 27k threads to be done. Is there a fast way to do this? Or so you mean disabling the whole system? Thank you for the fast response.
Sorry Philly, just a thought. Had no idea of the scale of it. Apologies.

Regards,
Shannon
Firstly, make a backup of the database.

Then run the following queries:

delete from mybb_polls where pid=496;
delete from mybb_pollvotes where pid=496;
(2012-06-27, 10:36 AM)Nathan Malcolm Wrote: [ -> ]Firstly, make a backup of the database.

Then run the following queries:

delete from mybb_polls where pid=496;
delete from mybb_pollvotes where pid=496;

Ill do this now, and let you know what happens.

Alright I just ran those queries. It didn't work. After I ran them the queries changed to,

delete from mybb_polls where pid=496;# 1 row affected.

delete from mybb_pollvotes where pid=496;# 1 row affected.
Well it did remove the poll from the top of each thread. That's a start.

Run this query too:

update mybb_threads set poll=0 where poll=496;

That should fix everything.
(2012-06-27, 10:55 AM)Nathan Malcolm Wrote: [ -> ]Well it did remove the poll from the top of each thread. That's a start.

Run this query too:

update mybb_threads set poll=0 where poll=496;

That should fix everything.

That fixed it. Thank you so much man! Me, and my members really appreciate it!
No problem, glad to help. Smile
Pages: 1 2