**** Update ****
Please click here to download an updated converter that does not have this problem. (Same link as the file in post #11 below.)
There may still be one small problem: Polls may all seem to have the 'Maximum votes per user' set to 0. To fix this, use this SQL query in phpMyAdmin:UPDATE smf_polls SET maxVotes = '1';
---------------------------------------------------------------------
Hi there,
I've been trying to convert my YaBB 2.1 forum into SMF 1.1.8 with the latest converters, but when it gets to the stage called:
"Converting polls and poll choices... Incomplete"The database stops changing in size, and the converter runs forever, always showing the message above, refreshing after a while like it normally does.
Is there anything that can be done? I noticed this is one of the last stages, so maybe it won't be too hard to fix? I hope

---------------------------------------------------------------------------------------------------------------
By the way, when I convert I also get three other errors, and they appear consistently on every attempt. But I have found ways to fix them. I'm just going to post the solutions here just as extra info:
"Duplicate entry '0-0' for key 1"I fixed it by removing duplicate keys manually, adding incremental numbers starting from 1, in one of the key columns. (both columns have all-zeroes). The records involved are always around 15 or so.
UPDATE smf_log_topics set ID_TOPIC=
1 where tempID=1181708943;
UPDATE smf_log_topics set ID_TOPIC=
2 where tempID=1181706364;
etc...
"Unknown column 'temp_filename' in 'field list'" (#1)Fixed by creating the missing column with
alter table smf_messages ADD COLUMN temp_filename tinytext NOT NULL default ''"Unknown column 'temp_filename' in 'field list'" (#2)Error above will not go away with the previous solution, because it will re-delete the column and try to access it immediately, and it occurrs when converting attachments. Since I have never used the attachments feature, I simply blanked the variable
uploaddir in Yabb's
Paths.pl file. I don't know why it was even set, but it looked like a default value.
Any help will be EXTREMELY appreciated!! My host is ready to kick me out due to Yabb's high CPU usage...