I have a phpBB2 board which is in desperate need of upgrading.
Since the board is big, I decided to do it locally with XAMPP.
Installed phpBB2 and imported all the data from the online board. Installed phpBB3 and was about to convert it.
I start the conversion, the browser loads alot and then comes up with this error (Im using Google chrome):
Error 101 (net::ERR_CONNECTION_RESET): Unknown error.
I thought it was a timeout problem and therefor set this up in install_converter.php
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');
var $batch_size = 6000;
var $num_wait_rows = 10;
Thanks in advance
Johan