I would like to thank you prototech. You saved me from my previous tries. All failed.prototech wrote:Did you check the server error log? Were there any errors? Did you already install phpBB, or were you only just getting around to doing that? The main installation page doesn't load any of the convertor files, so it's certainly strange that you would be getting a blank page there.
The 1.6.x convertor is attached below.
Permissions are not converted. If you're using an encoding other than utf8, you'll need to edit
$encoding = 'utf8';
on line 33 of functions_mybb16.php and change that to your encoding.
Hum, find the solution. Rebuild topics, posts and cache before converting to phpBB with the prototach's script. Many thx again for your support and this script.vbdata wrote: Édit : just a problem with topics / messages counts. Not match with mybb... Not so much even after recount and rebuild... Maybe a conversion problem !?
I'll look into it sometime this week and get an update ready. I'll also possibly work on getting it to convert MyBB 1.8.x to phpBB 3.1.x.MaFeSa wrote:Hi, there is a problem with ip and myBB 1.8.1
Code: Select all
[attachment=3]image_6.png[/attachment]
Code: Select all
[attachment=1]image_6.png[/attachment]
If you use the old converter all stored IP addresses are unreadable.sinse73 wrote:The MyBB 1.8 converter is not working, so I'm back on MyBB 1.6 convertor.
Code: Select all
// We need to grab some info from the database :-/
$sql = 'SELECT aid, filename
FROM ' . $convert->src_table_prefix . 'attachments
WHERE pid = ' . (int) $post_id . '';
$result = $src_db->sql_query($sql);
$i = 0;
Code: Select all
// We need to grab some info from the database :-/
$sql = 'SELECT aid, filename
FROM ' . $convert->src_table_prefix . 'attachments
WHERE pid = ' . (int) $post_id . '
ORDER BY dateuploaded DESC, aid ASC';
$result = $src_db->sql_query($sql);
$i = 0;