
Code: Select all
filling table phpbb_posts:
skip_rows = 5905
Things I have done;
Offline conversion .. yes many many many times.
Edited /install/install_convert ... yes many many times (different combos of time and limit sizes). In fact the relevant code will be posted below.
Edited my.ini (mysql) and increased max_allowed_packet to 10M (was at 1M)
Gone into phpmydamin and deleting posts with a gazillion smilies and/or spaces ... yes, in fact I deleted an entire forum (spam forum) where people could post anything they wanted.
Forum has 25,686 total posts.
edited /install/install_convert
Code: Select all
@set_time_limit(0);
@ini_set('memory_limit', '256M');
@ini_set('upload_max_filesize', '128M');
@ini_set('post_max_size', '256M');
@ini_set('max_input_time', '-1');
@ini_set('max_execution_time', '-1');
@ini_set('expect.timeout', '-1');
@ini_set('default_socket_timeout', '-1');
// snip
var $batch_size = 5000;
var $num_wait_rows = 50;