FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum Development » Converters » IPB 1.2 to FUD 2.7: Import OK, no posts
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
IPB 1.2 to FUD 2.7: Import OK, no posts [message #35197] Sat, 16 December 2006 23:15 Go to next message
SR-71A is currently offline  SR-71A   United States
Messages: 5
Registered: December 2006
Location: USA
Karma: 0
Junior Member
I ran the import on a local machine bc the remote was erroring consistently. I cannot remote into my webhost, so that was not an option.

Here is the log from the ipb.php

Quote:


Importing blocked words
Done: Importing 0 blocked words
Importing forum members
Done: Importing 1162 IPB members
Importing buddies/ignored users
Done: Importing 139 buddies and 3 ignored users
Importing member ranks
Done: Importing 0 member ranks
Importing categories
Done: Importing 3 categories
Importing forums
Done: Importing 13 forums
Importing permissions
Done: Importing permissions
Importing administrators
Done: Importing 5 administrators
Importing moderators
Done: Importing 0 moderators
Importing messages and topics
Missing Author id 150 for message id 1569
Missing Author id 150 for message id 1570
Missing Author id 150 for message id 1571
Missing Author id 150 for message id 1575
Missing Author id 150 for message id 1576
Missing Author id 150 for message id 1579
Missing Author id 150 for message id 1586
Missing Author id 150 for message id 1587
Missing Author id 150 for message id 1609
Missing Author id 150 for message id 1610
Missing Author id 150 for message id 1611
Missing Author id 150 for message id 1612
Missing Author id 150 for message id 1754
Missing Author id 150 for message id 1755
Missing Author id 150 for message id 1756
Missing Author id 150 for message id 1757
Missing Author id 150 for message id 1758
Missing Author id 150 for message id 1759
Missing Author id 150 for message id 1763
Missing Author id 150 for message id 1765
Missing Author id 150 for message id 1776
Missing Author id 105 for message id 3411
Missing Author id 430 for message id 3992
Missing Author id 430 for message id 3993
Missing Author id 430 for message id 3994
Missing Author id 430 for message id 3995
Missing Author id 430 for message id 3996
Missing Author id 566 for message id 4286
Missing Author id 566 for message id 4319
Missing Author id 566 for message id 4812
Missing Author id 605 for message id 4813
Missing Author id 756 for message id 4859
Missing Author id 566 for message id 4897
Missing Author id 635 for message id 4981
Missing Author id 605 for message id 4999
Missing Author id 605 for message id 5077
Missing Author id 605 for message id 5097
Missing Author id 566 for message id 5119
Missing Author id 566 for message id 5142
Missing Author id 605 for message id 5176
Missing Author id 756 for message id 5214
Missing Author id 605 for message id 5238
Missing Author id 605 for message id 5244
Done: Importing 17249 messages and 3529 topics
Importing polls
Done: Importing 15 polls
Importing private messages
Done: Importing 2645 private messages
Importing miscellaneous settings
Done: Importing miscellaneous settings
Conversion Process Complete!



I then logged in as admin from the old board and did the Forum Consistency, then Optimized the tables in phpMyAdmin. Still cannot see posts when I enter a forum. The appropriate number of pages are listed, but the posts are not.

I am getting this error:
Quote:


Warning: Division by zero in \www\FUD\theme\default\thread.php on line 199



Here is the block of code around line 199:
Quote:


/* check that the user has permissions to access this forum */
if (!($frm->group_cache_opt & 2) && !$MOD) {
if (!isset($_GET['logoff'])) {
std_error('login');
}
if ($FUD_OPT_2 & 32768) {
header('Location: http:/../FUD/index.php/i/' . _rsidl);
} else {
header('Location: http://../FUD/index.php?' . _rsidl);
}
exit;
}

if ($_GET['t'] == 'threadt') {
$ann_cols = '5';
$cur_frm_page = $start + 1;
} else {
$ann_cols = '6';
$cur_frm_page = floor($start / $THREADS_PER_PAGE) + 1;
}




All the forums will come up with the error above. If I go for "unanswered posts" I can see posts fine. So, they are indeed there.

The $THREADS_PER_PAGE still is set to 25 in the GLOBALS.php but from the admin panel, it's defaulted back to zero (0) again.

Any ideas? Most appreciated.

Thanks
SR

[Updated on: Sun, 17 December 2006 00:38]

Report message to a moderator

Re: IPB 1.2 to FUD 2.7: Import OK, no posts [message #35204 is a reply to message #35197] Sun, 17 December 2006 17:49 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Can you see how many entries exist inside fud26_msg table and how many entries are present in the fud26_thread table?

FUDforum Core Developer
Re: IPB 1.2 to FUD 2.7: Import OK, no posts [message #35205 is a reply to message #35197] Sun, 17 December 2006 18:47 Go to previous messageGo to next message
SR-71A is currently offline  SR-71A   United States
Messages: 5
Registered: December 2006
Location: USA
Karma: 0
Junior Member
Ilya,

Thank you for your reply

Both tables contain 17250
I was able to get the board to show 5 posts per page after changing the setting in my Control Panel. But regardless of what I change it to (15, 20 etc), it's still at 5 showing per page.

Thanks
Re: IPB 1.2 to FUD 2.7: Import OK, no posts [message #35232 is a reply to message #35197] Mon, 18 December 2006 02:41 Go to previous messageGo to next message
SR-71A is currently offline  SR-71A   United States
Messages: 5
Registered: December 2006
Location: USA
Karma: 0
Junior Member
Ilya:

I re-did the entire installation and importer... all is working fine. Private messages aren't showing up but everything else is great!

Will update with more info on private messages...

thank you
Re: IPB 1.2 to FUD 2.7: Import OK, no posts [message #35235 is a reply to message #35205] Mon, 18 December 2006 16:08 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Do you see the forums themselves? What you may need to do is check the forum_id field inside the fud26_threads table and make sure messages there match the forum ids inside the fud26_forums table.

FUDforum Core Developer
Re: IPB 1.2 to FUD 2.7: Import OK, no posts [message #35272 is a reply to message #35235] Wed, 20 December 2006 22:49 Go to previous message
SR-71A is currently offline  SR-71A   United States
Messages: 5
Registered: December 2006
Location: USA
Karma: 0
Junior Member
I was able to get all of the posts working with a re-install.

Everything seems to be working well.

Thank you for your time. Excellent board.. well worth the migration.

Regards,
SR
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: phpBB 2.0.19 -> FUDforum 2.7.6 problems
Next Topic: phpBB2 2.0.21 --> 2.7.6
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu May 09 08:56:31 GMT 2024

Total time taken to generate the page: 0.04892 seconds